:root {
  color-scheme: light;
  --header-h: 72px;
  --anchor-offset: calc(var(--header-h) + 18px);
  --bg: #f6f8fb;
  --services-top: #e8f3fb;
  --section-space: clamp(52px, 6vw, 72px);
  --section-space-lg: calc(var(--section-space) + clamp(14px, 2vw, 22px));
  --surface: rgba(255, 255, 255, 0.86);
  --card: #ffffff;
  --ink: #071523;
  --muted: #516171;
  --muted-2: #6b7a88;
  --accent: #0a7cff;
  --accent-strong: #085fd0;
  --accent-soft: rgba(10, 124, 255, 0.10);
  --border: rgba(18, 38, 56, 0.08);
  --shadow-sm: 0 10px 20px rgba(7, 21, 35, 0.08);
  --shadow: 0 18px 45px rgba(7, 21, 35, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1120px;
  --space: clamp(16px, 2vw, 28px);
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
  }
}

@media (max-width: 640px) {
  .rent-figure {
    min-height: 320px;
  }

  .rent-media-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    text-align: center;
  }
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(10, 124, 255, 0.16), transparent 55%),
    radial-gradient(900px 500px at 90% 15%, rgba(125, 211, 252, 0.20), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(10, 124, 255, 0.55);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section {
  padding: var(--section-space) 0;
}

/* One larger vertical step only before FAQ and final CTA */
.section--faq,
.section--lead {
  padding-top: var(--section-space-lg);
}

/* Premium section rhythm */
.section--services,
.section--process,
.section--rent,
.section--fit,
.section--why,
.section--faq,
.section--lead {
  position: relative;
}

.section--services {
  background: linear-gradient(180deg, var(--services-top) 0%, rgba(10, 124, 255, 0.08) 35%, var(--bg) 100%);
}

/* (reverted) keep normal section flow; wave styling handled inside SVG */

.section--services::before,
.section--process::before,
.section--why::before,
.section--faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(10, 124, 255, 0.10), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(125, 211, 252, 0.12), transparent 55%);
  opacity: 0.9;
}

.section--services > .container,
.section--process > .container,
.section--rent > .container,
.section--fit > .container,
.section--why > .container,
.section--faq > .container,
.section--lead > .container {
  position: relative;
  z-index: 1;
}

.section--services .section-title,
.section--process h2,
.section--rent h2,
.section--fit h2,
.section--why h2,
.section--faq h2 {
  letter-spacing: -0.03em;
}

/* Header / navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(18, 38, 56, 0.10);
  color: #0a1a26;
  box-shadow: 0 18px 42px rgba(7, 21, 35, 0.10);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

@media (max-width: 860px) {
  .brand-logo {
    width: 120px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 100px;
  }
}

.brand-logo--light {
  display: none;
}

.brand-logo--dark {
  display: block;
}

.site-header.is-scrolled .brand-logo--light {
  display: block;
}

.site-header.is-scrolled .brand-logo--dark {
  display: none;
}


.nav {
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid transparent;
}

.site-header.is-scrolled .nav a {
  color: #0a1a26;
}

.nav .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav .menu a {
  display: inline-flex;
}

/* Dropdown submenu styles */
.nav .menu > .menu-item-has-children {
  position: relative;
}

.nav .menu > .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav .menu > .menu-item-has-children > a::after {
  content: "▾";
  font-size: 13px;
  font-weight: 900;
  opacity: 0.7;
  line-height: 1;
  transform: scaleX(1.3) scaleY(0.9) translateY(-0.5px);
}

.nav .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px;
  list-style: none;
  width: max-content;
  min-width: 180px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 38, 56, 0.12);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 60;
}

.nav .menu > .menu-item-has-children:hover > .sub-menu,
.nav .menu > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav .menu .sub-menu li {
  margin: 0;
}

.nav .menu .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #0a1a26;
  border: none;
  transition: background 0.18s ease;
  white-space: nowrap;
}

