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

  :root {
    --ink: #0d1117;
    --slate: #1e2a38;
    --steel: #2e4a6a;
    --ocean: #1a6fa8;
    --sky: #4ea8de;
    --pale: #e8f4fd;
    --mist: #f5f9fc;
    --white: #ffffff;
    --gold: #c8933a;
    --gold-light: #e8b55a;
    --border: rgba(30,42,56,0.12);
    --shadow: 0 4px 32px rgba(13,17,23,0.10);
    --shadow-lg: 0 16px 64px rgba(13,17,23,0.16);
    --r: 6px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    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 5vw;
    height: 68px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    animation: slideDown 0.6s ease both;
  }
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--slate); text-decoration: none; letter-spacing: -0.02em;
  }
  .nav-brand span { color: var(--ocean); }
  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--slate);
    text-decoration: none; opacity: 0.75; transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }

  /* ─── HERO ────────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 5vw 80px;
    gap: 4rem;
    background: linear-gradient(135deg, var(--mist) 0%, var(--white) 50%, var(--pale) 100%);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -10%; right: -5%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,168,222,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--pale); border: 1px solid rgba(78,168,222,0.3);
    border-radius: 99px; padding: 0.35rem 0.9rem;
    font-size: 0.78rem; font-weight: 600; color: var(--ocean);
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero-badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--sky); animation: pulse 2s infinite;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 900; line-height: 1.12;
    letter-spacing: -0.03em; color: var(--ink);
    margin-bottom: 1.25rem;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero h1 em {
    font-style: italic; color: var(--ocean);
  }
  .hero-sub {
    font-size: 1.1rem; color: var(--slate); opacity: 0.8;
    max-width: 500px; line-height: 1.7; margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .btn-primary {
    background: var(--ocean); color: #fff;
    padding: 0.9rem 2rem; border-radius: var(--r);
    font-size: 0.95rem; font-weight: 600; text-decoration: none;
    transition: all 0.2s; box-shadow: 0 4px 16px rgba(26,111,168,0.3);
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: var(--slate); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,111,168,0.4); }
  .btn-ghost {
    color: var(--slate); font-size: 0.9rem; font-weight: 500;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
    opacity: 0.7; transition: opacity 0.2s;
  }
  .btn-ghost:hover { opacity: 1; }
  .hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem;
    animation: fadeUp 0.7s 0.5s ease both;
  }
  .hero-stat { }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
  }
  .hero-stat-label {
    font-size: 0.78rem; color: var(--slate); opacity: 0.65; margin-top: 0.1rem;
    font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase;
  }
  .stat-divider { width: 1px; background: var(--border); }

  /* Hero Visual */
  .hero-visual {
    position: relative;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .doc-card {
    background: var(--white); border-radius: 12px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    padding: 2rem; position: relative; overflow: hidden;
  }
  .doc-card-header {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
  }
  .doc-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--pale); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .doc-card-title { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
  .doc-card-sub { font-size: 0.78rem; color: var(--slate); opacity: 0.6; }
  .doc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem;
  }
  .doc-row:last-of-type { border-bottom: none; }
  .doc-row-label { color: var(--slate); opacity: 0.7; }
  .doc-row-val { font-weight: 600; color: var(--ink); }
  .doc-stamp {
    position: absolute; right: 1.5rem; bottom: 1.5rem;
    background: rgba(26,111,168,0.07); border: 2px solid var(--ocean);
    border-radius: 8px; padding: 0.4rem 0.9rem;
    font-size: 0.72rem; font-weight: 700; color: var(--ocean);
    letter-spacing: 0.06em; text-transform: uppercase;
    transform: rotate(-3deg);
  }
  .floating-badge {
    position: absolute;
    background: var(--white); border-radius: 10px; box-shadow: var(--shadow);
    border: 1px solid var(--border); padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.82rem; font-weight: 600; color: var(--ink);
    animation: float 4s ease-in-out infinite;
  }
  .floating-badge.badge-1 { top: -1.5rem; right: -1.5rem; animation-delay: 0s; }
  .floating-badge.badge-2 { bottom: 2rem; left: -2rem; animation-delay: 1.5s; }
  .badge-icon { font-size: 1.1rem; }
  .badge-sub { font-size: 0.72rem; color: var(--slate); opacity: 0.6; font-weight: 400; }

  /* ─── PROCESS ─────────────────────────────────────────────── */
  .section { padding: 100px 5vw; }
  .section-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ocean); margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
    color: var(--ink); letter-spacing: -0.02em; line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-sub {
    font-size: 1rem; color: var(--slate); opacity: 0.75; max-width: 560px;
    font-weight: 300; line-height: 1.7;
  }
  .section-header { margin-bottom: 4rem; }

  .process-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .process-step {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 2rem 1.75rem;
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .process-step::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ocean), var(--sky));
    opacity: 0; transition: opacity 0.3s;
  }
  .process-step:hover::before { opacity: 1; }
  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 900; color: var(--border);
    line-height: 1; margin-bottom: 1.25rem; letter-spacing: -0.04em;
  }
  .step-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .step-title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
  .step-desc { font-size: 0.875rem; color: var(--slate); opacity: 0.75; line-height: 1.65; }

  /* ─── BENEFITS ───────────────────────────────────────────── */
  .benefits { background: var(--slate); color: var(--white); padding: 100px 5vw; }
  .benefits .section-label { color: var(--sky); }
  .benefits .section-title { color: var(--white); }
  .benefits .section-sub { color: rgba(255,255,255,0.65); }

  .benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 4rem;
  }
  .benefit-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 2rem;
    transition: background 0.3s;
  }
  .benefit-card:hover { background: rgba(255,255,255,0.1); }
  .benefit-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(78,168,222,0.2); border: 1px solid rgba(78,168,222,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.25rem;
  }
  .benefit-title { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
  .benefit-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

  /* ─── CHECKLIST / READINESS ──────────────────────────────── */
  .speede { background: var(--mist); padding: 100px 5vw; }
  .speede-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  }
  .checklist { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .check-item {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 10px; padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s;
  }
  .check-item:hover { box-shadow: var(--shadow); }
  .check-box {
    width: 24px; height: 24px; min-width: 24px;
    border-radius: 6px; border: 2px solid var(--ocean);
    background: var(--pale); display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--ocean); margin-top: 2px;
  }
  .check-text { font-size: 0.9rem; color: var(--ink); font-weight: 500; line-height: 1.5; }
  .check-sub { font-size: 0.8rem; color: var(--slate); opacity: 0.65; margin-top: 0.2rem; }

  .speede-aside {
    position: sticky; top: 100px;
  }
  .aside-card {
    background: var(--white); border-radius: 16px;
    border: 1px solid var(--border); box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .aside-card-top {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--steel) 100%);
    padding: 2.5rem 2rem; color: white;
  }
  .aside-card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem;
  }
  .aside-card-top p { font-size: 0.875rem; opacity: 0.8; }
  .aside-card-body { padding: 2rem; }

  /* ─── STANDARDS ──────────────────────────────────────────── */
  .standards { padding: 80px 5vw; }
  .standards-inner { max-width: 900px; }
  .standards-chips {
    display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem;
  }
  .chip {
    background: var(--pale); border: 1px solid rgba(78,168,222,0.25);
    border-radius: 99px; padding: 0.5rem 1.2rem;
    font-size: 0.85rem; font-weight: 600; color: var(--ocean);
    transition: background 0.2s;
  }
  .chip:hover { background: var(--pale); border-color: var(--ocean); }
  .chip.neutral {
    background: var(--mist); border-color: var(--border); color: var(--slate);
  }
  .standards-note { margin-top: 2rem; font-size: 0.875rem; color: var(--slate); opacity: 0.65; max-width: 520px; line-height: 1.7; }

  /* ─── CONTACT ────────────────────────────────────────────── */
  .contact-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-header {
  background: linear-gradient(135deg, var(--ocean), var(--steel));
  color: white;
  padding: 1rem;
  text-align: center;
}
.contact-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.contact-header p {
  font-size: 0.85rem;
  opacity: 0.8;
}
.contact-form {
  padding: 2rem;
}
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--slate); margin-bottom: 0.4rem; }
  .form-group input, .form-group select {
    width: 100%; padding: 0.7rem 1rem;
    border: 1px solid var(--border); border-radius: var(--r);
    font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--ink);
    background: var(--mist); transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
  }
  .form-group input:focus, .form-group select:focus {
    border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(26,111,168,0.12);
    background: var(--white);
  }
  .form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--ink);
    background: var(--mist);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
  }
  .form-group textarea:focus {
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(26,111,168,0.12);
    background: var(--white);
  }
  .form-submit {
    width: 100%; padding: 0.9rem; background: var(--ocean); color: white;
    border: none; border-radius: var(--r); font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--slate); transform: translateY(-1px); }
  .form-note { font-size: 0.75rem; color: var(--slate); opacity: 0.55; text-align: center; margin-top: 0.75rem; }

  .captcha-group {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }

  /* ─── FAQ ────────────────────────────────────────────────── */
  .faq { background: var(--ink); padding: 100px 5vw; }
  .faq .section-label { color: var(--sky); }
  .faq .section-title { color: var(--white); }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden; margin-top: 3.5rem;
  }
  .faq-item {
    background: #111827; padding: 2rem;
    transition: background 0.2s;
  }
  .faq-item:hover { background: #1a2535; }
  .faq-q {
    font-size: 0.95rem; font-weight: 600; color: var(--white);
    margin-bottom: 0.75rem; display: flex; gap: 0.75rem; align-items: flex-start;
  }
  .faq-q::before {
    content: 'Q';
    min-width: 24px; height: 24px;
    background: rgba(78,168,222,0.2); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; color: var(--sky);
  }
  .faq-a { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; padding-left: 2rem; }

  /* ─── FOOTER CTA ─────────────────────────────────────────── */
  .footer-cta {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--steel) 100%);
    padding: 25px 5vw; text-align: center; color: white;
  }
  .footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700;
    margin-bottom: 1rem; letter-spacing: -0.02em;
  }
  .footer-cta p { font-size: 1rem; opacity: 0.8; margin-bottom: 2.5rem; }
  .footer-cta .btn-white {
    background: white; color: var(--ocean); padding: 0.9rem 2.25rem;
    border-radius: var(--r); font-size: 0.95rem; font-weight: 700;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .footer-cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

  footer {
    background: var(--ink); padding: 2rem 5vw;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand {
    font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
    color: rgba(255,255,255,0.6); text-decoration: none;
  }
  .footer-brand span { color: var(--sky); }
  .footer-note { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

  /* ─── ANIMATIONS ─────────────────────────────────────────── */
  @keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes fadeUp {
    from { transform: translateY(24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }

  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─────────────────────────────────────────── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .speede-inner { grid-template-columns: 1fr; }
    .speede-aside { position: static; }
    .faq-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor; /* inherits your nav text color */
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav {
    flex-wrap: nowrap; /* keep logo and hamburger on one line */
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;        /* sits just below the nav bar */
    right: 0;         /* aligns to the right, under the hamburger */
    width: 150px;     /* adjust to taste */
    padding: 12px 0;
    background: #fff; /* match your nav background */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
  }

  .nav-links li a {
  padding-left: 16px; /* adjust to taste */
  }

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

}
</style>
