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

  :root {
    --teal: #0CBFA0;
    --teal-dark: #0a9f86;
    --teal-mid: #b3eddf;
    --teal-bg: #EBF9F6;
    --navy: #0D1117;
    --navy-2: #141B25;
    --text: #0D1117;
    --text-muted: #6B7585;
    --text-light: #9BA6B4;
    --bg: #FFFFFF;
    --bg-soft: #F6F8FA;
    --border: #E4E9EF;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.15; letter-spacing: -0.025em; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex; align-items: center;
    padding: 0 6%;
    justify-content: space-between;
  }

  .nav-logo { display: flex; align-items: center; gap: 7px; text-decoration: none; flex-shrink: 0; }
  .nav-wordmark { font-size: 19px; font-weight: 700; color: var(--text); letter-spacing: -0.04em; }
  .nav-wordmark .v-teal { color: var(--teal); }

  .nav-back { font-size: 13px; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.18s; }
  .nav-back:hover { color: var(--text); }

  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 400; color: var(--text-muted); transition: color 0.18s; }
  .nav-links a:hover { color: var(--text); }

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

  .btn-ghost { padding: 8px 14px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-muted); background: transparent; border: none; border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: color 0.18s; }
  .btn-ghost:hover { color: var(--text); }

  .btn-nav { padding: 8px 18px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #fff; background: var(--navy); border: none; border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: background 0.18s; }
  .btn-nav:hover { background: #1c2636; }

  /* HERO */
  .hero { padding: 72px 6% 0; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1200px; margin: 0 auto; }

  .hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: var(--teal-bg); border: 1px solid var(--teal-mid); color: var(--teal-dark); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; padding: 5px 12px; border-radius: 100px; margin-bottom: 22px; }
  .eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

  .hero h1 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; color: var(--text); margin-bottom: 18px; }
  .hero h1 em { font-style: normal; color: var(--teal); }

  .hero-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 450px; }

  .hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 24px; }

  .btn-hero-dark { padding: 12px 24px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #fff; background: var(--navy); border: none; border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: background 0.18s, transform 0.15s; }
  .btn-hero-dark:hover { background: #1c2636; transform: translateY(-1px); }

  .btn-hero-outline { padding: 12px 24px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--text-muted); background: transparent; border: 1px solid var(--border); border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: border-color 0.18s, color 0.18s; }
  .btn-hero-outline:hover { border-color: #ccd3db; color: var(--text); }

  .hero-note { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }

  /* DASHBOARD PREVIEW */
  .dashboard-preview { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 20px 56px rgba(13,17,23,0.10), 0 4px 12px rgba(13,17,23,0.05); }

  .preview-topbar { background: var(--navy); padding: 11px 16px; display: flex; align-items: center; gap: 7px; }
  .dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
  .dot-y { width: 10px; height: 10px; border-radius: 50%; background: #ffbd2e; }
  .dot-g { width: 10px; height: 10px; border-radius: 50%; background: #28c840; }
  .topbar-url { margin-left: 12px; flex: 1; background: rgba(255,255,255,0.07); border-radius: 5px; padding: 3px 10px; font-size: 11px; color: rgba(255,255,255,0.35); }

  .preview-body { padding: 16px; background: var(--bg-soft); }
  .preview-section-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 10px; }

  .preview-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
  .preview-stat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px 12px; }
  .ps-label { font-size: 10px; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
  .ps-value { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
  .ps-value.paid { color: var(--teal-dark); }
  .ps-value.overdue { color: #D95025; }

  .preview-table { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
  .pt-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-bottom: 1px solid var(--border); gap: 8px; }
  .pt-row:last-child { border-bottom: none; }
  .pt-name { font-size: 12px; font-weight: 500; color: var(--text); }
  .pt-date { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
  .pt-amount { font-size: 12px; font-weight: 600; color: var(--text); flex-shrink: 0; }

  .status-pill { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 100px; flex-shrink: 0; }
  .sp-paid { background: #E0F7F3; color: #0a6b5a; }
  .sp-overdue { background: #FDEEE8; color: #a03a1e; }
  .sp-pending { background: #FFF4E0; color: #8a5a10; }

  /* TRUST STRIP */
  .trust-strip { margin-top: 72px; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 6%; }
  .trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-muted); }
  .trust-check { width: 18px; height: 18px; border-radius: 50%; background: var(--teal-bg); border: 1.5px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  /* SECTION */
  .section { padding: 80px 6%; max-width: 1200px; margin: 0 auto; }

  .section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-dark); margin-bottom: 12px; }
  .section-label::before { content: ''; width: 14px; height: 2px; background: var(--teal); border-radius: 2px; }

  .section-heading { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--text); margin-bottom: 14px; }
  .section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 540px; margin-bottom: 44px; }

  /* PROBLEM */
  .problem-wrap { background: var(--navy); padding: 80px 6%; }
  .problem-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .problem-wrap .section-label { color: #6ee5cf; }
  .problem-wrap .section-label::before { background: var(--teal); }
  .problem-wrap .section-heading { color: #fff; }
  .problem-wrap .section-sub { color: rgba(255,255,255,0.45); margin-bottom: 0; }

  .problem-callout { margin-top: 28px; padding: 18px 20px; background: rgba(12,191,160,0.1); border: 1px solid rgba(12,191,160,0.25); border-radius: var(--r-md); }
  .problem-callout-text { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.45; }
  .problem-callout-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; }

  .problem-list { list-style: none; }
  .problem-item { display: flex; align-items: flex-start; gap: 13px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .problem-item:last-child { border-bottom: none; }
  .problem-item-icon { width: 28px; height: 28px; border-radius: var(--r-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
  .problem-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }
  .problem-text strong { color: #fff; font-weight: 500; }

  /* FEATURES */
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 24px; transition: border-color 0.2s, box-shadow 0.2s; }
  .feature-card:hover { border-color: var(--teal-mid); box-shadow: 0 6px 20px rgba(12,191,160,0.07); }
  .feature-num { font-size: 36px; font-weight: 800; color: var(--teal-mid); line-height: 1; margin-bottom: 14px; letter-spacing: -0.03em; }
  .feature-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 9px; }
  .feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
  .feature-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 600; color: var(--teal-dark); background: var(--teal-bg); padding: 3px 10px; border-radius: 100px; letter-spacing: 0.02em; }

  /* WORKFLOW */
  .workflow-wrap { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 6%; }
  .workflow-inner { max-width: 1200px; margin: 0 auto; }
  .workflow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .workflow-steps::after { content: ''; position: absolute; top: 29px; left: 12.5%; right: 12.5%; height: 0; border-top: 2px dashed var(--teal-mid); z-index: 0; }
  .wf-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 14px; position: relative; z-index: 1; }
  .wf-circle { width: 58px; height: 58px; border-radius: 50%; background: var(--bg); border: 2px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; z-index: 1; transition: border-color 0.2s, background 0.2s; }
  .wf-step:hover .wf-circle { border-color: var(--teal); background: var(--teal-bg); }
  .wf-num { font-size: 17px; font-weight: 800; color: var(--teal); }
  .wf-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
  .wf-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

  /* WHY */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 20px; display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.2s; }
  .why-card:hover { border-color: var(--teal-mid); }
  .why-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--teal-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .why-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
  .why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

  /* INTEGRATIONS */
  .integrations-wrap { background: var(--navy); padding: 80px 6%; }
  .integrations-inner { max-width: 1200px; margin: 0 auto; }
  .integrations-wrap .section-label { color: #6ee5cf; }
  .integrations-wrap .section-label::before { background: var(--teal); }
  .integrations-wrap .section-heading { color: #fff; }
  .integrations-wrap .section-sub { color: rgba(255,255,255,0.45); }

  .integrations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .integration-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-lg); padding: 20px 18px; transition: border-color 0.2s, background 0.2s; }
  .integration-card:hover { border-color: rgba(12,191,160,0.3); background: rgba(255,255,255,0.07); }
  .integration-logo { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 11px; font-weight: 800; flex-shrink: 0; }
  .integration-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 5px; }
  .integration-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }
  .integration-cta { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; border: 1px solid; }
  .cta-active { background: rgba(12,191,160,0.15); border-color: rgba(12,191,160,0.35); color: var(--teal); }
  .cta-contact { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }

  .integration-note { margin-top: 36px; padding: 18px 22px; background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.12); border-radius: var(--r-md); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .integration-note-text { font-size: 14px; color: rgba(255,255,255,0.55); }
  .integration-note-text strong { color: #fff; font-weight: 600; }
  .btn-teal-outline { padding: 8px 18px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--teal); background: rgba(12,191,160,0.1); border: 1px solid rgba(12,191,160,0.3); border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: background 0.18s; white-space: nowrap; }
  .btn-teal-outline:hover { background: rgba(12,191,160,0.18); }

  /* PRICING */
  .pricing-wrap { padding: 80px 6%; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .pricing-inner { max-width: 1200px; margin: 0 auto; }
  .pricing-headline { font-size: clamp(28px, 3vw, 38px); font-weight: 800; color: var(--text); margin-bottom: 6px; }
  .pricing-headline span { color: var(--teal); }
  .pricing-tagline { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

  .pricing-free { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
  .free-badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: var(--teal-bg); color: var(--teal-dark); padding: 3px 10px; border-radius: 100px; margin-bottom: 6px; }
  .free-title { font-size: 15px; font-weight: 700; color: var(--text); }
  .free-sub { font-size: 13px; color: var(--text-muted); }
  .free-features { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .free-feature { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
  .free-feature::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6.5' fill='%23EBF9F6' stroke='%23b3eddf'/%3E%3Cpath d='M4 7l2.5 2.5L10 5' stroke='%230CBFA0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; flex-shrink: 0; }

  .pricing-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: end; margin-bottom: 14px; }
  .pc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 18px; position: relative; transition: border-color 0.2s; }
  .pc:hover { border-color: var(--teal-mid); }
  .pc.featured { background: var(--navy); border-color: var(--navy); padding: 30px 18px; }
  .pc-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 3px 12px; border-radius: 100px; white-space: nowrap; }
  .pc-credits { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 8px; }
  .pc.featured .pc-credits { color: var(--teal); }
  .pc-price { font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -0.025em; margin-bottom: 2px; }
  .pc.featured .pc-price { color: #fff; }
  .pc-per { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
  .pc.featured .pc-per { color: rgba(255,255,255,0.45); }
  .pc-save { font-size: 11px; font-weight: 600; color: var(--teal-dark); background: var(--teal-bg); padding: 2px 9px; border-radius: 100px; margin-bottom: 16px; display: inline-block; }
  .pc.featured .pc-save { background: rgba(12,191,160,0.15); color: var(--teal); }
  .pc-btn { display: block; text-align: center; padding: 9px 14px; border-radius: var(--r-sm); font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif; text-decoration: none; cursor: pointer; transition: background 0.18s; border: 1px solid var(--border); color: var(--text-muted); background: transparent; }
  .pc-btn:hover { background: var(--bg-soft); }
  .pc.featured .pc-btn { background: var(--teal); color: #fff; border-color: var(--teal); }
  .pc.featured .pc-btn:hover { background: var(--teal-dark); }

  .pricing-enterprise { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .ent-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
  .ent-sub { font-size: 13px; color: var(--text-muted); }
  .ent-perks { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .ent-perk { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
  .ent-perk::before { content: '✓'; color: var(--teal); font-size: 12px; font-weight: 700; }
  .btn-navy { padding: 9px 18px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: #fff; background: var(--navy); border: none; border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: background 0.18s; white-space: nowrap; }
  .btn-navy:hover { background: #1c2636; }

  .pricing-footnotes { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
  .pricing-footnote { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
  .pricing-footnote::before { content: '·'; font-size: 18px; color: var(--teal); line-height: 1; }

  /* COMPLIANCE */
  .compliance-wrap { padding: 80px 6%; border-top: 1px solid var(--border); }
  .compliance-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .compliance-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .comp-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--text-muted); background: var(--bg-soft); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; }
  .comp-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .comp-note { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 14px; }

  .comp-visual { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 22px; }
  .comp-visual-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 18px; }
  .timeline { display: flex; flex-direction: column; }
  .tl-item { display: flex; align-items: flex-start; gap: 13px; position: relative; }
  .tl-item:not(:last-child)::before { content: ''; position: absolute; left: 14px; top: 29px; width: 1px; height: calc(100% + 2px); background: var(--border); }
  .tl-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
  .tl-dot.live { border-color: var(--teal); background: var(--teal-bg); }
  .tl-body { padding-bottom: 18px; padding-top: 3px; }
  .tl-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
  .tl-text { font-size: 12px; color: var(--text-muted); line-height: 1.55; }

  /* FAQ */
  .faq-wrap { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 6%; }
  .faq-inner { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-question { width: 100%; text-align: left; background: transparent; border: none; padding: 18px 0; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color 0.18s; }
  .faq-question:hover { color: var(--teal-dark); }
  .faq-icon { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.18s, background 0.18s, transform 0.25s; }
  .faq-item.open .faq-icon { border-color: var(--teal); background: var(--teal-bg); transform: rotate(45deg); }
  .faq-answer { font-size: 14px; color: var(--text-muted); line-height: 1.7; padding-bottom: 18px; display: none; }
  .faq-item.open .faq-answer { display: block; }

  /* CTA */
  .cta-wrap { background: var(--navy); padding: 80px 6%; text-align: center; position: relative; overflow: hidden; }
  .cta-glow { position: absolute; width: 600px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(12,191,160,0.1) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
  .cta-wrap h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; }
  .cta-wrap h2 span { color: var(--teal); }
  .cta-sub { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 32px; position: relative; }
  .cta-buttons { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; }
  .btn-cta-teal { padding: 13px 26px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #fff; background: var(--teal); border: none; border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: background 0.18s, transform 0.15s; }
  .btn-cta-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
  .btn-cta-ghost { padding: 13px 26px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: background 0.18s; }
  .btn-cta-ghost:hover { background: rgba(255,255,255,0.1); }

  /* FOOTER */
  footer { background: var(--navy-2); padding: 40px 6% 24px; border-top: 1px solid rgba(255,255,255,0.06); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
  .footer-brand-sub { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 8px; max-width: 280px; line-height: 1.55; }
  .footer-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.18s; }
  .footer-links a:hover { color: rgba(255,255,255,0.8); }
  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 20px; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
  .footer-legal { display: flex; gap: 18px; }
  .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.18s; }
  .footer-legal a:hover { color: rgba(255,255,255,0.65); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .d1 { transition-delay: 0.08s; }
  .d2 { transition-delay: 0.16s; }
  .d3 { transition-delay: 0.24s; }

  @media (max-width: 920px) {
    .hero { grid-template-columns: 1fr; }
    .problem-inner { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .workflow-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
    .workflow-steps::after { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .integrations-grid { grid-template-columns: 1fr 1fr; }
    .pricing-cards { grid-template-columns: 1fr 1fr; }
    .compliance-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .workflow-steps { grid-template-columns: 1fr; gap: 40px; }
    .pricing-cards { grid-template-columns: 1fr; }
    .integrations-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons a { width: 100%; max-width: 320px; text-align: center; }
  }

/* DOCUMENT PAGES STYLES */
  .doc-hero { background: var(--navy); padding: 52px 5% 44px; }
  .doc-hero-inner { max-width: 1100px; margin: 0 auto; }
  .doc-type { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); background: rgba(12,191,160,0.12); border: 1px solid rgba(12,191,160,0.25); padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; }
  .doc-hero h1 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.025em; }
  .doc-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .doc-meta-item { font-size: 13px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 6px; }
  .doc-meta-item strong { color: rgba(255,255,255,0.75); font-weight: 500; }
  .doc-layout { max-width: 1100px; margin: 0 auto; padding: 48px 5% 80px; display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
  .toc { position: sticky; top: 80px; }
  .toc-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 14px; }
  .toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
  .toc-list a { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; padding: 5px 10px 5px 12px; border-left: 2px solid var(--border); border-radius: 0 var(--r-sm) var(--r-sm) 0; transition: color 0.18s, border-color 0.18s, background 0.18s; line-height: 1.4; }
  .toc-list a:hover { color: var(--text); border-color: var(--teal-mid); background: var(--teal-bg); }
  .toc-list a.active { color: var(--teal-dark); border-color: var(--teal); background: var(--teal-bg); font-weight: 500; }
  .doc-content { min-width: 0; }
  .doc-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); scroll-margin-top: 84px; }
  .doc-section:last-child { border-bottom: none; margin-bottom: 0; }
  .doc-section h2 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
  .section-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--teal-bg); border: 1.5px solid var(--teal-mid); font-size: 11px; font-weight: 700; color: var(--teal-dark); flex-shrink: 0; }
  .doc-section p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
  .doc-section p:last-child { margin-bottom: 0; }
  .doc-section ul { padding-left: 0; margin-bottom: 14px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .doc-section li { font-size: 14px; color: var(--text-muted); line-height: 1.65; display: flex; align-items: flex-start; gap: 10px; }
  .doc-section li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 9px; }
  .doc-callout { background: var(--bg-soft); border: 1px solid var(--border); border-left: 3px solid var(--teal); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 14px 16px; margin: 16px 0; font-size: 14px; color: var(--text-muted); line-height: 1.65; }
  .doc-callout strong { color: var(--text); }
  .rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
  .right-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 16px; }
  .right-card-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
  .right-icon { width: 24px; height: 24px; border-radius: var(--r-sm); background: var(--teal-bg); border: 1px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .right-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
  .sub-heading { font-size: 15px; font-weight: 700; color: var(--text); margin: 20px 0 10px; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
  .doc-contact { background: var(--teal-bg); border: 1px solid var(--teal-mid); border-radius: var(--r-md); padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; }
  .doc-contact-icon { width: 34px; height: 34px; background: var(--teal); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .doc-contact-title { font-size: 13px; font-weight: 700; color: var(--teal-dark); margin-bottom: 3px; }
  .doc-contact a { font-size: 13px; color: var(--teal-dark); font-weight: 600; text-decoration: none; }
  .doc-contact a:hover { text-decoration: underline; }
  .authority-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 18px; margin-top: 14px; }
  .authority-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
  .authority-detail { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
  .authority-detail strong { color: var(--text); font-weight: 500; }
  @media (max-width: 840px) {
    .doc-layout { grid-template-columns: 1fr; gap: 32px; }
    .toc { position: static; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; }
    .rights-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
  }