.nav .menu .sub-menu a:hover,
.nav .menu .sub-menu a:focus-visible {
  background: rgba(10, 124, 255, 0.08);
  border: none;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a:focus-visible {
  border-color: rgba(10, 124, 255, 0.22);
  background: rgba(10, 124, 255, 0.07);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.95;
}

.site-header.is-scrolled .header-phone {
  color: #0a1a26;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(18, 38, 56, 0.14);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: #111827;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(245, 158, 11, 0.34);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(7, 21, 35, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header.is-scrolled .nav-toggle {
  color: #0a1a26;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(18, 38, 56, 0.14);
}

.nav-panel {
  padding-top: 10px;
  padding-bottom: 12px;
  background: rgba(7, 21, 35, 0.88);
  backdrop-filter: blur(16px);
}

.nav-panel[hidden] {
  display: none;
}

.nav-panel a {
  display: block;
  padding: 9px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-panel a + a {
  margin-top: 6px;
}

.nav-panel-cta {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  color: #111827 !important;
  border-color: rgba(251, 191, 36, 0.3) !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

/* Mobile nav panel when header is scrolled */
.site-header.is-scrolled .nav-panel {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(18, 38, 56, 0.08);
}

.site-header.is-scrolled .nav-panel a {
  color: #0a1a26;
  background: rgba(10, 124, 255, 0.06);
  border-color: rgba(18, 38, 56, 0.10);
}

.site-header.is-scrolled .nav-panel a:hover,
.site-header.is-scrolled .nav-panel a:focus-visible {
  background: rgba(10, 124, 255, 0.12);
  border-color: rgba(10, 124, 255, 0.22);
}

.site-header.is-scrolled .lang-switch__row {
  color: #0a1a26;
}

.site-header.is-scrolled .nav-panel-lang .lang-switch__link {
  background: rgba(10, 124, 255, 0.07);
  border-color: rgba(10, 124, 255, 0.18);
  color: #0a1a26;
}

.site-header.is-scrolled .nav-panel-lang .lang-switch__link:hover,
.site-header.is-scrolled .nav-panel-lang .lang-switch__link:focus-visible {
  background: rgba(10, 124, 255, 0.15);
  border-color: rgba(10, 124, 255, 0.3);
}

.site-header.is-scrolled .nav-panel-lang .lang-switch__link.is-active {
  background: rgba(10, 124, 255, 0.14);
  border-color: rgba(10, 124, 255, 0.35);
  color: #0a1a26;
}

.site-header.is-scrolled .nav-panel .nav-panel-cta {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%) !important;
  color: #111827 !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
}

/* Mobile nav panel: WordPress dropdown menu */
.nav-panel-menu {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}

.nav-panel-menu > li + li {
  margin-top: 6px;
}

/* Parent item with submenu: show caret */
.nav-panel-menu > li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-panel-menu > li.menu-item-has-children > a::after {
  content: "▾";
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  margin-left: 6px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-panel-menu > li.menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}

/* Submenu: hidden by default, revealed on .is-open */
.nav-panel-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
  display: none;
}

.nav-panel-menu > li.is-open > .sub-menu {
  display: block;
}

.nav-panel-menu .sub-menu li + li {
  margin-top: 6px;
}

.nav-panel-menu .sub-menu a {
  padding-left: 24px;
  font-weight: 600;
  opacity: 0.82;
}

/* Scrolled header: sub-menu items adapt to light panel */
.site-header.is-scrolled .nav-panel-menu .sub-menu a {
  color: #0a1a26;
  background: rgba(10, 124, 255, 0.04);
  border-color: rgba(18, 38, 56, 0.08);
  opacity: 1;
}

.site-header.is-scrolled .nav-panel-menu .sub-menu a:hover,
.site-header.is-scrolled .nav-panel-menu .sub-menu a:focus-visible {
  background: rgba(10, 124, 255, 0.10);
  border-color: rgba(10, 124, 255, 0.20);
}

/* Language switcher (WPML, custom markup) — minimal */
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: inherit;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled .lang-switch__btn:hover,
.site-header.is-scrolled .lang-switch__btn:focus-visible {
  background: rgba(10, 124, 255, 0.07);
}

.lang-switch__caret {
  opacity: 0.7;
  font-size: 12px;
  transform: translateY(-0.5px);
}

.lang-switch__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 92px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(18, 38, 56, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #0a1a26;
  box-shadow: var(--shadow-sm);
  z-index: 60;
}

.lang-switch__item {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 13px;
  transition: background 0.18s ease;
}

.lang-switch__item:hover,
.lang-switch__item:focus-visible {
  background: rgba(10, 124, 255, 0.08);
}

/* Mobile menu language row */
.nav-panel-lang {
  margin: 0 0 8px;
}

.lang-switch__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-weight: 800;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
}

