
  :root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --blue: #1a56db;
    --blue-light: #3b82f6;
    --teal: #0ea5e9;
    --accent: #f59e0b;
    --accent-green: #10b981;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
    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 5%;
    height: 72px;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: slideDown 0.6s ease both;
  }

  @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
  }

  .nav-logo-mark {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800; color: white;
  }

  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
  }

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

  .nav-cta {
    display: flex; gap: 12px; align-items: center;
  }

  .btn-ghost {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
    font-family: var(--font-body);
    cursor: pointer;
    background: transparent;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }

  .btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: opacity 0.2s, transform 0.2s;
    display: inline-flex; align-items: center; gap: 6px;
  }

  .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── ANNOUNCEMENT BAR ── */
  .announce-bar {
    background: linear-gradient(90deg, var(--blue), var(--teal));
    text-align: center;
    padding: 10px;
    font-size: 0.82rem;
    color: white;
    font-weight: 500;
    position: relative;
    z-index: 99;
    margin-top: 72px;
  }

  .announce-bar span { background: rgba(255,255,255,0.2); padding: 2px 10px; border-radius: 20px; margin-right: 8px; font-weight: 700; font-size: 0.78rem; }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 5% 60px;
  }

  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(26,86,219,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,86,219,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  }

  .hero-glow-1 {
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,86,219,0.25) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-glow-2 {
    position: absolute; bottom: -200px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,86,219,0.15);
    border: 1px solid rgba(26,86,219,0.35);
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fadeUp 0.8s 0.2s both;
  }

  .hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.35s both;
  }

  .hero-title .highlight {
    background: linear-gradient(135deg, var(--blue-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300;
    animation: fadeUp 0.8s 0.5s both;
  }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    animation: fadeUp 0.8s 0.65s both;
  }

  .btn-hero {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: white;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(26,86,219,0.4);
  }

  .btn-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,86,219,0.5); }

  .btn-hero-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s;
  }

  .btn-hero-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

  .hero-trust {
    margin-top: 44px;
    animation: fadeUp 0.8s 0.8s both;
  }

  .hero-trust p { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }

  .trust-logos {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  }

  .trust-logo-item {
    color: rgba(255,255,255,0.3);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: all 0.2s;
  }

  .trust-logo-item:hover { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }

  /* ── HERO VISUAL ── */
  .hero-visual {
    animation: fadeUp 0.8s 0.5s both;
    position: relative;
  }

  .hero-card-stack {
    position: relative;
    height: 460px;
    overflow: visible;
    max-width: 100%;
  }

  .h-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
  }

  .h-card-main {
    width: 100%; top: 0; left: 0;
    background: rgba(17, 34, 64, 0.9);
    border-color: rgba(26,86,219,0.3);
    z-index: 3;
  }

  .h-card-stat {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
  }

  .h-card-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }

  .h-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
  .h-card-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; }
  .h-card-value-sm { font-size: 1.1rem; }

  .h-card-row {
    display: flex; gap: 12px;
  }

  .h-card-metric {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
  }

  .h-metric-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
  }

  .h-metric-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
  }

  .h-card-float-1 {
    width: 190px;
    bottom: -22px; left: 0px;
    background: rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.3);
    z-index: 4;
    padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
  }

  .h-card-float-2 {
    width: 210px;
    bottom: -22px; right: 0px;
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.3);
    z-index: 4;
    padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
    animation: float 5s ease-in-out infinite 1s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  .h-float-icon { font-size: 1.4rem; }
  .h-float-text-top { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
  .h-float-text-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: white; }

  .refund-up { color: var(--accent-green); }

  @keyframes fadeUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 40px 5%;
  }

  .stats-bar-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--gray-200);
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
  }

  .stat-num .accent { color: var(--blue); }

  .stat-label {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 400;
  }

  /* ── SECTION SHARED ── */
  section { padding: 90px 5%; }

  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 14px;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: var(--blue);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 560px;
    font-weight: 300;
  }

  /* ── SERVICES ── */
  .services { background: var(--white); }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 52px; flex-wrap: wrap; gap: 20px;
  }

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

  .service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .service-card:hover { border-color: transparent; box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.2s;
  }

  .service-link:hover { gap: 10px; }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .how::before {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(26,86,219,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,86,219,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  }

  .how .section-title { color: white; }

  .how .section-tag { color: var(--teal); }
  .how .section-tag::before { background: var(--teal); }

  .how .section-sub { color: rgba(255,255,255,0.5); }

  .how-header { text-align: center; margin-bottom: 60px; }
  .how-header .section-sub { margin: 0 auto; }

  .steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    position: relative; z-index: 2;
  }

  .step-connector {
    position: absolute; top: 36px; left: calc(33.33% - 10px); right: calc(33.33% - 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
    z-index: 1;
    opacity: 0.3;
  }

  .steps-wrap { position: relative; }

  .step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
  }

  .step-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(26,86,219,0.4); }

  .step-num {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
  }

  .step-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
  }

  .step-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--gray-50); }

  .testimonials-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
  }

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

  .review-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
  }

  .review-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.08); transform: translateY(-3px); }

  .review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
  .star { color: var(--accent); font-size: 0.9rem; }

  .review-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
  }

  .reviewer {
    display: flex; align-items: center; gap: 12px;
  }

  .reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .reviewer-name {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--navy);
  }

  .reviewer-type {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 1px;
  }

  .google-badge {
    display: flex; align-items: center; gap: 6px;
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 500;
  }

  .google-g {
    width: 20px; height: 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #4285F4;
  }

  /* ── WHY US ── */
  .why { background: white; }

  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  .why-features { display: grid; gap: 20px; }

  .why-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    transition: background 0.2s;
  }

  .why-item:hover { background: var(--gray-50); }

  .why-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .why-item h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
  }

  .why-item p {
    font-size: 0.84rem;
    color: var(--gray-600);
    line-height: 1.6;
  }

  .why-visual {
    background: var(--navy);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
  }

  .why-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(26,86,219,0.3), transparent 60%);
  }

  .why-visual-content { position: relative; z-index: 2; }

  .why-visual-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
  }

  .why-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }

  .why-checklist li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
  }

  .check-icon {
    width: 22px; height: 22px;
    background: rgba(16,185,129,0.2);
    border: 1px solid rgba(16,185,129,0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    color: var(--accent-green);
    flex-shrink: 0;
  }

  .why-cta-box {
    margin-top: 28px;
    padding: 20px;
    background: rgba(26,86,219,0.15);
    border: 1px solid rgba(26,86,219,0.3);
    border-radius: 12px;
  }

  .why-cta-box p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }

  .why-cta-box a {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: opacity 0.2s;
  }

  .why-cta-box a:hover { opacity: 0.85; }

  /* ── CTA SECTION ── */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2d5e 100%);
    padding: 90px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(26,86,219,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,86,219,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  }

  .cta-inner { position: relative; z-index: 2; }

  .cta-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.3);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

  .cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto 36px;
    font-weight: 300;
  }

  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  .btn-cta-main {
    background: white;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }

  .btn-cta-main:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

  .btn-cta-sec {
    background: transparent;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }

  .btn-cta-sec:hover { border-color: rgba(255,255,255,0.5); color: white; }

  .cta-note { margin-top: 32px; font-size: 0.78rem; color: rgba(255,255,255,0.3); }

  /* ── FOOTER ── */
  footer {
    background: #060e1a;
    padding: 60px 5% 30px;
    color: rgba(255,255,255,0.5);
  }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 30px;
  }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 280px;
  }

  .footer-contact {
    margin-top: 20px;
    display: flex; flex-direction: column; gap: 8px;
  }

  .footer-contact a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 8px;
  }

  .footer-contact a:hover { color: white; }

  .footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col ul a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: white; }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }

  .footer-bottom p { font-size: 0.78rem; }

  .footer-socials { display: flex; gap: 12px; }

  .social-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s;
  }

  .social-btn:hover { background: rgba(255,255,255,0.12); color: white; }

  .lang-toggle {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
  }

  .lang-toggle:hover { background: rgba(255,255,255,0.1); color: white; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-connector { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }

  @media (max-width: 600px) {
    .stats-bar-inner { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); padding: 14px; }
    .footer-top { grid-template-columns: 1fr; }
    .trust-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .trust-logo-item { text-align: center; }
  }
