:root {
      --primary: #ee9b31;
      --primary-dark: #d98215;
      --secondary: #424242;
      --background: #F5F5F5;
      --surface: #FFFFFF;
      --text: #262626;
      --muted: #727272;
      --border: #E7E7E7;
      --success: #2F8F5B;
      --shadow: 0 18px 50px rgba(40, 40, 40, .09);
      --radius-lg: 28px;
      --radius-md: 18px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
      color-scheme: light;
    }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--background);
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    img { max-width: 100%; display: block; }
    section[id] { scroll-margin-top: 92px; }

    :focus-visible {
      outline: 3px solid rgba(238, 155, 49, .65);
      outline-offset: 4px;
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 100;
      padding: 10px 16px;
      border-radius: 10px;
      color: var(--surface);
      background: var(--secondary);
      transform: translateY(-150%);
      transition: transform .2s ease;
    }

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

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

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(245, 245, 245, .88);
      border-bottom: 1px solid rgba(231, 231, 231, .8);
    }

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

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.7px;
      color: var(--secondary);
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: var(--surface);
      background: var(--primary);
      box-shadow: 0 8px 20px rgba(238, 155, 49, .35);
      font-size: 19px;
      transform: rotate(-4deg);
    }

    .logo span:last-child { color: var(--primary); }

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

    .nav-links a { transition: .2s ease; }
    .nav-links a:hover { color: var(--primary-dark); }

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

    .btn {
      min-height: 48px;
      padding: 0 22px;
      border: 0;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      cursor: pointer;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-block { width: 100%; }
    .btn-primary {
      color: var(--surface);
      background: var(--primary);
      box-shadow: 0 12px 28px rgba(238, 155, 49, .28);
    }
    .btn-primary:hover { background: var(--primary-dark); }
    .btn-secondary {
      color: var(--secondary);
      background: var(--surface);
      border: 1px solid var(--border);
    }
    .btn-dark {
      color: var(--surface);
      background: var(--secondary);
    }

    .hero {
      padding: 64px 0 42px;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -180px;
      top: 40px;
      border-radius: 50%;
      background: rgba(238, 155, 49, .15);
      filter: blur(2px);
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 56px;
    }
    .hero-grid > *,
    .pricing-card > * { min-width: 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: #FFF2DF;
      color: #A65B00;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(238, 155, 49, .15);
    }

    h1 {
      margin: 0;
      color: var(--secondary);
      font-size: clamp(42px, 6vw, 72px);
      line-height: .99;
      letter-spacing: -3px;
      max-width: 760px;
    }

    h1 em {
      font-style: normal;
      color: var(--primary);
    }

    .hero-copy {
      max-width: 640px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 19px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 26px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 650;
    }

    .hero-note span::before {
      content: "✓";
      margin-right: 7px;
      color: var(--success);
      font-weight: 900;
    }

    .dashboard {
      position: relative;
      background: var(--surface);
      border: 1px solid rgba(231, 231, 231, .9);
      border-radius: 30px;
      box-shadow: var(--shadow);
      padding: 18px;
      transform: rotate(1.2deg);
    }

    .dash-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 5px 5px 18px;
    }

    .dash-title strong { display: block; font-size: 16px; }
    .dash-title span { color: var(--muted); font-size: 12px; }

    .status {
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--success);
      background: #EAF8F0;
      font-size: 11px;
      font-weight: 850;
    }

    .task-card {
      background: var(--background);
      border-radius: 20px;
      padding: 18px;
      margin-bottom: 12px;
      border: 1px solid #ECECEC;
    }

    .task-card:last-child { margin-bottom: 0; }
    .task-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .task-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #FFF1DE;
      color: var(--primary-dark);
      font-size: 20px;
      flex: 0 0 auto;
    }

    .task-info { flex: 1; min-width: 0; }
    .task-info strong {
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: var(--secondary);
    }
    .task-info span { color: var(--muted); font-size: 12px; }
    .task-price { font-weight: 900; color: var(--secondary); }

    .progress {
      height: 7px;
      margin-top: 14px;
      background: #E3E3E3;
      border-radius: 999px;
      overflow: hidden;
    }
    .progress span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: var(--primary);
    }
    .progress-63 { width: 63%; }
    .progress-81 { width: 81%; }
    .progress-86 { width: 86%; }

    .float-card {
      position: absolute;
      right: -34px;
      bottom: 44px;
      padding: 14px 16px;
      background: var(--secondary);
      color: var(--surface);
      border-radius: 16px;
      box-shadow: 0 18px 32px rgba(66, 66, 66, .22);
      transform: rotate(-4deg);
    }

    .float-card b { color: var(--primary); }

    section { padding: 64px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 30px;
    }

    .section-head h2,
    .center-head h2 {
      margin: 0;
      color: var(--secondary);
      font-size: clamp(34px, 4vw, 50px);
      line-height: 1.05;
      letter-spacing: -1.7px;
    }

    .section-head p {
      max-width: 510px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .center-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 34px;
    }
    .center-head p { color: var(--muted); font-size: 17px; }

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

    .feature {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 28px;
      border-radius: var(--radius-md);
      transition: .25s ease;
    }

    .feature:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: rgba(238, 155, 49, .45);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: #FFF1DE;
      color: var(--primary-dark);
      font-size: 23px;
      margin-bottom: 22px;
    }

    .feature h3 {
      margin: 0 0 10px;
      color: var(--secondary);
      font-size: 20px;
    }

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

    .verification-section { padding: 0 0 56px; }

    .verification-panel {
      position: relative;
      overflow: hidden;
      padding: 50px;
      border-radius: var(--radius-lg);
      color: var(--surface);
      background: var(--secondary);
    }

    .verification-panel::after {
      content: "";
      position: absolute;
      top: -150px;
      right: -120px;
      width: 360px;
      height: 360px;
      border: 52px solid rgba(238, 155, 49, .09);
      border-radius: 50%;
      pointer-events: none;
    }

    .verification-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 36px;
    }

    .innovation-label {
      display: inline-flex;
      margin-bottom: 16px;
      padding: 7px 11px;
      border: 1px solid rgba(238, 155, 49, .35);
      border-radius: 999px;
      color: #FFC574;
      background: rgba(238, 155, 49, .1);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .7px;
      text-transform: uppercase;
    }

    .verification-head h2 {
      max-width: 670px;
      margin: 0;
      color: var(--surface);
      font-size: clamp(34px, 4vw, 50px);
      line-height: 1.05;
      letter-spacing: -1.7px;
    }

    .verification-head > p {
      max-width: 390px;
      margin: 0;
      color: #CBCBCB;
      font-size: 16px;
    }

    .verification-modes {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .verification-mode {
      position: relative;
      min-width: 0;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 20px;
      background: rgba(255, 255, 255, .055);
    }

    .verification-mode-ai {
      border-color: rgba(238, 155, 49, .55);
      background: linear-gradient(145deg, rgba(238, 155, 49, .18), rgba(255, 255, 255, .055));
    }

    .verification-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 14px;
      color: #FFC574;
      background: rgba(238, 155, 49, .14);
    }

    .verification-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mode-number {
      position: absolute;
      top: 25px;
      right: 24px;
      color: rgba(255, 255, 255, .3);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .8px;
    }

    .verification-mode h3 {
      margin: 0 0 9px;
      font-size: 20px;
    }

    .verification-mode p {
      margin: 0;
      color: #C9C9C9;
      font-size: 14px;
    }

    .ai-badge {
      position: absolute;
      top: 21px;
      right: 20px;
      padding: 5px 8px;
      border-radius: 999px;
      color: var(--secondary);
      background: var(--primary);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .4px;
      text-transform: uppercase;
    }

    .verification-mode-ai .mode-number { display: none; }

    .steps-wrap {
      background: var(--secondary);
      border-radius: var(--radius-lg);
      padding: 54px;
      color: var(--surface);
    }

    .steps-wrap .section-head h2 { color: var(--surface); }
    .steps-wrap .section-head p { color: #CBCBCB; }

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

    .step {
      padding: 22px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.04);
    }

    .step-num {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 22px;
      border-radius: 10px;
      background: var(--primary);
      font-weight: 900;
    }

    .step h3 { margin: 0 0 8px; }
    .step p { margin: 0; color: #C9C9C9; font-size: 14px; }

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

    .category {
      min-height: 160px;
      padding: 22px;
      border-radius: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: .2s ease;
    }

    .category:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
    }

    .category-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      color: var(--primary-dark);
      background: #FFF1DE;
    }
    .category-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .category b { display: block; color: var(--secondary); margin-top: 22px; }
    .category small { color: var(--muted); }

    .stats {
      padding-top: 10px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .stat {
      padding: 34px 26px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: 0; }
    .stat strong {
      display: block;
      color: var(--primary);
      font-size: 38px;
      letter-spacing: -1.5px;
    }
    .stat span { color: var(--muted); font-size: 14px; }

    .pricing-card {
      display: grid;
      grid-template-columns: 1fr .8fr;
      gap: 36px;
      align-items: center;
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 46px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .pricing-copy h2 {
      margin: 0 0 16px;
      color: var(--secondary);
      font-size: clamp(36px, 4.5vw, 54px);
      letter-spacing: -2px;
      line-height: 1;
    }

    .pricing-copy p { color: var(--muted); font-size: 17px; }
    .check-list {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 12px;
    }
    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-weight: 650;
    }
    .check-list li::before {
      content: "✓";
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      color: var(--surface);
      background: var(--success);
      font-size: 12px;
      flex: 0 0 auto;
    }

    .price-box {
      padding: 30px;
      border-radius: 22px;
      background: var(--background);
      border: 1px solid var(--border);
    }

    .price-box small { color: var(--muted); }
    .price {
      margin: 10px 0 18px;
      font-size: 46px;
      font-weight: 950;
      color: var(--secondary);
      letter-spacing: -2px;
    }
    .price span { font-size: 16px; color: var(--muted); letter-spacing: 0; }

    .legal-hero {
      padding: 64px 0 30px;
    }

    .legal-hero-inner {
      max-width: 880px;
    }

    .legal-kicker {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 7px 11px;
      border-radius: 999px;
      color: #A65B00;
      background: #FFF1DE;
      font-size: 12px;
      font-weight: 850;
      letter-spacing: .6px;
      text-transform: uppercase;
    }

    .legal-hero h1 {
      max-width: 820px;
      font-size: clamp(42px, 6vw, 68px);
    }

    .legal-hero p {
      max-width: 690px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 19px;
    }

    .legal-section {
      padding: 24px 0 72px;
    }

    .legal-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      align-items: start;
      gap: 22px;
    }

    .legal-toc {
      position: sticky;
      top: 98px;
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--surface);
    }

    .legal-toc strong {
      display: block;
      margin-bottom: 14px;
      color: var(--secondary);
      font-size: 15px;
    }

    .legal-toc ol {
      display: grid;
      gap: 8px;
      margin: 0;
      padding-left: 22px;
      color: var(--muted);
      font-size: 13px;
    }

    .legal-toc a:hover { color: var(--primary-dark); }

    .legal-document {
      min-width: 0;
      padding: 48px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--surface);
      box-shadow: 0 14px 40px rgba(40, 40, 40, .055);
    }

    .legal-clause {
      scroll-margin-top: 100px;
    }

    .legal-clause + .legal-clause {
      margin-top: 36px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }

    .legal-clause h2 {
      margin: 0 0 18px;
      color: var(--secondary);
      font-size: clamp(25px, 3vw, 32px);
      line-height: 1.18;
      letter-spacing: -.8px;
    }

    .legal-clause p {
      margin: 0 0 13px;
      color: #4F4F4F;
    }

    .legal-clause p:last-child { margin-bottom: 0; }

    .legal-list {
      display: grid;
      gap: 9px;
      margin: 0;
      padding-left: 22px;
      color: #4F4F4F;
    }

    .legal-list li::marker { color: var(--primary); }

    .legal-terms {
      display: grid;
      gap: 14px;
      margin: 0;
    }

    .legal-terms div {
      padding: 15px 17px;
      border-radius: 13px;
      background: var(--background);
    }

    .legal-terms dt {
      color: var(--secondary);
      font-weight: 850;
    }

    .legal-terms dd {
      margin: 3px 0 0;
      color: var(--muted);
    }

    .faq {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    details {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 0 20px;
    }
    summary {
      cursor: pointer;
      list-style: none;
      padding: 20px 34px 20px 0;
      font-weight: 800;
      color: var(--secondary);
      position: relative;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 16px;
      color: var(--primary);
      font-size: 24px;
    }
    details[open] summary::after { content: "−"; }
    details p { margin: 0 0 20px; color: var(--muted); }

    .cta {
      padding: 24px 0 64px;
    }
    .cta-box {
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: 68px 24px;
      border-radius: 30px;
      background: var(--primary);
      color: var(--surface);
    }
    .cta-box::before,
    .cta-box::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 28px solid rgba(255,255,255,.12);
    }
    .cta-box::before { width: 180px; height: 180px; left: -90px; top: -80px; }
    .cta-box::after { width: 230px; height: 230px; right: -110px; bottom: -130px; }
    .cta-box h2 {
      position: relative;
      margin: 0 auto 16px;
      max-width: 760px;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1;
      letter-spacing: -2px;
    }
    .cta-box p {
      position: relative;
      max-width: 600px;
      margin: 0 auto 28px;
      color: rgba(255,255,255,.88);
      font-size: 18px;
    }
    .cta-box .btn { position: relative; }

    footer {
      background: var(--secondary);
      color: var(--surface);
      padding: 46px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, .7fr);
      gap: 32px;
      padding-bottom: 34px;
    }
    .footer-brand p { max-width: 360px; color: #BEBEBE; }
    .footer-details {
      display: grid;
      gap: 3px;
      margin-top: 18px;
      color: #BEBEBE;
      font-size: 13px;
      font-style: normal;
      line-height: 1.55;
    }
    .footer-company-name {
      color: var(--surface);
      font-weight: 700;
    }
    .footer-logo-text { color: var(--surface); }
    .footer-col h4 { margin: 5px 0 14px; }
    .footer-col a {
      display: block;
      color: #BEBEBE;
      margin: 9px 0;
      font-size: 14px;
    }
    .footer-col a:hover { color: var(--primary); }
    .footer-col a[aria-current="page"] { color: var(--primary); }
    .footer-bottom {
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #9F9F9F;
      font-size: 13px;
    }

    .mobile-toggle {
      display: none;
      border: 0;
      background: var(--surface);
      width: 44px;
      height: 44px;
      border-radius: 12px;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
    }

    @media (max-width: 980px) {
      .nav-links, .nav-actions .btn-secondary { display: none; }
      .mobile-toggle { display: block; }
      .nav-links.is-open {
        position: absolute;
        top: calc(100% - 2px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 0 0 18px 18px;
        background: var(--surface);
        box-shadow: 0 18px 32px rgba(40, 40, 40, .12);
      }
      .nav-links.is-open a {
        padding: 11px 12px;
        border-radius: 9px;
      }
      .nav-links.is-open a:hover { background: #FFF2DF; }
      .hero-grid, .pricing-card { grid-template-columns: minmax(0, 1fr); }
      .dashboard { max-width: 650px; margin: 10px auto 0; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .categories-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2) { border-right: 0; }
      .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
      .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
      .footer-col:last-child { display: none; }
      .legal-layout { grid-template-columns: 1fr; }
      .legal-toc {
        position: static;
      }
      .legal-toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 760px) {
      .verification-head { display: block; }
      .verification-head > p {
        max-width: 620px;
        margin-top: 16px;
      }
      .verification-modes { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 22px), var(--container)); }
      .nav { min-height: 66px; }
      .nav-actions .btn-primary { display: none; }
      .hero { padding-top: 44px; }
      h1 { font-size: 43px; letter-spacing: -2px; }
      .hero-copy { font-size: 17px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; }
      section { padding: 48px 0; }
      .legal-hero { padding: 44px 0 22px; }
      .legal-hero p { font-size: 17px; }
      .legal-section { padding: 18px 0 52px; }
      .legal-toc { display: none; }
      .legal-document {
        padding: 26px 20px;
        border-radius: 20px;
      }
      .legal-clause + .legal-clause {
        margin-top: 28px;
        padding-top: 28px;
      }
      .verification-section { padding: 0 0 48px; }
      .verification-panel {
        padding: 30px 18px 18px;
        border-radius: 22px;
      }
      .verification-head { margin-bottom: 26px; }
      .section-head { display: block; }
      .section-head p { margin-top: 14px; }
      .features-grid, .steps, .categories-grid { grid-template-columns: 1fr; }
      .steps-wrap { padding: 30px 18px; border-radius: 22px; }
      .float-card { right: 6px; bottom: -14px; }
      .pricing-card { padding: 25px; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat { border-right: 0; border-bottom: 1px solid var(--border); }
      .stat:last-child { border-bottom: 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; }
      .cta-box { padding: 52px 20px; }
    }

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