.lang-switch__dot {
  display: none;
}

.lang-switch__link {
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 1;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.lang-switch__link:hover,
.lang-switch__link:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.lang-switch__link.is-active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.lang-switch__link.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Typography */
h1, h2, h3 {
  letter-spacing: -0.02em;
}

.section h2 {
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.section p {
  margin: 0 0 14px;
  color: var(--muted);
}

.section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.section li {
  margin: 6px 0;
}

/* Section intro (optional) */
.section-title {
  margin: 0 0 10px;
}

.section h2,
.section-title {
  font-size: clamp(28px, 3.1vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}

.section-lead {
  margin: 0 0 22px;
  font-size: 17px;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  min-height: 48px;
}

.btn--primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 18px 32px rgba(10, 124, 255, 0.24);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(10, 124, 255, 0.28);
}

.btn--secondary {
  color: #0a1a26;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(18, 38, 56, 0.14);
  box-shadow: 0 16px 32px rgba(7, 21, 35, 0.10);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(7, 21, 35, 0.12);
  border-color: rgba(10, 124, 255, 0.22);
}

/* Hero CTA styles (lovable-like) */
.btn--cta {
  color: #111827;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 20px 44px rgba(245, 158, 11, 0.30);
  border-color: rgba(255, 255, 255, 0.10);
}

.btn--cta:hover,
.btn--cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 54px rgba(245, 158, 11, 0.36);
}

.btn--cta::after {
  content: "→";
  font-weight: 900;
  transform: translateY(-0.5px);
}

.btn--ghost {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
}

.btn--ghost::after {
  content: "→";
  font-weight: 900;
  opacity: 0.9;
  transform: translateY(-0.5px);
}

.btn--arrow::after {
  content: "→";
  font-weight: 900;
  transform: translateY(-0.5px);
}

/* Hero */
.hero {
  color: #ffffff;
  background:
    radial-gradient(900px 560px at 10% 15%, rgba(10, 124, 255, 0.34), transparent 60%),
    radial-gradient(900px 560px at 90% 10%, rgba(125, 211, 252, 0.18), transparent 55%),
    linear-gradient(135deg, #06101a 0%, #0a2235 45%, #0c2f4c 100%);
  padding: calc(var(--header-h) + clamp(42px, 7vw, 86px)) 0 clamp(52px, 8vw, 92px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='120'%20height='120'%20viewBox='0%200%20120%20120'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='.8'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='120'%20height='120'%20filter='url(%23n)'%20opacity='.55'/%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.06;
  margin: 0 0 16px;
  text-align: center;
  position: relative;
}

.hero h1::after {
  content: "";
  display: block;
  height: 3px;
  width: min(520px, 92%);
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.95), rgba(245, 158, 11, 0));
  opacity: 0.95;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 14px;
  margin: 0 auto 18px;
}

.hero-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.22);
}

