  /* ============== DESIGN TOKENS ============== */
  :root {
    --bg: #0A1628;
    --bg-elev: #0F1F35;
    --bg-card: #152944;
    --bg-card-hover: #1C3658;

    --border: rgba(253, 186, 116, 0.14);
    --border-strong: rgba(253, 186, 116, 0.32);
    --border-subtle: rgba(255, 255, 255, 0.06);

    --text: #ECF3F0;
    --text-muted: #A4B0BD;
    --text-subtle: #65728A;

    --accent: #FDBA74;
    --accent-bright: #FED7AA;
    --accent-deep: #F97316;
    --accent-soft: #FFE4C4;
    --accent-glow: rgba(253, 186, 116, 0.20);

    --success: #4ADE80;
    --error: #F87171;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

    --container: 1240px;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
  }

  /* ============== RESET ============== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv01";
  }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  ul { list-style: none; }
  img, svg { display: block; max-width: 100%; }

  /* ============== ATMOSPHERIC BACKGROUND ============== */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
  }
  .glow {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(120px);
  }
  .glow-1 {
    top: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  }
  .glow-2 {
    bottom: -400px; left: -300px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(253, 186, 116, 0.08), transparent 70%);
  }

  /* ============== LAYOUT HELPERS ============== */
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(253, 186, 116, 0.06);
  }
  .eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2.4s infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* ============== HEADER ============== */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.72);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  header.scrolled {
    border-bottom-color: var(--border);
    background: rgba(10, 22, 40, 0.92);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .logo-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--bg);
    letter-spacing: -0.02em;
    box-shadow: 0 4px 20px rgba(253, 186, 116, 0.25);
  }
  .logo-text { color: var(--text); }
  .logo-text em {
    font-style: italic;
    color: var(--accent-soft);
    font-weight: 400;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
    position: relative;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.25s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    font-size: 14.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 20px rgba(253, 186, 116, 0.2);
  }
  .nav-cta:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 6px 26px rgba(253, 186, 116, 0.35);
  }
  .nav-cta svg { width: 14px; height: 14px; }

  .menu-toggle { display: none; }

  /* ============== HERO ============== */
  .hero {
    padding: 100px 0 80px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 28px 0 28px;
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent-soft);
    font-weight: 300;
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 40px;
  }
  .hero-sub strong {
    color: var(--text);
    font-weight: 600;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    font-size: 15.5px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 28px rgba(253, 186, 116, 0.28);
  }
  .btn-primary:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(253, 186, 116, 0.42);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-strong);
    color: var(--text);
    font-weight: 500;
    font-size: 15.5px;
    transition: all 0.25s ease;
  }
  .btn-secondary:hover {
    background: rgba(253, 186, 116, 0.08);
    border-color: var(--accent);
  }

  /* Trust strip */
  .trust-strip {
    display: flex;
    gap: 32px;
    padding-top: 36px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
  }
  .trust-item svg {
    width: 16px; height: 16px;
    color: var(--accent);
    flex-shrink: 0;
  }

  /* Hero Card (right side) */
  .hero-card {
    position: relative;
    background: linear-gradient(140deg, var(--bg-card) 0%, var(--bg-elev) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  }
  .hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(140deg, var(--accent-glow), transparent 50%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  .card-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .card-label-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-subtle);
    font-weight: 600;
  }
  .card-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--success);
    font-weight: 500;
  }
  .card-status::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
  }
  .stat-display {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
  }
  .stat-display sup {
    font-size: 38px;
    color: var(--accent-soft);
    -webkit-text-fill-color: var(--accent-soft);
  }
  .stat-caption {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 28px;
  }
  .mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
  }
  .mini-stat { padding: 0 12px; }
  .mini-stat:first-child {
    border-right: 1px solid var(--border-subtle);
    padding-left: 0;
  }
  .mini-stat:last-child { padding-right: 0; }
  .mini-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .mini-stat-label {
    font-size: 12.5px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ============== SECTION HEADERS ============== */
  section { padding: 100px 0; position: relative; }
  .section-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
  }
  .section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 22px 0 18px;
  }
  .section-head h2 em {
    font-style: italic;
    color: var(--accent-soft);
    font-weight: 300;
  }
  .section-head p {
    font-size: 17.5px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
  }

  /* ============== SERVICES ============== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
  }
  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .service-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(253, 186, 116, 0.15), rgba(253, 186, 116, 0.04));
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    color: var(--accent);
  }
  .service-icon svg { width: 26px; height: 26px; }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .service-card p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .service-list {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
  }
  .service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted);
  }
  .service-list li svg {
    width: 14px; height: 14px;
    color: var(--accent);
    flex-shrink: 0;
  }

  /* ============== PROCESS / HOW IT WORKS ============== */
  .process { background: linear-gradient(180deg, transparent, rgba(253, 186, 116, 0.025) 50%, transparent); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }
  .process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
  }
  .step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 72px; height: 72px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--accent);
    position: relative;
  }
  .step-num::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--border);
    animation: rotate 30s linear infinite;
  }
  @keyframes rotate { to { transform: rotate(360deg); } }
  .step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .step p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 280px;
    margin: 0 auto;
  }

  /* ============== WHY US (STATS) ============== */
  .why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .why-us-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 22px 0 24px;
  }
  .why-us-content h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
  .why-us-content > p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 520px;
  }
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(253, 186, 116, 0.1);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--accent);
    flex-shrink: 0;
  }
  .feature-icon svg { width: 18px; height: 18px; }
  .feature h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .feature p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
  }
  .stat-cell {
    background: var(--bg-card);
    padding: 36px 28px;
    transition: background 0.25s ease;
  }
  .stat-cell:hover { background: var(--bg-card-hover); }
  .stat-num {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 400;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }
  .stat-num small {
    font-size: 26px;
    color: var(--accent-deep);
  }
  .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* ============== FAQ ============== */
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--border-subtle);
  }
  .faq-question {
    width: 100%;
    text-align: left;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
    letter-spacing: -0.005em;
  }
  .faq-question:hover { color: var(--accent); }
  .faq-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--accent);
  }
  .faq-icon svg { width: 12px; height: 12px; transition: transform 0.3s ease; }
  .faq-item.open .faq-icon { background: var(--accent); color: var(--bg); }
  .faq-item.open .faq-icon svg { transform: rotate(45deg); }
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq-answer-inner {
    padding: 0 0 28px 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
  }

  /* ============== CONTACT SECTION ============== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
  }
  .contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 22px 0 18px;
  }
  .contact-info h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
  .contact-info > p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
  }

  .contact-info-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-subtle);
  }
  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: padding 0.2s ease;
  }
  a.contact-info-item:hover { padding-left: 6px; }
  a.contact-info-item:hover .contact-info-icon {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
  }
  .contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(253, 186, 116, 0.08);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.25s ease;
  }
  .contact-info-icon svg { width: 18px; height: 18px; }
  .contact-info-text label {
    display: block;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-subtle);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .contact-info-text strong {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
  }

  /* Contact form */
  .contact-form-wrap { position: relative; }
  .contact-form {
    position: relative;
    background: linear-gradient(140deg, var(--bg-card) 0%, var(--bg-elev) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    overflow: hidden;
  }
  .contact-form::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    pointer-events: none;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative;
  }
  .form-field {
    margin-bottom: 16px;
    position: relative;
  }
  .form-field label {
    display: block;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .form-field label .req { color: var(--accent); }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s ease;
  }
  .form-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.55;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(10, 22, 40, 0.85);
    box-shadow: 0 0 0 3px rgba(253, 186, 116, 0.1);
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--text-subtle); }
  .form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FDBA74' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
  }
  .form-field select option {
    background: var(--bg-card);
    color: var(--text);
  }

  .form-submit {
    width: 100%;
    padding: 16px 24px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    font-size: 15.5px;
    margin-top: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 28px rgba(253, 186, 116, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form-submit:hover:not(:disabled) {
    background: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(253, 186, 116, 0.42);
  }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .form-submit svg { width: 16px; height: 16px; }

  .form-note {
    font-size: 12.5px;
    color: var(--text-subtle);
    text-align: center;
    margin-top: 14px;
  }

  .form-message {
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14.5px;
    line-height: 1.5;
    display: none;
    position: relative;
  }
  .form-message.show { display: block; }
  .form-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: var(--error);
  }
  .form-success-state {
    text-align: center;
    padding: 60px 32px;
    display: none;
  }
  .form-success-state.show { display: block; }
  .form-success-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.4);
    display: grid;
    place-items: center;
    color: var(--success);
  }
  .form-success-icon svg { width: 28px; height: 28px; }
  .form-success-state h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
  .form-success-state p {
    color: var(--text-muted);
    font-size: 15.5px;
    max-width: 360px;
    margin: 0 auto;
  }

  /* ============== FOOTER ============== */
  footer {
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 36px;
    margin-top: 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .footer-about p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 20px 0 24px;
    max-width: 360px;
    line-height: 1.6;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
  }
  .footer-contact a { color: var(--text); transition: color 0.2s; }
  .footer-contact a:hover { color: var(--accent); }
  .footer-col h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
  .footer-col li a {
    font-size: 14.5px;
    color: var(--text-muted);
    transition: color 0.2s;
  }
  .footer-col li a:hover { color: var(--text); }

  .footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--text-subtle);
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom-links {
    display: flex;
    gap: 28px;
  }
  .footer-bottom-links a:hover { color: var(--text-muted); }

  /* ============== SCROLL REVEAL ============== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* ============== RESPONSIVE ============== */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  }
  @media (max-width: 720px) {
    section { padding: 72px 0; }
    .hero { padding: 60px 0 40px; }
    .nav-links { display: none; }
    .menu-toggle {
      display: grid;
      place-items: center;
      width: 40px; height: 40px;
      border-radius: 10px;
      border: 1px solid var(--border);
      color: var(--text);
    }
    .menu-toggle svg { width: 18px; height: 18px; }
    .nav-cta span { display: none; }
    .nav-cta { padding: 11px 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 36px; }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .stat-display { font-size: 64px; }
    .hero-card { padding: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-cell { padding: 28px 24px; }
    .container { padding: 0 20px; }
    .trust-strip { gap: 16px 24px; }
    .contact-form { padding: 28px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
  }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 200;
    padding: 100px 28px 40px;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu .close-btn {
    position: absolute;
    top: 22px; right: 22px;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--text);
    display: grid; place-items: center;
  }
  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    letter-spacing: -0.01em;
  }
