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

    :root {
      --bg: #f6f5f2;
      --surface: #ffffff;
      --card: #ffffff;
      --border: #e8e4dc;
      --gold: #C9A84C;
      --gold-dim: #806515;
      --gold-glow: rgba(212,160,23,0.1);
      --text: #1c1a16;
      --muted: #6e6a60;
      --faint: #aba89f;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 68px;
      transition: background 0.2s ease, backdrop-filter 0.2s ease, border-bottom 0.2s ease;
    }
    nav.scrolled {
      background: rgba(246,245,242,0.94);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      line-height: 0;
      transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s;
    }
    .nav-logo:hover {
      transform: translateY(-1px);
      opacity: 0.92;
    }
    .nav-logo:focus-visible {
      outline: 2px solid var(--gold-dim);
      outline-offset: 3px;
    }
    .nav-logo img {
      display: block;
      width: 190px;
      height: auto;
    }
    body:not(.page-inner) nav:not(.scrolled) .nav-logo,
    body:not(.page-inner) nav:not(.scrolled) .nav-logo:hover,
    body:not(.page-inner) nav:not(.scrolled) .nav-logo:focus-visible {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: none;
      outline: none;
      transition: opacity 0.08s ease, visibility 0s, transform 0.2s;
    }
    body:not(.page-inner) nav.scrolled .nav-logo {
      transition: opacity 0.18s ease 0.1s, visibility 0s linear 0.1s, transform 0.2s;
    }

    .logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
      color: var(--text);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: stretch;
      align-self: stretch;
      height: 100%;
      gap: 36px;
      list-style: none;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1.45;
    }
    .nav-links > li {
      display: flex;
      align-items: center;
    }
    .nav-links > li > a:not(.nav-cta):not(.nav-client-panel) {
      display: inline-flex;
      align-items: center;
      height: 100%;
    }
    .nav-links a,
    .nav-dropdown-toggle {
      color: var(--muted);
      text-decoration: none;
      font: inherit;
      font-family: inherit;
      /* 1em, not inherit: iOS Safari often keeps the UA button size. */
      font-size: 1em;
      font-weight: inherit;
      letter-spacing: inherit;
      line-height: inherit;
      transition: color 0.2s;
    }
    .nav-links a:hover,
    .nav-dropdown-toggle:hover,
    .nav-item-has-children:hover .nav-dropdown-toggle,
    .nav-item-has-children.open .nav-dropdown-toggle {
      color: var(--text);
    }

    .nav-cta {
      background: var(--gold);
      color: var(--text) !important;
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 600 !important;
      transition: opacity 0.2s !important;
    }
    .nav-links a.nav-cta,
    .nav-links a.nav-cta:hover {
      color: var(--text) !important;
    }
    .nav-cta:hover { opacity: 0.85; color: var(--text) !important; }

    .nav-links a:focus-visible,
    .nav-dropdown-toggle:focus-visible,
    .nav-toggle:focus-visible {
      outline: 2px solid var(--gold-dim);
      outline-offset: 3px;
    }
    body:not(.page-inner) nav:not(.scrolled):not(.menu-open) .nav-links > li > a:focus-visible,
    body:not(.page-inner) nav:not(.scrolled):not(.menu-open) .nav-dropdown-toggle:focus-visible,
    body:not(.page-inner) nav:not(.scrolled):not(.menu-open) .nav-toggle:focus-visible {
      outline-color: #ffffff;
      box-shadow: 0 0 0 4px rgba(28,26,22,0.78);
    }

    .nav-client-panel {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 18px;
      border: 1px solid rgba(255,255,255,0.62);
      border-radius: 6px;
      color: #ffffff !important;
      font-weight: 600 !important;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(8px);
      transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s !important;
    }
    .nav-client-panel:hover {
      border-color: rgba(255,255,255,0.9);
      background: rgba(255,255,255,0.12);
      color: #ffffff !important;
      transform: translateY(-1px);
    }
    nav.scrolled .nav-client-panel {
      border-color: rgba(28,26,22,0.24);
      background: rgba(255,255,255,0.72);
      color: var(--text) !important;
    }
    nav.scrolled .nav-client-panel:hover {
      border-color: rgba(28,26,22,0.42);
      background: #ffffff;
      color: var(--text) !important;
    }

    /* Hero nav overrides — white text over dark video */
    body:not(.page-inner) nav:not(.scrolled) .nav-links a,
    body:not(.page-inner) nav:not(.scrolled) .nav-dropdown-toggle {
      color: rgba(255,255,255,0.9);
    }
    body:not(.page-inner) nav:not(.scrolled) .nav-links a:hover,
    body:not(.page-inner) nav:not(.scrolled) .nav-dropdown-toggle:hover,
    body:not(.page-inner) nav:not(.scrolled) .nav-item-has-children:hover .nav-dropdown-toggle,
    body:not(.page-inner) nav:not(.scrolled) .nav-item-has-children.open .nav-dropdown-toggle {
      color: #ffffff;
    }
    .hero {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 600px;
      min-height: max(600px, 100vh);
      min-height: max(600px, 100svh);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(7,7,7,0.28) 0%,
        rgba(7,7,7,0.42) 26%,
        rgba(10,10,8,0.68) 72%,
        rgba(10,10,8,0.9) 100%
      );
    }
    .hero-overlay::before {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-overlay::before {
      width: min(46vw, 560px);
      height: min(46vw, 560px);
      left: 50%;
      top: 48%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 38%, transparent 72%);
      filter: blur(18px);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: min(100%, 1040px);
      padding: clamp(104px, 12vh, 132px) 80px clamp(88px, 10vh, 112px);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: none;
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0;
      margin-bottom: 20px;
    }

    .hero-content, .hero-content * {
      color: #ffffff;
    }
    .hero-badge { color: var(--gold); }

    .hero-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      width: 100%;
    }

    .hero-logo {
      display: block;
      width: min(360px, 70vw);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 12px 28px rgba(0,0,0,0.28));
    }
    .hero-logo-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      width: min(500px, 78vw);
      height: 160px;
      padding: 14px 18px;
      border-radius: 20px;
      background: rgba(255,255,255,0.05);
      --logo-panel-blur: blur(3px);
      backdrop-filter: var(--logo-panel-blur);
      -webkit-backdrop-filter: var(--logo-panel-blur);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }

    .hero-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      font-size: clamp(2rem, 4.4vw, 3.8rem);
      line-height: 1.3;
      margin: 0;
      max-width: 820px;
    }
    .hero-title-primary {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.55rem, 3.4vw, 2.55rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.03em;
      text-wrap: balance;
      margin-top: 8px;
      overflow-wrap: break-word;
    }
    .hero-title-secondary {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      color: var(--gold);
      font-size: clamp(1rem, 2vw, 1.35rem);
      letter-spacing: 0;
      text-wrap: balance;
      margin-top: 16px;
      margin-bottom: 8px;
    }

    .hero-sub {
      font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      color: rgba(240,236,228,0.8);
      font-weight: 300;
      max-width: 620px;
      margin: 0;
      text-wrap: pretty;
    }

    .hero-notice {
      max-width: 700px;
      margin: 0;
      color: rgba(255,255,255,0.86);
      font-size: clamp(0.92rem, 1.35vw, 1rem);
      line-height: 1.7;
      text-wrap: pretty;
    }

    .hero-notice a {
      color: var(--gold);
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1px solid currentColor;
    }

    .hero-notice a:hover {
      color: #ffffff;
    }

    .hero-actions {
      display: grid;
      width: min(100%, 456px);
      grid-template-columns: repeat(2, minmax(0, 220px));
      gap: 16px;
      justify-content: center;
    }

    .hero-actions > a {
      width: 100%;
      min-height: 56px;
      justify-content: center;
    }

    .hero-actions > .btn-primary {
      grid-column: 2;
      grid-row: 1;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
      letter-spacing: 0.01em;
    }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn-primary:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.4);
      color: #ffffff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
      backdrop-filter: blur(8px);
      background: rgba(255,255,255,0.06);
    }
    .btn-secondary:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-1px); }

    .btn-client-panel {
      grid-column: 1;
      grid-row: 1;
      justify-self: stretch;
      min-width: 0;
      justify-content: center;
      border-color: rgba(255,255,255,0.66);
      background: rgba(12,12,10,0.24);
      font-weight: 600;
    }
    .btn-client-panel:hover {
      border-color: #ffffff;
      background: rgba(255,255,255,0.13);
    }
    .nav-client-panel:focus-visible,
    .btn-client-panel:focus-visible {
      outline: 2px solid #ffffff;
      outline-offset: 3px;
    }
    nav.scrolled .nav-client-panel:focus-visible,
    body.page-inner .nav-client-panel:focus-visible,
    nav.menu-open .nav-client-panel:focus-visible {
      outline-color: var(--gold-dim);
    }

    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .scroll-hint-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollpulse 2s ease-in-out infinite;
    }
    @keyframes scrollpulse {
      0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); }
    }

    @media (max-height: 820px) and (min-width: 769px) {
      .hero-content {
        padding: 88px 60px 64px;
        gap: 12px;
      }
      .hero-logo-wrap {
        height: 120px;
      }
      .hero-logo {
        width: min(310px, 64vw);
      }
      .hero-title {
        font-size: clamp(1.9rem, 3.75vw, 3rem);
        gap: 0;
      }
      .hero-title-primary {
        margin-top: 4px;
      }
      .hero-title-secondary {
        margin-top: 10px;
        margin-bottom: 10px;
      }
      .scroll-hint {
        display: none;
      }
    }

    /* Collapse before the navigation runs out of intrinsic space. */
    @media (max-width: 1099px) {
      nav {
        padding: 0 32px;
      }
      .scroll-hint {
        display: none;
      }
    }

    /* ── SECTIONS ── */
    section {
      padding: 100px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-dim);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 16px;
      text-wrap: balance;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
      text-wrap: pretty;
      line-height: 1.65;
    }

    /* ── DEVICES SHOWCASE ── */
    .devices-section {
      border-top: none;
      padding: 72px 48px 100px;
    }
    .devices-section .section-title {
      white-space: nowrap;
      text-wrap: nowrap;
    }
    @media (max-width: 680px) {
      .devices-section .section-title {
        white-space: normal;
        text-wrap: balance;
      }
    }

    .device-showcase {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .device-showcase-img {
      width: min(100%, 1120px);
      height: auto;
      display: block;
    }

    /* ── FEATURES ── */
    #features {
      padding-top: 80px;
      scroll-margin-top: 88px;
    }

    .features-header {
      max-width: none;
      margin-bottom: 64px;
    }
    .features-header .section-title {
      margin-bottom: 0;
      white-space: nowrap;
      text-wrap: nowrap;
    }
    @media (max-width: 560px) {
      .features-header .section-title {
        white-space: normal;
        text-wrap: balance;
      }
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 1fr;
      gap: 2px;
      width: calc(100% - 64px);
    }

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

    .feature-card {
      background: var(--card);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .feature-card:hover { background: #f0f8f5; }
    .feature-card:focus-visible { background: #f0f8f5; }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .feature-card:hover::before,
    .feature-card:focus-visible::before { opacity: 1; }
    .feature-card:focus-visible {
      z-index: 1;
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #f0ede6;
      border: 1px solid oklch(72% 0.12 78 / 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    .feature-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .feature-icon-mark {
      display: block;
      width: 24px;
      height: 24px;
      background: linear-gradient(145deg, #d7b65a, var(--gold-dim));
      -webkit-mask: var(--feature-icon) center / contain no-repeat;
      mask: var(--feature-icon) center / contain no-repeat;
    }
    .feature-heading {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
      margin-bottom: 18px;
    }
    .feature-heading .feature-icon {
      flex-shrink: 0;
      margin-bottom: 0;
    }
    .feature-heading .feature-title {
      min-width: 0;
      margin-bottom: 0;
    }

    .feature-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .feature-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: auto;
      padding-top: 18px;
      color: var(--gold-dim);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }
    .feature-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.2s ease;
    }
    .feature-card:hover .feature-link svg,
    .feature-card:focus-visible .feature-link svg {
      transform: translateX(3px);
    }

    /* ── LIFECYCLE ── */
    .lifecycle-section {
      max-width: none;
      padding: 70px 0 98px;
      border-top: 1px solid var(--border);
      scroll-margin-top: 88px;
      background: #fff;
    }
    .lifecycle-container {
      max-width: 1760px;
      margin: 0 auto;
      padding: 0 clamp(32px, 5.5vw, 96px);
    }
    .lifecycle-header {
      max-width: 880px;
      margin-bottom: 190px;
    }
    .lifecycle-header .section-title {
      font-size: clamp(2.2rem, 2.5vw, 3.15rem);
      margin-bottom: 14px;
      overflow-wrap: break-word;
    }
    .lifecycle-header .section-sub {
      max-width: 800px;
      overflow-wrap: break-word;
    }
    .lifecycle-section .section-label { color: var(--gold-dim); }
    .cycle-map {
      --cycle-gap: clamp(8px, .7vw, 16px);
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(280px, 1.2fr) repeat(2, minmax(0, 1fr));
      gap: var(--cycle-gap);
      align-items: start;
      position: relative;
      isolation: isolate;
    }
    .cycle-map::before {
      content: '';
      position: absolute;
      top: 33px;
      left: 4%;
      right: 4%;
      height: 1px;
      background: linear-gradient(90deg, #ead9b5, #bc9140 50%, #ead9b5);
      z-index: -1;
    }
    .cycle-motion-dot {
      position: absolute;
      top: 0;
      left: 0;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #b58d3d;
      box-shadow: 0 0 0 5px rgba(201, 168, 76, .18);
      opacity: 0;
      z-index: 4;
      pointer-events: none;
    }
    .cycle-step {
      min-width: 0;
      position: relative;
      text-align: center;
    }
    /* :last-of-type, not :last-child: motion dots are extra .cycle-map children. */
    .cycle-map > .cycle-step:not(:last-of-type)::after {
      content: '';
      position: absolute;
      top: 28px;
      right: calc(var(--cycle-gap) / -2 - 1px);
      width: 9px;
      height: 9px;
      border-top: 1px solid #b58d3d;
      border-right: 1px solid #b58d3d;
      transform: rotate(45deg);
    }
    .cycle-icon {
      display: grid;
      place-items: center;
      position: relative;
      z-index: 3;
      width: 68px;
      height: 68px;
      margin: 0 auto;
      border: 1px solid #f0e5cf;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 5px 14px rgba(42, 32, 11, .04);
      transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .cycle-step.is-active .cycle-icon {
      border-color: #b58d3d;
      background: #fff8e9;
      box-shadow: 0 0 0 7px rgba(201, 168, 76, .2), 0 9px 20px rgba(42, 32, 11, .09);
      transform: scale(1.06);
    }
    .cycle-step.is-active h3 { color: #7f5d18; }
    .cycle-step.is-active .cycle-number { color: #7f5d18; }
    .cycle-icon img {
      display: block;
      width: 34px;
      height: 34px;
      object-fit: contain;
    }
    .cycle-icon img[src$="verification.svg"],
    .cycle-icon img[src$="deal.svg"] { width: 31px; height: 31px; }
    .cycle-number {
      position: absolute;
      top: -28px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--gold-dim);
      font-size: .84rem;
      font-weight: 800;
      letter-spacing: .05em;
      line-height: 1;
      transition: color .2s ease;
    }
    .cycle-step h3 {
      min-height: 3.1em;
      margin-top: 16px;
      color: #171717;
      font-size: clamp(.82rem, .92vw, 1rem);
      font-weight: 800;
      line-height: 1.45;
      letter-spacing: -.018em;
      overflow-wrap: break-word;
      transition: color .2s ease;
    }
    .cycle-step p {
      max-width: 190px;
      margin: 7px auto 0;
      color: #6e6a60;
      font-size: clamp(.76rem, .8vw, .91rem);
      line-height: 1.5;
      overflow-wrap: break-word;
    }
    .cycle-channel-panel {
      min-width: 0;
      min-height: 490px;
      max-width: none;
      margin: -189px 0 0;
      padding: 0;
      border: 1px solid #e8dfcf;
      border-radius: 18px;
      background: #fff;
      position: relative;
      z-index: 3;
      text-align: center;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .cycle-channel-panel.is-active {
      border-color: #b58d3d;
      box-shadow: 0 0 0 4px rgba(201, 168, 76, .09);
    }
    .cycle-channel-panel > h3 {
      position: absolute;
      top: 24px;
      left: 0;
      width: 100%;
      color: var(--gold-dim);
      font-size: .87rem;
      font-weight: 800;
      letter-spacing: .045em;
      line-height: 1.4;
      transition: color .2s ease;
    }
    .cycle-channel-panel.is-active > h3 { color: #694b11; }
    .cycle-panel-number {
      margin-right: 3px;
      color: var(--gold-dim);
    }
    .cycle-branch-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 490px;
      fill: none;
      stroke: #c29b49;
      stroke-width: 1.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      pointer-events: none;
    }
    .cycle-channels {
      display: grid;
      gap: 18px;
      position: absolute;
      top: 75px;
      left: 22%;
      width: 56%;
      margin: 0;
      padding: 0;
      list-style: none;
      z-index: 1;
    }
    .cycle-channels li {
      display: flex;
      align-items: center;
      height: 60px;
      min-width: 0;
      gap: 8px;
      padding: 4px 8px;
      border: 1px solid #ece7de;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 4px 12px rgba(38, 30, 13, .06);
      color: #25272b;
      font-size: .8rem;
      font-weight: 600;
      text-align: left;
      transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
    }
    .cycle-channels li.is-active {
      border-color: #b58d3d;
      background: #fff8e9;
      box-shadow: 0 0 0 4px rgba(201, 168, 76, .12), 0 6px 16px rgba(38, 30, 13, .08);
    }
    .channel-mark {
      display: grid;
      place-items: center;
      flex: 0 0 34px;
      width: 34px;
      height: 34px;
      border: 1px solid #f1eee8;
      border-radius: 8px;
    }
    .cycle-channels .channel-card--partner {
      justify-content: center;
      padding-inline: 12px;
    }
    .cycle-channels .channel-card--otomoto {
      padding-inline: 5px;
    }
    .partner-logo {
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }
    .partner-logo--otomoto {
      width: 142px;
    }
    .partner-logo--olx {
      width: 44px;
    }
    .partner-logo--autoplac {
      width: 126px;
    }
    .channel-mark-website-icon {
      display: block;
      width: 22px;
      height: 22px;
      object-fit: contain;
      filter: invert(59%) sepia(35%) saturate(993%) hue-rotate(2deg) brightness(91%) contrast(82%);
    }
    .cycle-channels small {
      display: block;
      margin-top: 1px;
      color: #77736e;
      font-size: .68rem;
      font-weight: 400;
      line-height: 1.25;
    }
    .cycle-channel-panel > p {
      position: absolute;
      right: 14px;
      bottom: 27px;
      left: 14px;
      margin: 0;
      color: #77736e;
      font-size: .79rem;
      line-height: 1.5;
    }
    /* iPad Pro 11 landscape is 1194–1210px; keep the desktop flow there. */
    @media (min-width: 1100px) and (max-width: 1420px) {
      .lifecycle-container {
        padding: 0 clamp(16px, 2vw, 28px);
      }
      .lifecycle-header .section-title {
        font-size: clamp(2rem, 2.6vw, 2.7rem);
      }
      .cycle-map {
        --cycle-gap: clamp(4px, .45vw, 10px);
        grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(280px, 1.55fr) repeat(2, minmax(0, 1fr));
      }
      .cycle-step h3 {
        font-size: clamp(.74rem, .88vw, .9rem);
      }
      .cycle-step p {
        max-width: 100%;
        font-size: clamp(.7rem, .76vw, .8rem);
        overflow-wrap: break-word;
      }
    }
    @media (max-width: 1099px) {
      .lifecycle-section { padding-top: 68px; }
      .lifecycle-header { margin-bottom: 48px; }
      .cycle-map {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 700px;
        margin: 0 auto;
      }
      .cycle-map::before {
        display: none;
      }
      .cycle-motion-dot { display: none; }
      .cycle-step {
        display: grid;
        grid-template-columns: 68px minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        align-items: start;
        column-gap: 20px;
        text-align: left;
      }
      .cycle-map > .cycle-step:not(:last-of-type)::before {
        content: '';
        position: absolute;
        top: 68px;
        bottom: -27px;
        left: 33px;
        width: 1px;
        background: #b58d3d;
      }
      .cycle-map > .cycle-step:not(:last-of-type)::after {
        display: block;
        top: auto;
        right: auto;
        bottom: -27px;
        left: 30px;
        width: 8px;
        height: 8px;
        transform: rotate(135deg);
      }
      .cycle-number {
        position: static;
        grid-column: 2;
        grid-row: 1;
        transform: none;
        margin-bottom: 5px;
      }
      .cycle-icon {
        grid-column: 1;
        grid-row: 1 / 4;
        align-self: start;
        margin: 0;
      }
      .cycle-step h3 {
        grid-column: 2;
        grid-row: 2;
        min-height: 0;
        margin: 0;
        font-size: 1rem;
      }
      .cycle-step p {
        grid-column: 2;
        grid-row: 3;
        max-width: none;
        margin: 5px 0 0;
        font-size: .9rem;
      }
      .cycle-channel-panel {
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 18px;
        text-align: left;
      }
      .cycle-channel-panel::before {
        content: '';
        position: absolute;
        bottom: -27px;
        left: 33px;
        width: 1px;
        height: 27px;
        border-left: 1px solid #b58d3d;
      }
      .cycle-channel-panel::after {
        content: '';
        position: absolute;
        bottom: -27px;
        left: 29px;
        width: 8px;
        height: 8px;
        border-right: 1px solid #b58d3d;
        border-bottom: 1px solid #b58d3d;
        transform: rotate(45deg);
      }
      .cycle-channel-panel > h3,
      .cycle-channel-panel > p {
        position: static;
        width: auto;
      }
      .cycle-channel-panel > h3 {
        margin-bottom: 12px;
        font-size: .95rem;
        text-align: left;
      }
      .cycle-branch-lines { display: none; }
      .cycle-channels {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 200px));
        gap: 8px;
        position: static;
        width: auto;
        max-width: none;
        margin: 0;
        justify-content: start;
        justify-items: stretch;
      }
      .cycle-channels li {
        min-height: 60px;
        height: auto;
        align-items: center;
        padding: 8px 10px;
        font-size: .8rem;
      }
      .cycle-channels small {
        white-space: normal;
      }
      .cycle-channel-panel > p {
        margin: 12px 0 0;
        text-align: left;
      }
    }
    @media (max-width: 600px) {
      .lifecycle-header { margin-bottom: 36px; }
      .cycle-map { gap: 30px; }
      .cycle-step { grid-template-columns: 60px minmax(0, 1fr); column-gap: 14px; }
      .cycle-icon { width: 60px; height: 60px; }
      .cycle-icon img { width: 31px; height: 31px; }
      .cycle-map > .cycle-step:not(:last-of-type)::before { top: 60px; left: 29px; bottom: -24px; }
      .cycle-map > .cycle-step:not(:last-of-type)::after { left: 26px; bottom: -24px; }
      .cycle-step h3 { font-size: .98rem; line-height: 1.38; }
      .cycle-step h3 br { display: none; }
      .cycle-step p { font-size: .875rem; }
      .cycle-channel-panel { width: 100%; margin: 0; padding: 16px 14px; }
      .cycle-channel-panel::before {
        left: 29px;
        width: 1px;
        border-top: 0;
      }
      .cycle-channel-panel::after { left: 25px; }
      .cycle-channel-panel > h3 { margin-bottom: 10px; font-size: .9rem; letter-spacing: .02em; }
      .cycle-channels {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
      }
      .cycle-channels li {
        min-height: 48px;
        gap: 5px;
        padding: 6px 7px;
        font-size: .72rem;
        align-items: center;
      }
      .cycle-channels .channel-card--partner { padding-inline: 8px; }
      .cycle-channels .channel-card--website { justify-content: center; }
      .partner-logo--otomoto { width: 126px; }
      .partner-logo--olx { width: 38px; }
      .partner-logo--autoplac { width: 112px; }
      .cycle-channel-panel .channel-mark {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
        border-radius: 6px;
      }
      .cycle-channel-panel .channel-mark-website-icon { width: 15px; height: 15px; }
      .cycle-channels small { display: none; }
      .cycle-channel-panel > p { margin-top: 12px; font-size: .85rem; }
    }
    @media (max-width: 380px) {
      .cycle-channels { gap: 5px; }
      .cycle-channels li {
        gap: 4px;
        padding: 6px 5px;
        font-size: .68rem;
        white-space: nowrap;
      }
      .cycle-channel-panel .channel-mark {
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
      }
      .cycle-channel-panel .channel-mark-website-icon { width: 13px; height: 13px; }
      .partner-logo--otomoto { width: 116px; }
      .partner-logo--autoplac { width: 102px; }
    }

    /* ── STATS STRIP ── */
    .stats-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: #eaf2ef;
    }
    .stats-strip-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 56px 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .stat {
      text-align: center;
      padding: 0 40px;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* ── DEMO SECTION ── */
    #demo {
      border-top: 1px solid var(--border);
      text-align: center;
    }
    #demo .section-title { max-width: 600px; margin: 0 auto 16px; }
    #demo .section-sub { margin: 0 auto 40px; }

    .demo-mockup {
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: var(--card);
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    }

    .demo-bar {
      background: #e8f0ed;
      border-bottom: 1px solid var(--border);
      padding: 12px 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .demo-dot { width: 11px; height: 11px; border-radius: 50%; }

    .demo-body {
      padding: 40px;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 28px;
      min-height: 360px;
    }

    .demo-sidebar {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .demo-nav-item {
      padding: 10px 14px;
      border-radius: 7px;
      font-size: 0.82rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .demo-nav-item.active {
      background: var(--gold-glow);
      color: var(--gold);
      border: 1px solid oklch(48% 0.18 155 / 0.2);
    }
    .demo-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

    .demo-main {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .demo-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 12px;
    }

    .demo-cell {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 12px 16px;
      font-size: 0.78rem;
    }
    .demo-cell-label { color: var(--faint); font-size: 0.68rem; margin-bottom: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
    .demo-cell-val { color: var(--text); font-weight: 500; }
    .demo-cell-val.gold { color: var(--gold); }

    /* ── CTA ── */
    #pricing {
      border-top: 1px solid var(--border);
      background:
        radial-gradient(circle at top center, rgba(201,168,76,0.12), transparent 38%),
        linear-gradient(180deg, #fbfaf7 0%, #f6f5f2 100%);
    }

    .pricing-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 760px;
      margin: 0 auto 28px;
    }

    .pricing-trial-banner {
      position: relative;
      display: grid;
      grid-template-columns: 68px minmax(0, 1fr);
      align-items: center;
      gap: 22px;
      width: 100%;
      max-width: 760px;
      min-height: 132px;
      margin: 0 auto 38px;
      padding: 16px 22px 16px 18px;
      overflow: hidden;
      color: #fff;
      border: 1px solid rgba(201, 168, 76, 0.52);
      border-radius: 22px;
      background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.1), transparent 32%),
        linear-gradient(118deg, #173f3b 0%, #24514d 64%, #2d625c 100%);
      box-shadow: 0 18px 42px rgba(28, 51, 48, 0.16);
    }
    .pricing-trial-banner::after {
      content: '';
      position: absolute;
      right: -24px;
      bottom: -56px;
      width: 120px;
      height: 120px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      pointer-events: none;
    }
    .pricing-trial-calendar {
      position: relative;
      z-index: 1;
      display: flex;
      width: 68px;
      height: 78px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 13px;
      overflow: hidden;
      color: #163c38;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 14px;
      background: #fffaf0;
      box-shadow: 0 8px 18px rgba(4, 22, 20, 0.14);
      transform: rotate(-3deg);
    }
    .pricing-trial-calendar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 18px;
      background: var(--gold);
    }
    .pricing-trial-calendar::after {
      content: '';
      position: absolute;
      top: 7px;
      left: 19px;
      width: 4px;
      height: 10px;
      border-radius: 3px;
      background: #173f3b;
      box-shadow: 26px 0 0 #173f3b;
    }
    .pricing-trial-calendar strong {
      font-size: 2rem;
      line-height: 1;
    }
    .pricing-trial-calendar span {
      margin-top: 2px;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .pricing-trial-copy {
      position: relative;
      z-index: 1;
      min-width: 0;
    }
    .pricing-trial-copy > strong {
      display: inline;
      font-size: 1.42rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.25;
    }
    .pricing-trial-copy > span {
      display: inline;
      margin-left: 12px;
      color: #e7ca73;
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.4;
    }
    .pricing-trial-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 5px 20px;
      margin-top: 11px;
      padding: 0;
      list-style: none;
    }
    .pricing-trial-benefits li {
      position: relative;
      min-width: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.075em;
      line-height: 1.3;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .pricing-trial-benefits li + li::before {
      content: '\00b7';
      position: absolute;
      left: -12px;
      color: var(--gold);
    }
    .pricing-trial-spark {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 1;
      width: 40px;
      color: var(--gold);
      opacity: 0.86;
    }

    .pricing-shell {
      background: rgba(255,255,255,0.9);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 28px 70px rgba(28,26,22,0.08);
    }

    .pricing-sizebar {
      max-width: 860px;
      margin: 0 auto 26px;
      padding: 0;
      border-bottom: none;
      background: transparent;
    }

    .pricing-sizebar-label {
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 18px;
      text-align: center;
    }

    .pricing-size-options {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .pricing-size-pill {
      min-width: 136px;
      min-height: 112px;
      padding: 14px 18px;
      border-radius: 20px;
      border: 1px solid var(--border);
      background: var(--surface);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
      appearance: none;
      font: inherit;
    }

    .pricing-size-pill.active {
      border-color: rgba(201,168,76,0.75);
      background: linear-gradient(180deg, rgba(201,168,76,0.09), rgba(201,168,76,0.03));
      box-shadow: 0 10px 28px rgba(201,168,76,0.12), inset 0 0 0 1px rgba(201,168,76,0.16);
    }

    .pricing-size-pill:hover {
      transform: translateY(-1px);
      border-color: rgba(201,168,76,0.45);
    }

    .pricing-size-pill:focus-visible {
      outline: 2px solid rgba(201,168,76,0.5);
      outline-offset: 3px;
    }

    .pricing-size-pill strong {
      display: block;
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--gold-dim);
      margin-bottom: 6px;
      line-height: 1;
    }

    .pricing-size-pill span {
      display: block;
      font-size: 0.78rem;
      color: #666154;
      line-height: 1.35;
    }

    .pricing-scroll {
      overflow-x: auto;
    }

    .pricing-grid {
      width: 100%;
      min-width: 1080px;
      border-collapse: collapse;
      table-layout: fixed;
    }

    .pricing-grid th,
    .pricing-grid td {
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 18px;
      vertical-align: middle;
      background: rgba(255,255,255,0.92);
    }

    .pricing-grid tr > *:last-child {
      border-right: none;
    }

    .pricing-grid thead th {
      text-align: center;
      font-weight: 700;
    }

    .pricing-feature-col {
      width: 36%;
      text-align: left !important;
      background: #faf8f3 !important;
    }

    .pricing-plan-name {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .pricing-plan-badge-slot {
      display: flex;
      height: 22px;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }

    .pricing-plan-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 9px;
      color: #765704;
      border: 1px solid rgba(201, 168, 76, 0.48);
      border-radius: 999px;
      background: rgba(201, 168, 76, 0.14);
      font-size: 0.57rem;
      font-weight: 800;
      letter-spacing: 0.055em;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .pricing-price {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 2px;
      margin-bottom: 14px;
      line-height: 1;
    }

    .pricing-price strong {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .pricing-price span {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .pricing-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 118px;
      min-height: 42px;
      padding: 10px 18px;
      border-radius: 10px;
      border: 1px solid var(--border);
      color: var(--text);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 700;
      background: var(--surface);
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }

    .pricing-btn:hover {
      border-color: rgba(201,168,76,0.45);
      background: rgba(201,168,76,0.08);
      color: var(--text);
    }

    .pricing-btn.emphasis {
      border-color: rgba(201,168,76,0.45);
      background: rgba(201,168,76,0.12);
      color: var(--gold-dim);
    }

    .pricing-group td {
      padding: 10px 18px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--faint);
      background: #f3f0e8;
    }

    .pricing-feature {
      color: var(--text);
    }

    .pricing-feature-title {
      display: block;
      font-size: 0.84rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .pricing-feature-description {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.71rem;
      font-weight: 400;
      line-height: 1.5;
    }

    .pricing-icon {
      text-align: center;
      font-size: 0.83rem;
      color: var(--gold-dim);
      font-weight: 700;
      line-height: 1.35;
    }

    .pricing-icon.muted {
      color: #c7c0b3;
    }

    .pricing-custom {
      padding: 22px 20px !important;
      background:
        linear-gradient(180deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)),
        #fffdfa !important;
    }

    .pricing-custom-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }

    .pricing-custom-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(201,168,76,0.28);
      background: rgba(201,168,76,0.12);
      color: var(--gold-dim);
    }

    .pricing-custom-title {
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .pricing-custom-text {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 220px;
    }

    .pricing-footnote {
      text-align: center;
      margin-top: 18px;
      color: var(--faint);
      font-size: 0.76rem;
    }

    .pricing-mobile {
      display: none;
    }

    .pricing-mobile-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      overflow-x: auto;
      padding: 0 4px 10px;
      margin-bottom: 10px;
      scrollbar-width: none;
    }
    .pricing-mobile-tabs::-webkit-scrollbar {
      display: none;
    }

    .pricing-mobile-tab {
      flex: 0 0 auto;
      border: none;
      background: transparent;
      color: var(--muted);
      font: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 10px 14px;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      white-space: nowrap;
    }

    .pricing-mobile-tab.active {
      color: var(--text);
      border-bottom-color: var(--gold);
    }

    .pricing-mobile-card {
      border: 1px solid rgba(201,168,76,0.5);
      border-radius: 22px;
      background: rgba(255,255,255,0.96);
      padding: 22px 18px 18px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .pricing-mobile-card.custom {
      border-color: rgba(201,168,76,0.6);
      background:
        linear-gradient(180deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)),
        rgba(255,255,255,0.98);
    }

    .pricing-mobile-plan {
      font-size: 1.65rem;
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: 6px;
      text-align: center;
    }

    .pricing-mobile-badge {
      align-self: center;
      margin: -4px auto 11px;
      font-size: 0.62rem;
    }

    .pricing-mobile-sub {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.55;
      text-align: center;
      max-width: 280px;
      margin: 0 auto 16px;
    }

    .pricing-mobile-price {
      text-align: center;
      margin-bottom: 8px;
      line-height: 1;
    }

    .pricing-mobile-price strong {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .pricing-mobile-price span {
      font-size: 0.95rem;
      color: var(--muted);
      margin-left: 4px;
    }

    .pricing-mobile-note {
      text-align: center;
      color: var(--faint);
      font-size: 0.78rem;
      margin-bottom: 18px;
    }

    .pricing-mobile-cta {
      display: flex;
      justify-content: center;
      margin-bottom: 18px;
    }

    .pricing-mobile-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 14px;
      border-top: 1px dashed var(--border);
      margin-top: auto;
    }

    .pricing-mobile-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
      line-height: 1.45;
      color: var(--text);
    }

    .pricing-mobile-list li.muted {
      color: #b6afa1;
    }

    .pricing-mobile-list li::before {
      content: '•';
      color: var(--gold);
      font-weight: 800;
      line-height: 1.2;
      flex-shrink: 0;
    }

    .pricing-mobile-list li.muted::before {
      color: #d5cebf;
    }

    .pricing-mobile-groups {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .pricing-mobile-carousel {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 4px 0 12px;
    }
    .pricing-mobile-carousel::-webkit-scrollbar {
      display: none;
    }

    .pricing-mobile-track {
      display: flex;
      gap: 14px;
      padding: 0 24px;
      align-items: stretch;
    }

    .pricing-mobile-slide {
      flex: 0 0 86%;
      scroll-snap-align: center;
      opacity: 0.52;
      transform: scale(0.94);
      transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .pricing-mobile-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .pricing-mobile-compare {
      margin-top: 6px;
    }

    .pricing-mobile-group {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255,255,255,0.92);
    }

    .pricing-mobile-group summary {
      list-style: none;
      cursor: pointer;
      padding: 14px 16px;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--faint);
      background: #f3f0e8;
    }

    .pricing-mobile-group summary::-webkit-details-marker {
      display: none;
    }

    .pricing-mobile-feature-list {
      margin-top: auto;
      border-top: 1px dashed var(--border);
    }

    .pricing-mobile-feature-item {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding: 13px 2px;
      border-top: 1px solid var(--border);
      font-size: 0.84rem;
      line-height: 1.4;
    }

    .pricing-mobile-feature-item:first-child {
      border-top: none;
    }

    .pricing-mobile-feature-item.muted > span:first-child {
      color: #9f988b;
    }

    .pricing-mobile-feature-item > span:first-child {
      flex: 1 1 auto;
      min-width: 0;
    }

    .pricing-mobile-feature-value {
      color: var(--gold-dim);
      font-weight: 700;
      text-align: right;
      flex: 0 1 auto;
      min-width: 0;
      max-width: 55%;
      overflow-wrap: anywhere;
    }

    .pricing-mobile-feature-value.muted {
      color: #c7c0b3;
    }

    @media (max-width: 1099px) {
      .pricing-shell {
        display: none;
      }

      .pricing-mobile {
        display: block;
        max-width: 760px;
        margin: 0 auto;
      }

      .pricing-mobile-slide {
        flex-basis: clamp(420px, 72%, 560px);
      }
    }

    #contact {
      border-top: 1px solid var(--border);
    }

    .cta-block {
      background: #eaf2ef;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 72px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-block::before {
      content: '';
      position: absolute;
      top: -120px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, oklch(48% 0.18 155 / 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.025em;
      margin-bottom: 16px;
      text-wrap: balance;
    }
    .cta-sub {
      color: var(--muted);
      margin-bottom: 28px;
      font-size: 1.05rem;
    }

    .contact-actions {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 860px;
      margin: 0 auto;
    }

    .contact-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      text-decoration: none;
      min-height: 82px;
      padding: 18px 20px;
      border-radius: 12px;
      min-width: 0;
      transition: box-shadow 0.2s, filter 0.2s, transform 0.2s;
    }

    .contact-action-copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      min-width: 0;
      text-align: center;
    }

    .contact-action-value {
      font-size: 0.94rem;
      line-height: 1.2;
      white-space: nowrap;
    }

    .contact-action-caption {
      font-size: 0.66rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 0.08em;
      opacity: 0.78;
      white-space: nowrap;
    }

    .contact-phone {
      background: #24504d;
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(36, 80, 77, 0.2);
    }

    .contact-whatsapp {
      background: #25d366;
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(37, 211, 102, 0.2);
    }

    .contact-email {
      background: var(--gold);
      color: var(--text);
      box-shadow: 0 10px 24px rgba(201, 168, 76, 0.2);
    }

    .contact-action img,
    .contact-action svg {
      width: 22px;
      height: 22px;
      display: block;
      flex-shrink: 0;
    }

    .contact-action:hover {
      filter: brightness(0.94);
      transform: translateY(-2px);
    }

    .contact-action:focus-visible {
      outline: 3px solid rgba(201, 168, 76, 0.4);
      outline-offset: 3px;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 36px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
    footer .logo { font-size: 1.1rem; }
    footer p { font-size: 0.8rem; color: var(--faint); }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: none;
    }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }
    .fade-up:nth-child(6) { transition-delay: 0.5s; }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      nav {
        padding: 0 20px;
      }
      .nav-logo img {
        width: 150px;
      }
      .hero-content {
        padding: 96px 24px 64px;
        gap: 18px;
      }
      .hero-brand {
        padding: 8px 0 0;
      }
      .hero-brand::before {
        width: min(92vw, 520px);
        height: min(50vw, 280px);
      }
      .hero-logo {
        width: min(300px, 68vw);
      }
      .hero-logo-wrap {
        width: min(420px, 82vw);
        height: 118px;
        padding: 12px 14px;
      }
      .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        gap: 0;
        max-width: 100%;
        padding: 0 4px;
      }
      .hero-title-primary {
        letter-spacing: -0.03em;
        font-size: clamp(1.4rem, 6.2vw, 1.75rem);
        line-height: 1.22;
        margin-top: 0;
        text-wrap: pretty;
      }
      .hero-title-secondary {
        font-size: 0.95rem;
        margin-top: 10px;
        margin-bottom: 4px;
      }
      .hero-sub {
        font-size: 0.92rem;
        padding: 0 4px;
      }
      .hero-notice {
        font-size: 0.9rem;
        line-height: 1.6;
      }
      .hero-actions {
        width: min(100%, 320px);
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
      }
      .hero-actions > .btn-primary {
        grid-column: auto;
        grid-row: auto;
      }
      .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
      }
      .btn-client-panel {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
      }
      section {
        padding: 64px 20px;
      }

      .stats-strip-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 32px;
      }
      .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 0 32px;
      }
      .stat:last-child { border-bottom: none; padding-bottom: 0; }

      .devices-section {
        padding: 48px 0 64px;
      }
      .devices-section > div {
        padding: 0 20px;
      }
      .devices-section > div > .fade-up {
        margin-bottom: 40px !important;
      }
      .device-showcase-img {
        width: 100%;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: auto;
        padding: 0 20px;
      }
      .feature-card {
        padding: 20px 16px;
        border-radius: 12px;
        border: 1px solid var(--border);
      }
      .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 14px;
      }
      .feature-icon svg {
        width: 18px;
        height: 18px;
      }
      .feature-icon-mark {
        width: 20px;
        height: 20px;
      }
      .feature-heading {
        gap: 12px;
        margin-bottom: 14px;
      }
      .feature-title {
        font-size: 0.88rem;
        margin-bottom: 6px;
      }
      .feature-desc {
        font-size: 0.78rem;
      }
      .feature-link {
        padding-top: 14px;
        font-size: 0.74rem;
      }

      #features {
        padding: 88px 0 64px !important;
        scroll-margin-top: 80px;
      }
      #features > div:first-child {
        padding: 0 20px !important;
      }

      #lifecycle {
        padding: 64px 0 !important;
        scroll-margin-top: 80px;
      }
      .lifecycle-container {
        padding: 0 20px !important;
      }
      .lifecycle-header { margin-bottom: 36px; }

      #demo {
        padding: 64px 20px !important;
      }

      #pricing {
        padding: 64px 20px !important;
      }
      #faq {
        padding: 64px 20px !important;
      }
      .home-faq-header {
        margin-bottom: 28px;
      }
      .faq-columns {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .pricing-head {
        margin-bottom: 24px;
      }
      .pricing-trial-banner {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
        min-height: 108px;
        margin-bottom: 24px;
        padding: 14px;
        border-radius: 18px;
        background:
          radial-gradient(circle at 94% 12%, rgba(255, 255, 255, 0.09), transparent 34%),
          linear-gradient(118deg, #173f3b 0%, #24514d 68%, #2d625c 100%);
      }
      .pricing-trial-banner::after {
        right: -46px;
        bottom: -76px;
      }
      .pricing-trial-calendar {
        width: 56px;
        height: 64px;
        padding-top: 11px;
        border-radius: 12px;
      }
      .pricing-trial-calendar::before {
        height: 15px;
      }
      .pricing-trial-calendar::after {
        top: 5px;
        left: 15px;
        height: 9px;
        box-shadow: 21px 0 0 #173f3b;
      }
      .pricing-trial-calendar strong {
        font-size: 1.6rem;
      }
      .pricing-trial-calendar span {
        font-size: 0.55rem;
      }
      .pricing-trial-copy > strong {
        display: block;
        padding-right: 8px;
        font-size: 1.08rem;
      }
      .pricing-trial-copy > span {
        display: block;
        margin-top: 4px;
        margin-left: 0;
        font-size: 0.9rem;
      }
      .pricing-trial-benefits {
        justify-content: flex-start;
        gap: 6px 14px;
        width: 100%;
        margin-top: 8px;
        text-align: left;
      }
      .pricing-trial-benefits li {
        font-size: 0.64rem;
        letter-spacing: 0.045em;
      }
      .pricing-trial-benefits li + li::before {
        display: none;
      }
      .pricing-trial-spark {
        display: none;
      }
      .pricing-shell {
        border-radius: 18px;
      }
      .pricing-sizebar {
        margin-bottom: 18px;
        padding: 0 6px;
      }
      .pricing-sizebar-label {
        margin-bottom: 16px;
        font-size: 0.72rem;
      }
      .pricing-size-options {
        gap: 10px;
      }
      .pricing-size-pill {
        min-width: calc(50% - 5px);
        min-height: 96px;
        flex: 1 1 0;
        padding: 12px 10px;
        border-radius: 16px;
      }
      .pricing-size-pill strong {
        font-size: 1.35rem;
        margin-bottom: 4px;
      }
      .pricing-size-pill span {
        font-size: 0.72rem;
      }
      .pricing-grid {
        min-width: 860px;
      }
      .pricing-grid th,
      .pricing-grid td {
        padding: 14px 12px;
      }
      .pricing-price strong {
        font-size: 1.8rem;
      }
      .pricing-btn {
        min-width: 102px;
        padding: 10px 14px;
      }
      .pricing-shell {
        display: none;
      }
      .pricing-mobile {
        display: block;
        max-width: 100%;
        margin: 0 auto;
      }
      .pricing-mobile-track {
        padding: 0 18px;
      }
      .pricing-mobile-slide {
        flex-basis: 88%;
      }

      #contact {
        padding: 64px 20px 80px !important;
      }
      .cta-block {
        padding: 40px 24px;
      }
      .contact-actions {
        grid-template-columns: 1fr;
      }
      .contact-action {
        width: 100%;
      }

      footer {
        padding: 28px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    /* Tweaks Panel */
    #tweaks-panel {
      display: none;
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9999;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 24px;
      width: 260px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      font-size: 0.82rem;
    }
    #tweaks-panel h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text);
    }
    .tweak-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .tweak-row label { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; }
    .tweak-row select, .tweak-row input[type=range] {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      color: var(--text);
      padding: 7px 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.8rem;
      outline: none;
      cursor: pointer;
    }

    a.feature-card {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }
    a.feature-card:focus-visible {
      outline: 2px solid var(--gold-dim);
      outline-offset: 3px;
    }

    .pricing-seo {
      max-width: 760px;
      margin: 0 auto 36px;
      text-align: center;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    footer {
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 22px;
      list-style: none;
      justify-content: center;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
    }
    .footer-links a:hover { color: var(--text); }

    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 8px;
      background: rgba(255,255,255,0.08);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: var(--text);
    }
    body:not(.page-inner) nav:not(.scrolled) .nav-toggle {
      border-color: rgba(255,255,255,0.28);
      background: rgba(255,255,255,0.08);
    }
    body:not(.page-inner) nav:not(.scrolled) .nav-toggle span {
      background: #fff;
    }
    nav.scrolled .nav-toggle,
    body.page-inner .nav-toggle {
      border-color: var(--border);
      background: #fff;
    }
    nav.scrolled .nav-toggle span,
    body.page-inner .nav-toggle span {
      background: var(--text);
    }

    .nav-item-has-children {
      position: relative;
    }
    .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      appearance: none;
      -webkit-appearance: none;
      height: 100%;
      text-align: start;
    }
    .nav-dropdown-toggle svg {
      width: 12px;
      height: 12px;
      opacity: 0.7;
      transition: transform 0.2s ease;
    }
    .nav-item-has-children:hover .nav-dropdown-toggle svg,
    .nav-item-has-children:focus-within .nav-dropdown-toggle svg,
    .nav-item-has-children.open .nav-dropdown-toggle svg {
      transform: rotate(180deg);
    }
    .nav-item-has-children.escape-closed .nav-dropdown-toggle svg {
      transform: none;
    }
    .nav-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      min-width: 420px;
      padding: 16px 10px 10px;
      background: transparent;
      border: none;
      box-shadow: none;
      list-style: none;
      z-index: 120;
      isolation: isolate;
    }
    .nav-dropdown::after {
      content: "";
      position: absolute;
      inset: 6px 0 0;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 18px 40px rgba(28,26,22,0.12);
      z-index: 0;
      pointer-events: none;
    }
    .nav-item-has-children:hover .nav-dropdown,
    .nav-item-has-children:focus-within .nav-dropdown,
    .nav-item-has-children.open .nav-dropdown {
      display: block;
    }
    .nav-item-has-children.escape-closed .nav-dropdown {
      display: none;
    }
    .nav-dropdown a {
      display: block;
      position: relative;
      z-index: 1;
      padding: 10px 12px;
      border-radius: 8px;
      color: var(--text) !important;
    }
    @media (min-width: 1100px) {
      .nav-dropdown a {
        font-size: 0.84rem !important;
      }
      /* The card is centered and wider than the ~72px trigger. Cover leftover
         strips inside the 68px bar so the pointer can reach the menu without a
         mouseleave. Right width stays under the 36px gap before Demo. */
      .nav-item-has-children:hover::before,
      .nav-item-has-children:focus-within::before,
      .nav-item-has-children.open::before,
      .nav-item-has-children:hover::after,
      .nav-item-has-children:focus-within::after,
      .nav-item-has-children.open::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: -24px;
      }
      .nav-item-has-children:hover::before,
      .nav-item-has-children:focus-within::before,
      .nav-item-has-children.open::before {
        right: 100%;
        width: 110px;
      }
      .nav-item-has-children:hover::after,
      .nav-item-has-children:focus-within::after,
      .nav-item-has-children.open::after {
        left: 100%;
        width: 28px;
      }
    }
    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
      background: #f7f3ea;
    }

    body.page-inner nav {
      background: rgba(246,245,242,0.94);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }
    body.page-inner .nav-links a,
    body.page-inner .nav-dropdown-toggle {
      color: var(--muted);
    }
    body.page-inner .nav-client-panel {
      border-color: rgba(28,26,22,0.24);
      background: rgba(255,255,255,0.72);
      color: var(--text) !important;
    }

    .page-hero {
      max-width: min(860px, 100%);
      margin: 0 auto;
      padding: 140px 48px 48px;
    }
    .page-hero h1 {
      font-size: clamp(1.7rem, 4vw, 3.1rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.12;
      margin-bottom: 18px;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .page-lead {
      font-size: 1.08rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 680px;
      overflow-wrap: break-word;
    }

    .page-content {
      max-width: min(860px, 100%);
      margin: 0 auto;
      padding: 0 48px 80px;
      min-width: 0;
    }
    .page-content h2 {
      font-size: 1.45rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 36px 0 12px;
      overflow-wrap: break-word;
      text-wrap: pretty;
    }
    .page-content p,
    .page-content li {
      color: var(--muted);
      line-height: 1.75;
      font-size: 1rem;
      overflow-wrap: break-word;
    }
    .page-content p { margin-bottom: 14px; }
    .page-content ul,
    .page-content ol {
      margin: 0 0 18px 1.2em;
    }
    .page-content li { margin-bottom: 8px; }
    .page-content a {
      color: var(--gold-dim);
      font-weight: 600;
    }
    .page-content a.btn-primary,
    .page-content a.btn-primary:hover {
      color: var(--text);
    }

    .content-photo {
      margin: 8px 0 36px;
      padding: 0;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow:
        0 1px 1px rgba(28,26,22,0.04),
        0 14px 36px rgba(28,26,22,0.07);
    }
    .content-photo-frame {
      position: relative;
      padding: 8px 8px 0;
      max-width: 100%;
      min-width: 0;
      background:
        linear-gradient(180deg, #fff 0%, #f7f3ea 100%);
    }
    .content-photo-frame::after {
      content: '';
      position: absolute;
      inset: 8px 8px 0;
      border-radius: 12px;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(201,168,76,0.22);
    }
    .content-photo img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: contain;
      object-position: center;
      aspect-ratio: 1448 / 1086;
    }
    .content-photo figcaption {
      padding: 14px 18px 16px;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.5;
      letter-spacing: -0.01em;
      overflow-wrap: break-word;
      text-wrap: pretty;
    }

    .content-cta {
      margin-top: 40px;
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #eaf2ef;
      text-align: center;
    }
    .content-cta p {
      margin-bottom: 18px;
      color: var(--text);
    }

    .related-pages {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 28px;
    }
    .related-card {
      display: block;
      padding: 22px 20px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.2s, transform 0.2s;
    }
    .related-card:hover {
      border-color: rgba(201,168,76,0.55);
      transform: translateY(-2px);
    }
    .related-card:focus-visible {
      outline: 2px solid var(--gold-dim);
      outline-offset: 3px;
      border-color: rgba(201,168,76,0.55);
    }
    .related-card strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1rem;
    }
    .related-card span {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 48px 100px;
    }
    .home-faq-inner {
      --faq-accessible-gold: #8f6908;
      max-width: 1180px;
      margin: 0 auto;
    }
    .home-faq-header {
      max-width: 760px;
      margin-bottom: 40px;
    }
    .home-faq-header .section-sub {
      max-width: 680px;
    }
    .home-faq-header .section-label {
      color: var(--faq-accessible-gold);
    }
    #faq {
      scroll-margin-top: 88px;
    }
    .faq-columns {
      display: grid;
      grid-template-rows: repeat(7, auto);
      grid-auto-flow: column;
      grid-auto-columns: minmax(0, 1fr);
      gap: 10px 18px;
      align-items: stretch;
    }
    .faq-col {
      display: contents;
    }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
      padding: 4px 20px;
      transition: border-color 0.2s;
    }
    .faq-item:hover,
    .faq-item:focus-within {
      border-color: rgba(201,168,76,0.45);
    }
    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      font-weight: 700;
      padding: 16px 0;
      list-style: none;
    }
    .faq-item summary:focus-visible {
      outline: 2px solid var(--faq-accessible-gold);
      outline-offset: 4px;
      border-radius: 8px;
    }
    .faq-item:not([open]) summary {
      min-height: 100%;
    }
    @media (min-width: 981px) {
      .faq-columns:has(.faq-item:nth-child(1)[open]) .faq-item:nth-child(1),
      .faq-columns:has(.faq-item:nth-child(2)[open]) .faq-item:nth-child(2),
      .faq-columns:has(.faq-item:nth-child(3)[open]) .faq-item:nth-child(3),
      .faq-columns:has(.faq-item:nth-child(4)[open]) .faq-item:nth-child(4),
      .faq-columns:has(.faq-item:nth-child(5)[open]) .faq-item:nth-child(5),
      .faq-columns:has(.faq-item:nth-child(6)[open]) .faq-item:nth-child(6),
      .faq-columns:has(.faq-item:nth-child(7)[open]) .faq-item:nth-child(7) {
        align-self: start;
      }
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::marker { content: none; }
    .faq-item summary::after {
      content: '';
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background:
        linear-gradient(var(--gold-dim), var(--gold-dim)) center / 11px 2px no-repeat,
        linear-gradient(var(--gold-dim), var(--gold-dim)) center / 2px 11px no-repeat;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .faq-item[open] summary::after {
      background: linear-gradient(var(--gold-dim), var(--gold-dim)) center / 11px 2px no-repeat;
      border-color: rgba(201,168,76,0.5);
    }
    .faq-item p {
      color: var(--muted);
      padding: 0 0 16px;
      line-height: 1.7;
    }
    .faq-item a {
      color: var(--faq-accessible-gold);
      font-weight: 600;
    }
    .faq-contact-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      width: 100%;
      max-width: 560px;
      padding: 0 0 16px;
    }
    .faq-item .faq-contact-action {
      display: flex;
      min-width: 0;
      min-height: 66px;
      align-items: center;
      gap: 10px;
      padding: 10px 13px;
      overflow: hidden;
      color: #fff;
      border: 1px solid transparent;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 8px 18px rgba(28, 26, 22, 0.08);
      transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    }
    .faq-item .faq-contact-action:hover {
      filter: brightness(1.03);
      transform: translateY(-2px);
      box-shadow: 0 11px 22px rgba(28, 26, 22, 0.12);
    }
    .faq-item .faq-contact-action:focus-visible {
      outline: 2px solid var(--faq-accessible-gold);
      outline-offset: 3px;
    }
    .faq-contact-action svg,
    .faq-contact-action img {
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      object-fit: contain;
    }
    .faq-contact-action > span {
      display: flex;
      min-width: 0;
      flex-direction: column;
      line-height: 1.2;
    }
    .faq-contact-action strong {
      overflow: hidden;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .faq-contact-action small {
      margin-top: 3px;
      font-size: 0.57rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      opacity: 0.82;
      text-transform: uppercase;
    }
    .faq-item .faq-contact-form {
      color: #1c1a16;
      border-color: rgba(201, 168, 76, 0.5);
      background: linear-gradient(135deg, #fffaf0, #f4ead0);
    }
    .faq-item .faq-contact-phone {
      background: #245a56;
    }
    .faq-item .faq-contact-whatsapp {
      background: #25d366;
    }
    .faq-item .faq-contact-email {
      color: #1c1a16;
      background: #d1ad4d;
    }
    @media (max-width: 980px) {
      .faq-columns {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        grid-auto-columns: auto;
      }
    }
    @media (max-width: 520px) {
      .faq-contact-links {
        grid-template-columns: 1fr;
      }
    }

    .error-page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 24px;
    }
    .error-page h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      margin: 12px 0 16px;
    }
    body.page-inner .btn-secondary {
      color: var(--text);
      border-color: var(--border);
      background: #fff;
    }
    body.page-inner .btn-secondary:hover {
      color: var(--text);
    }

    @media (max-width: 1099px) {
      .nav-toggle { display: inline-flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        height: auto;
        max-height: calc(100dvh - 84px);
        max-height: calc(100svh - 84px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        align-self: auto;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow: 0 24px 50px rgba(28,26,22,0.14);
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
      }
      nav.menu-open .nav-links { display: flex; }
      .nav-links > li {
        display: block;
      }
      .nav-item-has-children {
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }
      .nav-links a,
      .nav-dropdown-toggle {
        color: var(--text) !important;
        padding: 10px 10px;
        width: 100%;
        height: auto;
        justify-content: space-between;
        text-align: start;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 16px !important;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.45;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
      }
      .nav-item-has-children .nav-dropdown a {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 16px !important;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.45;
      }
      .nav-item-has-children:hover .nav-dropdown-toggle svg,
      .nav-item-has-children:focus-within .nav-dropdown-toggle svg {
        transform: none;
      }
      .nav-item-has-children.open .nav-dropdown-toggle svg,
      .nav-item-has-children.open:hover .nav-dropdown-toggle svg,
      .nav-item-has-children.open:focus-within .nav-dropdown-toggle svg {
        transform: rotate(180deg);
      }
      .nav-item-has-children .nav-dropdown {
        position: static;
        transform: none;
        isolation: auto;
        z-index: auto;
        box-shadow: none;
        border: none;
        border-left: 1px solid var(--border);
        margin: 0 8px 6px 12px;
        padding: 2px 0 6px 8px;
        display: none;
        min-width: 0;
        width: auto;
      }
      .nav-item-has-children .nav-dropdown::after {
        content: none;
      }
      /* Click/.open only: desktop :hover/:focus-within would keep it visible after a second tap. */
      .nav-item-has-children:hover .nav-dropdown,
      .nav-item-has-children:focus-within .nav-dropdown {
        display: none;
      }
      .nav-item-has-children.open .nav-dropdown { display: block; }
      .nav-cta,
      .nav-client-panel {
        text-align: center;
        margin-top: 4px;
      }
      .nav-links a.nav-cta,
      .nav-links a.nav-client-panel {
        text-align: center;
      }
      /* White sheet: keep gold CTA readable and Panel a real button, not a ghost link. */
      .nav-links a.nav-cta,
      .nav-links a.nav-cta:hover {
        color: var(--text) !important;
        display: flex;
        justify-content: center;
      }
      .nav-links a.nav-client-panel,
      .nav-links a.nav-client-panel:hover {
        color: var(--text) !important;
        border-color: rgba(28,26,22,0.24);
        background: rgba(255,255,255,0.72);
        justify-content: center;
      }
      .nav-links a.nav-client-panel:hover {
        border-color: rgba(28,26,22,0.42);
        background: #ffffff;
      }
    }

    @media (max-width: 768px) {
      .page-hero,
      .page-content,
      .faq-list {
        padding-left: 20px;
        padding-right: 20px;
      }
      .page-hero { padding-top: 112px; }
      .related-pages { grid-template-columns: 1fr; }
      .content-photo {
        margin: 4px 0 28px;
        border-radius: 14px;
      }
      .content-photo-frame {
        padding: 6px 6px 0;
      }
      .content-photo-frame::after {
        inset: 6px 6px 0;
        border-radius: 10px;
      }
      .content-photo img {
        border-radius: 10px;
      }
      .content-photo figcaption {
        padding: 12px 14px 14px;
      }
      footer .footer-links {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
      .feature-card {
        padding: 24px 20px;
      }
      .feature-title {
        font-size: 0.96rem;
      }
      .feature-desc {
        font-size: 0.82rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .cycle-motion-dot { display: none; }
      .cycle-icon,
      .cycle-channels li,
      .cycle-channel-panel,
      .cycle-channel-panel > h3,
      .cycle-step h3,
      .cycle-number {
        transition: none;
      }
      .feature-card,
      .feature-link svg,
      .related-card,
      .btn-primary,
      .btn-secondary,
      .contact-action {
        transition: none;
      }
      .feature-card:hover .feature-link svg,
      .feature-card:focus-visible .feature-link svg,
      .related-card:hover,
      .btn-primary:hover,
      .btn-secondary:hover,
      .contact-action:hover {
        transform: none;
      }
      .scroll-hint-line {
        animation: none;
      }
    }