.hero-subtitle {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-subtitle p {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  text-wrap: pretty;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle p:first-child {
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(255, 255, 255, 0.92);
}

.hero-subtitle p:last-child {
  opacity: 0.95;
}

.hero-subtitle.is-split p:last-child {
  padding-top: 12px;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(125, 211, 252, 0.95);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(1.05) contrast(1.05) brightness(0.92);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 680px at 12% 20%, rgba(10, 124, 255, 0.38), transparent 60%),
    radial-gradient(1000px 620px at 80% 10%, rgba(125, 211, 252, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(6, 16, 26, 0.68) 0%, rgba(6, 16, 26, 0.82) 55%, rgba(6, 16, 26, 0.90) 100%);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8px 0 26px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  color: var(--services-top);
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-metric {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
  max-width: 260px;
}

.hero-metric strong {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.96);
}

.hero-metric span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 4px;
}

.hero-metric + .hero-metric {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

/* (removed legacy .hero-float styles; hero uses .hero-metrics) */

/* Services */
.grid-2 {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.grid-2 > * {
  min-width: 0;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  padding: 0;
  display: grid;
  gap: 0;
  align-content: start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
  contain: layout style;
  will-change: transform;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(7, 21, 35, 0.14);
  border-color: rgba(10, 124, 255, 0.18);
}

.card-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 12px;
}

.section--services .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.98) 100%);
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card ul {
  margin: 8px 0 14px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.card li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: var(--muted);
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(10, 124, 255, 0.58);
  border: 1px solid rgba(10, 124, 255, 0.32);
  box-shadow: 0 8px 18px rgba(10, 124, 255, 0.18);
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M9.2%2016.2%205.6%2012.6%204.2%2014%209.2%2019%2020%208.2%2018.6%206.8Z'/%3E%3C/svg%3E") center/13px 13px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M9.2%2016.2%205.6%2012.6%204.2%2014%209.2%2019%2020%208.2%2018.6%206.8Z'/%3E%3C/svg%3E") center/13px 13px no-repeat;
}

.card .btn {
  width: fit-content;
  margin-top: 6px;
}

.card-media {
  margin: 0;
}

.card-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.25s ease;
}

.card-media {
  position: relative;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 35, 0.00) 0%, rgba(7, 21, 35, 0.55) 100%);
  pointer-events: none;
  opacity: 0.9;
}

.card-pill {
  position: absolute;
    right: 16px;
    bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: rgba(10, 124, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #eee;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(7, 21, 35, 0.22);
  text-transform: uppercase;
  z-index: 1;
}

.card:hover .card-media img {
  transform: scale(1.02);
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(500px 260px at 20% 20%, rgba(10, 124, 255, 0.25), transparent 60%),
    radial-gradient(520px 280px at 90% 10%, rgba(125, 211, 252, 0.25), transparent 55%),
    linear-gradient(135deg, rgba(7, 21, 35, 0.06), rgba(7, 21, 35, 0.02));
}

.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(10, 124, 255, 0.10);
  border: 1px solid rgba(10, 124, 255, 0.14);
  display: grid;
  place-items: center;
}

.section--services .icon-wrap {
  margin-top: -36px;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.30);
  box-shadow: 0 18px 40px rgba(7, 21, 35, 0.18);
  backdrop-filter: blur(8px);
}

.section--services .btn.btn--secondary {
  background: rgba(10, 124, 255, 0.10);
  border-color: rgba(10, 124, 255, 0.18);
  color: #0a3d78;
  box-shadow: 0 14px 28px rgba(10, 124, 255, 0.12);
}

.section--services .btn.btn--secondary:hover,
.section--services .btn.btn--secondary:focus-visible {
  background: rgba(10, 124, 255, 0.14);
  box-shadow: 0 18px 34px rgba(10, 124, 255, 0.16);
}

.icon {
  width: 28px;
  height: 28px;
  display: block;
  color: #0a63cc;
}

/* Process */
.section--process {
  --process-border: rgba(10, 124, 255, 0.18);
  --process-glow: rgba(10, 124, 255, 0.12);
  --process-warm: rgba(245, 158, 11, 0.10);
}

.process-panel {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  border: 1px solid rgba(18, 38, 56, 0.08);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 24px);
}

.process-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 360px at 10% 10%, rgba(10,124,255,0.12), transparent 60%),
    radial-gradient(800px 360px at 90% 10%, rgba(125,211,252,0.16), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.process-panel > * {
  position: relative;
  z-index: 1;
}

.process-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.process-title h2 {
  margin-bottom: 8px;
}

.process-lede {
  margin: 0;
  color: rgba(7, 21, 35, 0.72);
  max-width: 58ch;
  line-height: 1.7;
}

.process-ctas {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.process-primary {
  min-height: 42px;
  padding: 12px 16px;
  font-size: 14px;
}

.process-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: rgba(7, 21, 35, 0.74);
  opacity: 0.92;
}

.process-secondary:hover,
.process-secondary:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}


