:root {
      --bg: #07111f;
      --bg-soft: #0d1b2e;
      --bg-card: rgba(255, 255, 255, 0.075);
      --bg-card-strong: rgba(255, 255, 255, 0.11);
      --text: #f6f8fb;
      --muted: #b8c4d6;
      --muted-2: #8593aa;
      --line: rgba(255, 255, 255, 0.13);
      --accent: #f7941e;
      --accent-2: #ffb156;
      --green: #2ee59d;
      --red: #ff6b6b;
      --blue: #68a8ff;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
      --radius: 24px;
      --radius-sm: 16px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(247, 148, 30, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(104, 168, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #091527 45%, #07111f 100%);
      color: var(--text);
      overflow-x: hidden;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--muted);
      font-size: 13px;
      line-height: 1;
      backdrop-filter: blur(14px);
    }

    .pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 22px rgba(46, 229, 157, 0.85);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 14px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 750;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #211304;
      box-shadow: 0 18px 40px rgba(247, 148, 30, 0.26);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--line);
      color: var(--text);
      backdrop-filter: blur(12px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.11);
    }

    .eyebrow {
      color: var(--accent-2);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 14px;
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-tight {
      padding: 62px 0;
    }

    .section-title {
      margin: 0;
      font-size: clamp(34px, 5vw, 58px);
      letter-spacing: -0.05em;
      line-height: 0.98;
    }

    .section-copy {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
      max-width: 760px;
    }

    .center {
      text-align: center;
    }

    .center .section-copy {
      margin-left: auto;
      margin-right: auto;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(7, 17, 31, 0.78);
      backdrop-filter: blur(20px);
    }

    .nav {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 22px;
    }

    .brand-logo {
      height: 44px;
      display: block;
      object-fit: contain;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 13px;
      object-fit: contain;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      background:
        linear-gradient(135deg, rgba(247, 148, 30, 1), rgba(255, 177, 86, 1)),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), transparent 30%);
      display: grid;
      place-items: center;
      color: #190d02;
      box-shadow: 0 10px 30px rgba(247, 148, 30, 0.27);
    }

    .brand-mark span {
      font-weight: 1000;
      transform: rotate(-10deg);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 650;
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.07);
      color: var(--text);
      cursor: pointer;
    }

    /* Hero */
    .hero {
      padding: 92px 0 70px;
      position: relative;
      overflow: hidden;
    }

    /* Full-bleed video hero slider (Ads landing) */
    .hero-slider {
      position: relative;
      height: 92vh;
      min-height: 580px;
      max-height: 900px;
      overflow: hidden;
      background: #000;
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      pointer-events: none;
    }
    .hero-video-fallback {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(247, 148, 30, 0.28), transparent 42%),
        radial-gradient(circle at 80% 30%, rgba(104, 168, 255, 0.2), transparent 40%),
        #07111f;
    }
    .hero-slider .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      pointer-events: none;
      z-index: 1;
    }
    .hero-slider .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
    }
    .hero-slider .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(7, 17, 31, 0.88) 32%, rgba(7, 17, 31, 0.45) 100%);
    }
    .hero-slider .content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 88px 0 72px;
      max-width: var(--max);
    }
    .hero-slider .slide-eyebrow {
      display: inline-flex;
      align-items: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent-2);
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.55s 0.25s, transform 0.55s 0.25s;
    }
    .hero-slider .hero-slide.active .slide-eyebrow {
      opacity: 1;
      transform: none;
    }
    .hero-slider h1 {
      margin: 0 0 1rem;
      font-size: clamp(2.4rem, 5.5vw, 4.1rem);
      line-height: 1.04;
      font-weight: 800;
      letter-spacing: -0.05em;
      color: #fff;
      max-width: 15ch;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
    }
    .hero-slider .hero-slide.active h1 {
      opacity: 1;
      transform: none;
    }
    .hero-slider h1 em {
      font-style: normal;
      color: var(--accent);
    }
    .hero-slider .sub {
      color: rgba(246, 248, 251, 0.78);
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.65;
      max-width: 48ch;
      margin: 0 0 1.75rem;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.6s 0.55s, transform 0.6s 0.55s;
    }
    .hero-slider .hero-slide.active .sub {
      opacity: 1;
      transform: none;
    }
    .hero-slider .cta-row {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      align-items: center;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.55s 0.7s, transform 0.55s 0.7s;
    }
    .hero-slider .hero-slide.active .cta-row {
      opacity: 1;
      transform: none;
    }
    .hero-slider .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.22);
      color: #fff;
    }
    .hero-slider .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent-2);
    }
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      backdrop-filter: blur(6px);
      padding: 0;
    }
    .slider-arrow:hover {
      background: rgba(247, 148, 30, 0.28);
      border-color: rgba(247, 148, 30, 0.55);
    }
    .slider-arrow svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .slider-arrow.prev { left: 1.25rem; }
    .slider-arrow.next { right: 1.25rem; }
    .slider-dots {
      position: absolute;
      bottom: 1.75rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
      z-index: 20;
    }
    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.35s;
    }
    .slider-dot.active {
      background: var(--accent);
      width: 26px;
    }
    .slider-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--accent);
      z-index: 20;
      width: 0;
    }
    @media (max-width: 720px) {
      .slider-arrow { display: none; }
      .hero-slider {
        height: auto;
        min-height: 0;
        max-height: none;
        padding-bottom: 3.5rem;
      }
      .hero-slider .content {
        padding: 6.5rem 0 4.5rem;
        min-height: 70vh;
      }
      .hero-slider h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
        max-width: 12ch;
      }
      .hero-slider .cta-row {
        flex-direction: column;
        align-items: stretch;
      }
      .hero-slider .cta-row .btn {
        width: 100%;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 48px;
      align-items: center;
    }

    .hero h1 {
      margin: 18px 0 0;
      font-size: clamp(46px, 7vw, 84px);
      line-height: 0.92;
      letter-spacing: -0.075em;
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 0%, #ffcf8c 45%, #f7941e 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      color: var(--muted);
      font-size: 20px;
      line-height: 1.72;
      margin: 24px 0 0;
      max-width: 650px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 40px;
      max-width: 640px;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.055);
      backdrop-filter: blur(12px);
    }

    .stat strong {
      display: block;
      font-size: 24px;
      letter-spacing: -0.03em;
    }

    .stat span {
      display: block;
      margin-top: 6px;
      color: var(--muted-2);
      font-size: 13px;
      line-height: 1.35;
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
    }

    .screen-stack {
      position: absolute;
      inset: 0;
    }

    .screen-card {
      position: absolute;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
      backdrop-filter: blur(18px);
      border-radius: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .screen-main {
      width: 82%;
      right: 0;
      top: 32px;
      padding: 14px;
    }

    .screen-main-inner {
      height: 360px;
      border-radius: 20px;
      background:
        linear-gradient(135deg, rgba(247, 148, 30, 0.15), rgba(104, 168, 255, 0.16)),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: auto, 34px 34px, 34px 34px;
      position: relative;
      overflow: hidden;
    }

    .ad-preview {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      border-radius: 18px;
      padding: 20px;
      background: rgba(5, 12, 23, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(14px);
    }

    .ad-preview h3 {
      margin: 0;
      font-size: 24px;
      letter-spacing: -0.04em;
    }

    .ad-preview p {
      font-size: 14px;
      line-height: 1.45;
      margin: 8px 0 0;
      color: var(--muted);
    }

    .screen-owner-card {
      width: 310px;
      left: 0;
      top: 92px;
      padding: 20px;
    }

    .phone-card {
      width: 270px;
      right: 40px;
      bottom: 0;
      padding: 14px;
      border-radius: 34px;
    }

    .phone-inner {
      height: 460px;
      border-radius: 26px;
      background: #091424;
      border: 1px solid rgba(255,255,255,0.1);
      padding: 18px;
      overflow: hidden;
    }

    .phone-top {
      width: 72px;
      height: 5px;
      border-radius: 999px;
      background: rgba(255,255,255,0.18);
      margin: 0 auto 20px;
    }

    .mini-card {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.065);
      border-radius: 18px;
      padding: 14px;
      margin-bottom: 12px;
    }

    .mini-card h4 {
      margin: 0;
      font-size: 14px;
    }

    .mini-card p {
      margin: 6px 0 0;
      color: var(--muted-2);
      font-size: 12px;
      line-height: 1.35;
    }

    .progress {
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
      margin-top: 10px;
    }

    .progress span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), var(--green));
    }

    .floating-status {
      position: absolute;
      right: 0;
      top: 440px;
      border: 1px solid var(--line);
      background: rgba(6, 15, 28, 0.72);
      backdrop-filter: blur(16px);
      border-radius: 18px;
      padding: 14px 16px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .status-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(46, 229, 157, 0.12);
      color: var(--green);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .floating-status strong {
      display: block;
      font-size: 14px;
    }

    .floating-status span {
      color: var(--muted-2);
      font-size: 12px;
    }

    /* Cards / grids */
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .card {
      border: 1px solid var(--line);
      background: var(--bg-card);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 16px 45px rgba(0,0,0,0.16);
      backdrop-filter: blur(16px);
    }

    .card strong.kicker {
      color: var(--accent-2);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .card h3 {
      margin: 12px 0 0;
      font-size: 28px;
      letter-spacing: -0.04em;
      line-height: 1.05;
    }

    .card p {
      margin: 14px 0 0;
      color: var(--muted);
      line-height: 1.65;
    }

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

    .card li {
      color: var(--muted);
      display: flex;
      gap: 10px;
      line-height: 1.4;
    }

    .card li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .icon-box {
      width: 52px;
      height: 52px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      background: rgba(247, 148, 30, 0.13);
      color: var(--accent-2);
      font-size: 24px;
      margin-bottom: 16px;
    }

    .split-section {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 40px;
      align-items: center;
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 18px;
      background: rgba(255,255,255,0.06);
    }

    .step-no {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #1b1004;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      font-weight: 900;
    }

    .step h3 {
      margin: 0;
      font-size: 18px;
      letter-spacing: -0.03em;
    }

    .step p {
      margin: 6px 0 0;
      color: var(--muted);
      line-height: 1.55;
    }

    /* Pricing */
    .pricing-table-wrap {
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,0.055);
      box-shadow: var(--shadow);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 820px;
    }

    th, td {
      text-align: left;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      vertical-align: top;
    }

    th {
      color: var(--text);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      background: rgba(255,255,255,0.055);
    }

    tr:last-child td {
      border-bottom: 0;
    }

    td strong {
      color: var(--text);
    }

    .tag {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(247, 148, 30, 0.14);
      color: var(--accent-2);
      font-size: 12px;
      font-weight: 800;
    }

    .price {
      color: var(--text);
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    /* Revenue calculator */
    .calculator {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .form-box label {
      display: block;
      margin: 18px 0 8px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    select, input[type="range"] {
      width: 100%;
    }

    select {
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--line);
      color: var(--text);
      border-radius: 14px;
      padding: 14px 16px;
      outline: none;
      font-size: 15px;
    }

    option {
      background: #0d1b2e;
      color: var(--text);
    }

    input[type="range"] {
      accent-color: var(--accent);
    }

    .range-row {
      display: flex;
      justify-content: space-between;
      color: var(--muted-2);
      font-size: 13px;
      margin-top: 6px;
    }

    .result-card {
      background:
        radial-gradient(circle at top right, rgba(247,148,30,0.2), transparent 35%),
        rgba(255,255,255,0.08);
    }

    .result-big {
      font-size: clamp(38px, 5vw, 62px);
      letter-spacing: -0.06em;
      margin: 20px 0 0;
      font-weight: 1000;
    }

    .result-sub {
      color: var(--muted);
      margin-top: 10px;
      line-height: 1.5;
    }

    .calc-list {
      margin-top: 24px;
      display: grid;
      gap: 10px;
    }

    .calc-item {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
    }

    .calc-item:last-child {
      border-bottom: 0;
    }

    .calc-item strong {
      color: var(--text);
    }

    /* Payment flow */
    .flow {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      margin-top: 38px;
    }

    .flow-card {
      min-height: 160px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255,255,255,0.06);
      padding: 18px;
      position: relative;
    }

    .flow-card::after {
      content: "→";
      position: absolute;
      right: -13px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--accent-2);
      font-weight: 900;
      z-index: 2;
    }

    .flow-card:last-child::after {
      display: none;
    }

    .flow-card span {
      display: inline-flex;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(247,148,30,0.14);
      color: var(--accent-2);
      align-items: center;
      justify-content: center;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .flow-card h3 {
      margin: 0;
      font-size: 17px;
      letter-spacing: -0.03em;
    }

    .flow-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

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

    .faq-item {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.055);
      border-radius: 18px;
      overflow: hidden;
    }

    .faq-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 20px 22px;
      color: var(--text);
      background: transparent;
      border: 0;
      cursor: pointer;
      text-align: left;
      font-size: 17px;
      font-weight: 800;
    }

    .faq-btn span {
      color: var(--accent-2);
      font-size: 24px;
      flex: 0 0 auto;
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
    }

    .faq-content p {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-item.active .faq-content {
      max-height: 220px;
    }

    .faq-item.active .faq-btn span {
      transform: rotate(45deg);
    }

    /* CTA */
    .cta {
      border: 1px solid var(--line);
      border-radius: 34px;
      background:
        radial-gradient(circle at 20% 10%, rgba(247,148,30,0.32), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(104,168,255,0.18), transparent 28%),
        rgba(255,255,255,0.075);
      padding: 58px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .cta h2 {
      margin: 0;
      font-size: clamp(36px, 6vw, 68px);
      letter-spacing: -0.06em;
      line-height: 0.96;
      max-width: 780px;
    }

    .cta p {
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
      max-width: 720px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    /* Footer */
    .footer {
      padding: 56px 0 34px;
      border-top: 1px solid var(--line);
      background: rgba(0,0,0,0.12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 32px;
    }

    .footer p {
      color: var(--muted);
      line-height: 1.65;
      max-width: 420px;
    }

    .footer h4 {
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }

    .footer a {
      display: block;
      color: var(--muted);
      margin: 10px 0;
      font-size: 14px;
    }

    .footer a:hover {
      color: var(--text);
    }

    .copyright {
      margin-top: 34px;
      color: var(--muted-2);
      font-size: 13px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1040px) {
      .nav-links, .nav-actions {
        display: none;
      }

      .menu-btn {
        display: inline-grid;
        place-items: center;
      }

      .nav.open {
        height: auto;
        padding: 18px 0;
        align-items: flex-start;
      }

      .nav.open .nav-links,
      .nav.open .nav-actions {
        display: flex;
      }

      .nav.open {
        flex-wrap: wrap;
      }

      .nav.open .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0 6px;
      }

      .nav.open .nav-actions {
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .hero-grid,
      .split-section,
      .calculator {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 600px;
        margin-top: 20px;
      }

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

      .flow {
        grid-template-columns: 1fr;
      }

      .flow-card::after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 28px, var(--max));
      }

      .section {
        padding: 68px 0;
      }

      .hero {
        padding: 58px 0 48px;
      }

      .hero h1 {
        font-size: clamp(42px, 13vw, 64px);
      }

      .hero p {
        font-size: 17px;
      }

      .hero-actions, .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 560px;
      }

      .screen-main {
        width: 100%;
        right: 0;
      }

      .screen-main-inner {
        height: 300px;
      }

      .screen-owner-card {
        width: 250px;
        top: 350px;
      }

      .phone-card {
        width: 220px;
        right: 0;
        bottom: 0;
      }

      .phone-inner {
        height: 360px;
      }

      .floating-status {
        display: none;
      }

      .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
      }

      .card, .cta {
        padding: 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }


/* Multi-page additions */
.page-hero{padding:92px 0 46px;border-bottom:1px solid var(--line);background:radial-gradient(circle at 15% 10%,rgba(247,148,30,.18),transparent 32%),radial-gradient(circle at 88% 12%,rgba(104,168,255,.10),transparent 30%)}
.page-hero h1{margin:18px 0 0;font-size:clamp(42px,7vw,76px);line-height:.94;letter-spacing:-.07em;max-width:920px}.page-hero p{color:var(--muted);font-size:20px;line-height:1.7;max-width:820px;margin:22px 0 0}.breadcrumbs{display:flex;flex-wrap:wrap;gap:8px;color:var(--muted-2);font-size:13px;margin-bottom:20px}.breadcrumbs a{color:var(--accent-2)}.page-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:34px;align-items:start}.side-nav{position:sticky;top:100px;border:1px solid var(--line);border-radius:var(--radius);padding:18px;background:rgba(255,255,255,.055);backdrop-filter:blur(16px)}.side-nav strong{display:block;margin-bottom:10px;letter-spacing:-.02em}.side-nav a{display:block;color:var(--muted);padding:10px 12px;border-radius:12px;font-size:14px}.side-nav a:hover{background:rgba(255,255,255,.07);color:var(--text)}.content-panel{border:1px solid var(--line);border-radius:var(--radius);padding:34px;background:rgba(255,255,255,.055);backdrop-filter:blur(16px)}.content-panel h2{margin:0;font-size:clamp(26px,4vw,42px);line-height:1.04;letter-spacing:-.05em}.content-panel h3{margin:34px 0 0;font-size:24px;letter-spacing:-.035em}.content-panel h4{margin:24px 0 0;font-size:18px}.content-panel p{color:var(--muted);line-height:1.75;margin:14px 0 0}.content-panel ul,.content-panel ol{color:var(--muted);line-height:1.7;padding-left:22px}.content-panel li{margin:8px 0}.info-note{border:1px solid rgba(247,148,30,.34);background:rgba(247,148,30,.10);color:var(--muted);padding:18px;border-radius:18px;margin:24px 0}.info-note strong{color:var(--accent-2)}.policy-table{width:100%;min-width:0;margin-top:18px}.policy-table th,.policy-table td{padding:14px 16px}.check-list{list-style:none;padding-left:0!important}.check-list li{display:flex;gap:10px}.check-list li::before{content:'✓';color:var(--green);font-weight:900;flex:0 0 auto}.warning-list li::marker{color:var(--accent)}.simple-flow{display:grid;gap:12px;margin-top:22px}.simple-flow .step{grid-template-columns:42px 1fr}.legal-small{color:var(--muted-2);font-size:13px;margin-top:30px;padding-top:18px;border-top:1px solid var(--line)}.two-col-list{columns:2;column-gap:34px}.active{color:var(--text)!important}@media(max-width:1040px){.page-grid{grid-template-columns:1fr}.side-nav{position:static}}@media(max-width:720px){.page-hero{padding:58px 0 34px}.content-panel{padding:24px}.two-col-list{columns:1}}