.process-secondary:hover,
.process-secondary:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.process-badges {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 560px;
  margin-left: auto;
  min-height: 32px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(7, 21, 35, 0.78);
  white-space: nowrap;
  line-height: 1;
}

.process-badge-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(10, 124, 255, 0.72);
}

.process-badge-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  align-items: stretch;
  isolation: isolate;
  padding-top: 18px;
}

.process-step {
  display: flex;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.process-card {
  flex: 1;
  min-width: 0;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(18, 38, 56, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(7, 21, 35, 0.08);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 164px;
}

.process-card:hover {
  box-shadow: 0 14px 28px rgba(7, 21, 35, 0.10);
  border-color: rgba(10, 124, 255, 0.18);
}

.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.process-step-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(7, 21, 35, 0.62);
}

.process-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 0;
  line-height: 1.5;
  color: rgba(7, 21, 35, 0.70);
}

.process-desc {
  color: rgba(7, 21, 35, 0.66);
}

.process-step--finish .process-card {
  border-left: 3px solid rgba(10, 124, 255, 0.30);
  background: linear-gradient(0deg, rgba(10, 124, 255, 0.04), rgba(10, 124, 255, 0.04)), rgba(255, 255, 255, 0.94);
}

.process-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 0;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(7, 21, 35, 0.72);
  font-weight: 700;
  font-size: 13px;
  margin-top: 6px;
}

/* Desktop flow track (minimal): thin line + dot per step above cards */
@media (min-width: 1025px) {
  .process-steps::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    top: 10px;
    height: 1px;
    background: linear-gradient(90deg, rgba(10,124,255,0.0), rgba(10,124,255,0.22), rgba(10,124,255,0.0));
    pointer-events: none;
    z-index: 0;
  }


  .process-step--finish::before {
    border-color: rgba(245, 158, 11, 0.26);
  }
}

.process-footer strong {
  color: rgba(7, 21, 35, 0.86);
  font-weight: 900;
}

.process-footer-icon {
  width: 16px;
  height: 16px;
  color: rgba(10, 124, 255, 0.9);
  flex: 0 0 auto;
}

/* (removed) arrow connectors; using a progress track instead */

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-header {
    grid-template-columns: 1fr;
  }

  .process-badges {
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .process-panel {
    padding: 18px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .process-card {
    padding: 16px;
    box-shadow: 0 12px 26px rgba(7, 21, 35, 0.09);
    min-height: auto;
  }

  .process-badges {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .process-badges::-webkit-scrollbar {
    display: none;
  }

  .process-steps::before,
  .process-step::before {
    display: none;
  }
}

/* Rent feature */
.rent-feature {
  background:
    radial-gradient(900px 420px at 10% 20%, rgba(10,124,255,0.12), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(125,211,252,0.14), transparent 55%),
    rgba(255,255,255,0.92);
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 32px);
  display: grid;
  gap: clamp(14px, 2.4vw, 24px);
  align-items: start;
  overflow: hidden;
  position: relative;
}

.rent-copy {
  grid-area: rent-copy;
}

.rent-media {
  grid-area: rent-media;
  align-self: stretch;
  display: flex;
}

.rent-media > * {
  width: 100%;
}

.rent-figure {
  flex: 1;
  height: 100%;
}

.rent-features {
  grid-area: rent-features;
}

.rent-actions {
  grid-area: rent-actions;
}

.rent-feature {
  grid-template-columns: 1fr;
  grid-template-areas:
    "rent-copy"
    "rent-media"
    "rent-features"
    "rent-actions";
}

.rent-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
  opacity: 0.35;
  pointer-events: none;
}

.rent-copy {
  max-width: 68ch;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.rent-lead {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.55;
  text-wrap: pretty;
}

.rent-lead p {
  margin: 0;
}

/* Feature list (no cards) */
.rent-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.rent-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 52px;
}

.rent-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(10, 124, 255, 0.10);
  color: var(--accent-strong);
  flex-shrink: 0;
}

.rent-feature-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.rent-feature-text {
  display: grid;
  gap: 3px;
}

.rent-feature-title {
  font-weight: 900;
  color: rgba(7, 21, 35, 0.92);
  line-height: 1.25;
}

.rent-feature-meta {
  font-size: 13px;
  font-weight: 700;
  color: rgba(7, 21, 35, 0.66);
  line-height: 1.35;
}

.rent-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.rent-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.rent-cta {
  box-shadow: 0 24px 56px rgba(245, 158, 11, 0.34);
}

.rent-cta-secondary {
  width: fit-content;
  font-weight: 900;
  color: rgba(7, 21, 35, 0.72);
  opacity: 0.95;
}

.rent-cta-secondary:hover,
.rent-cta-secondary:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.rent-microcopy {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(7, 21, 35, 0.62);
  max-width: 56ch;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 124, 255, 0.12);
  border: 1px solid rgba(10, 124, 255, 0.18);
  font-weight: 800;
  font-size: 12px;
  color: #0a3d78;
}

.rent-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.rent-checklist li {
  position: relative;
  padding-left: 28px;
}

.rent-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: rgba(10, 124, 255, 0.12);
  border: 1px solid rgba(10, 124, 255, 0.2);
}

.rent-checklist li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: rgba(10, 124, 255, 0.85);
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M9.2%2016.2%205.6%2012.6%204.2%2014%209.2%2019%2020%208.2%2018.6%206.8Z'/%3E%3C/svg%3E") center/12px 12px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M9.2%2016.2%205.6%2012.6%204.2%2014%209.2%2019%2020%208.2%2018.6%206.8Z'/%3E%3C/svg%3E") center/12px 12px no-repeat;
}

.rent-cost {
  margin-top: 6px;
}

.rent-cost > h3 {
  margin: 0;
}

.rent-cost > .muted {
  margin: 0;
}

.rent-cost-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.rent-cost-list li {
  position: relative;
  padding-left: 14px;
  line-height: 1.45;
}

.rent-cost-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

@media (max-width: 640px) {
  .rent-cost-list {
    grid-template-columns: 1fr;
  }
}

.rent-media {
  position: relative;
  z-index: 1;
}

.rent-media-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 46px rgba(7, 21, 35, 0.18);
  backdrop-filter: blur(12px);
  color: rgba(7, 21, 35, 0.90);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.01em;
  pointer-events: none;
}

.rent-media-caption svg {
  width: 16px;
  height: 16px;
  color: var(--accent-strong);
}

.rent-figure {
  margin: 0;
  padding: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 0;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
  min-height: clamp(220px, 30vw, 460px);
}

.rent-figure img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.rent-cta {
  width: fit-content;
}

/* Fit pills */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
  font-weight: 700;
  color: #0a1a26;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgba(10, 124, 255, 0.10);
  border: 0;
  color: #0a63cc;
  flex-shrink: 0;
}

.pill-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.pill-list li:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(7, 21, 35, 0.14);
  border-color: rgba(10, 124, 255, 0.22);
}

.section--fit {
  position: relative;
}

.section--fit .container {
  position: relative;
}

.section--fit .container > * {
  position: relative;
  z-index: 1;
}

.fit-map {
  position: absolute;
  inset: 18px 0 0;
  height: 240px;
  background:
    radial-gradient(600px 260px at 20% 30%, rgba(10,124,255,0.14), transparent 60%),
    radial-gradient(600px 260px at 80% 40%, rgba(125,211,252,0.16), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  border-radius: var(--radius);
  opacity: 0.6;
  pointer-events: none;
  mask: radial-gradient(70% 70% at 50% 10%, #000 60%, transparent 100%);
}

/* Benefits */
.benefits {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

/* Partners */
.section--partners {
  padding: clamp(40px, 5vw, 60px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.partners-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.partners-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}

.partners-lead {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
  justify-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  height: clamp(70px, 9vw, 100px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
  background: #fff;
  border-color: rgba(10, 124, 255, 0.2);
  box-shadow: 0 12px 32px rgba(7, 21, 35, 0.08);
  transform: translateY(-2px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo--sm img {
  max-width: 70%;
  max-height: 70%;
}

.partner-logo--lg img {
  max-width: 91%;
  max-height: 91%;
}

.partner-logo--xs img {
  max-width: 60%;
  max-height: 60%;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 680px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-logo {
    height: 65px;
  }
}

@media (max-width: 400px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Reviews (lightweight, no heavy cards) */
.section--reviews {
  padding: calc(var(--section-space) + clamp(6px, 1vw, 10px)) 0;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.reviews-title {
  max-width: 62ch;
}

.reviews-title h2 {
  margin-bottom: 8px;
}


.reviews-title .reviews-facts {
  margin-top: 12px;
}

.reviews-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.reviews-fact {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: rgba(7, 21, 35, 0.74);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
}

.reviews-arrows {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  margin-left: auto;
}

.reviews-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(18, 38, 56, 0.10);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  color: rgba(7, 21, 35, 0.76);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.reviews-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.reviews-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 124, 255, 0.18);
  box-shadow: var(--shadow);
}

.reviews-arrow:focus-visible {
  outline: 2px solid rgba(10, 124, 255, 0.28);
  outline-offset: 3px;
}

.reviews-arrow[disabled] {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: var(--shadow-sm);
}

.reviews-carousel {
  margin-top: 14px;
  --review-card-w: clamp(320px, 30%, 360px);
}

.reviews-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 12px 14px;
  scroll-padding: 12px;
  scrollbar-width: none;
  cursor: grab;
}

.reviews-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-viewport:focus-visible {
  outline: 2px solid rgba(10, 124, 255, 0.28);
  outline-offset: 6px;
  border-radius: var(--radius);
}

.reviews-track {
  display: flex;
  gap: 14px;
  align-items: stretch;
  padding-right: max(0px, calc(100% - var(--review-card-w)));
}

.review-card {
  scroll-snap-align: start;
  flex: 0 0 var(--review-card-w);
  min-height: clamp(240px, 18vw, 270px);
  margin: 0;
  padding: 16px 16px;
  border-radius: var(--radius);
  background:
    radial-gradient(600px 260px at 15% 15%, rgba(10,124,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.78));
  border: 1px solid rgba(18, 38, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(10, 124, 255, 0.18);
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(10, 124, 255, 0.10);
  color: rgba(10, 124, 255, 0.9);
  flex: 0 0 auto;
}

.review-card-mark svg {
  width: 18px;
  height: 18px;
  display: block;
}

.review-chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.review-chips li {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: rgba(7, 21, 35, 0.76);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(10, 124, 255, 0.10);
}

.review-title {
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: rgba(7, 21, 35, 0.92);
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.review-text {
  margin: 8px 0 0;
  color: rgba(7, 21, 35, 0.80);
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.review-who {
  display: grid;
  gap: 2px;
  color: rgba(7, 21, 35, 0.62);
  font-weight: 800;
  font-size: 13px;
}

.review-author {
  color: rgba(7, 21, 35, 0.74);
  font-weight: 900;
}

.review-role {
  color: rgba(7, 21, 35, 0.60);
  font-weight: 900;
}

.review-org {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.review-company {
  color: rgba(7, 21, 35, 0.62);
  font-weight: 800;
  font-size: 12px;
  text-align: right;
}

.review-city {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 124, 255, 0.06);
  color: rgba(7, 21, 35, 0.66);
  font-weight: 800;
  font-size: 12px;
}

.reviews-bottom {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.reviews-progress {
  flex: 1 1 auto;
  max-width: none;
  height: 3px;
  border-radius: 999px;
  background: rgba(18, 38, 56, 0.10);
  overflow: hidden;
  align-self: center;
  transform: translateY(-1px);
}

.reviews-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(10, 124, 255, 0.62), rgba(125, 211, 252, 0.70));
  transition: width 0.16s linear;
}

.reviews-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(7, 21, 35, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, width 0.18s ease;
}

.reviews-dot.is-active,
.reviews-dot[aria-current="true"] {
  width: 18px;
  background: rgba(10, 124, 255, 0.45);
}

.reviews-dot:focus-visible {
  outline: 2px solid rgba(10, 124, 255, 0.28);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .reviews-carousel {
    --review-card-w: clamp(320px, 46vw, 360px);
  }

  .review-card {
    flex-basis: var(--review-card-w);
  }
}

@media (max-width: 720px) {
  .reviews-carousel {
    --review-card-w: 88vw;
  }

  .reviews-arrows {
    margin-top: 0;
  }

  .review-card {
    flex-basis: var(--review-card-w);
    min-height: 0;
  }

  .reviews-progress {
    max-width: 100%;
  }

  .reviews-bottom {
    flex-wrap: wrap;
  }
}

.reviews-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.reviews-cta-link {
  font-weight: 900;
  color: rgba(7, 21, 35, 0.72);
  opacity: 0.95;
}

.reviews-cta-link:hover,
.reviews-cta-link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.benefit {
  padding: 18px 18px 18px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(7, 21, 35, 0.14);
  border-color: rgba(10, 124, 255, 0.18);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(10, 124, 255, 0.10);
  border: 1px solid rgba(10, 124, 255, 0.14);
  color: #0a63cc;
  margin-bottom: 10px;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.benefit h3 {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  font-weight: 800;
}

.benefit p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

details {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 38, 56, 0.10);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

details:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(7, 21, 35, 0.12);
  border-color: rgba(10, 124, 255, 0.18);
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "›";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 124, 255, 0.10);
  border: 1px solid rgba(10, 124, 255, 0.14);
  color: #0a63cc;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(270deg);
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: max-height 0.25s ease, opacity 0.18s ease, transform 0.18s ease;
}

details[open] .faq-content {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

/* Lead form */
.final-cta {
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(125, 211, 252, 0.25), transparent 55%),
    linear-gradient(135deg, #0a63cc, #0a7cff);
  color: #ffffff;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 18px;
  box-shadow: 0 28px 70px rgba(10, 99, 204, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section--lead .final-cta {
  position: relative;
  overflow: hidden;
}

.section--lead .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 10% 20%, rgba(125, 211, 252, 0.28), transparent 55%),
    radial-gradient(900px 520px at 90% 10%, rgba(255, 255, 255, 0.10), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.section--lead .final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin: 0 0 10px;
  color: #fff;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: rgba(10, 124, 255, 0.12);
  border: 1px solid rgba(10, 124, 255, 0.2);
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M9.2%2016.2%205.6%2012.6%204.2%2014%209.2%2019%2020%208.2%2018.6%206.8Z'/%3E%3C/svg%3E") center/12px 12px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M9.2%2016.2%205.6%2012.6%204.2%2014%209.2%2019%2020%208.2%2018.6%206.8Z'/%3E%3C/svg%3E") center/12px 12px no-repeat;
}

.feature-list--light li {
  color: rgba(255, 255, 255, 0.9);
}

.feature-list--light li::before {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 22px rgba(7, 21, 35, 0.16);
  mask-size: 13px 13px;
  -webkit-mask-size: 13px 13px;
}

/* Sticky header offset for anchors */
#services, #process, #rent, #fit, #why, #faq, #lead-form {
  scroll-margin-top: var(--anchor-offset);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rent-feature {
    grid-template-columns: 0.95fr 1.05fr;
    grid-template-areas:
      "rent-copy rent-media"
      "rent-features rent-media"
      "rent-actions rent-media";
  }

  .rent-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--why .benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-cta {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .header-actions {
    display: inline-flex;
  }

  .nav-toggle,
  .nav-panel {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: min(360px, 92vw);
  }

  .hero-metrics {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-metric {
    max-width: none;
  }

  .hero-metric + .hero-metric {
    padding-left: 0;
    border-left: 0;
  }
}

/* (reverted) */