
  :root {
    --red: #C41E2A;
    --red-dark: #9E1621;
    --navy: #1B3E6F;
    --navy-dark: #122A4E;
    --navy-light: #2455A0;
    --gold: #D4A843;
    --white: #FFFFFF;
    --off-white: #F7F5F0;
    --light-gray: #EEF0F5;
    --text: #1A1A2E;
    --text-muted: #5A6070;
    --border: rgba(27,62,111,0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  .inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 max(5vw, calc((100% - 1320px) / 2 + 40px));
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: box-shadow 0.3s, height 0.3s;
  }

  nav.scrolled { box-shadow: 0 4px 24px rgba(27,62,111,0.1); }

  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img {
    display: block;
    height: 52px;
    width: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin-left: 0;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-links > li > a.active { color: var(--navy); font-weight: 600; }

  .social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
  }
  .social-icon:hover { background: rgba(255,255,255,0.2); }

  .dropdown { position: relative; }
  .dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(27,62,111,0.15);
    min-width: 270px;
    padding: 16px 8px 8px;
    border: 1px solid var(--border);
    list-style: none;
    margin: 0;
    z-index: 200;
  }
  .dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    transition: background 0.15s;
  }
  .dropdown-menu a:hover { background: var(--light-gray); color: var(--navy); }

  .btn-speak {
    background: var(--red);
    color: white !important;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .btn-speak:hover { background: var(--red-dark); transform: translateY(-1px); }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 88px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg,
        rgba(18,42,78,0.92) 0%,
        rgba(27,62,111,0.85) 40%,
        rgba(27,62,111,0.4) 65%,
        transparent 100%),
      url('assets/images/background__home.png') center/cover no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 80px max(5vw, calc((100% - 1320px) / 2 + 40px));
    max-width: calc(680px + max(5vw, calc((100% - 1320px) / 2 + 40px)));
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,168,67,0.18);
    border: 1px solid rgba(212,168,67,0.4);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    background: var(--red);
    color: white;
    padding: 15px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(196,30,42,0.4);
  }
  .btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,30,42,0.5);
  }

  .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 15px 32px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.4s ease both;
  }
  .stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
  }
  .stat::before {
    content: '';
    display: block;
    width: 3px;
    height: 32px;
    background: var(--gold);
    border-radius: 2px;
  }
  .stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--navy-dark);
    padding: 20px max(5vw, calc((100% - 1320px) / 2 + 40px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
  }
  .trust-icon {
    width: 20px; height: 20px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .trust-divider {
    width: 1px; height: 20px;
    background: rgba(255,255,255,0.2);
  }

  /* ─── SECTIONS ─── */
  section { padding: 96px max(5vw, calc((100% - 1320px) / 2 + 40px)); }

  .section-label {
    display: inline-block;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-dark);
    margin-bottom: 16px;
  }

  .section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
  }

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

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

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

  .service-card {
    background: white;
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(27,62,111,0.12);
    border-color: transparent;
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: background 0.25s;
  }
  .service-card:hover .service-icon { background: rgba(196,30,42,0.08); }

  .service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .service-card:hover .service-link { gap: 10px; }

  /* ─── WHY US ─── */
  .why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  @media (max-width: 800px) {
    .why-us { grid-template-columns: 1fr; gap: 48px; }
  }

  .why-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 540px;
  }
  .why-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .why-badge {
    position: absolute;
    bottom: 28px; left: 28px;
    background: white;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .why-badge-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .why-badge p { font-size: 0.8rem; color: var(--text-muted); }
  .why-badge strong { display: block; font-size: 1rem; color: var(--text); }

  .why-points {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .why-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .check {
    width: 22px; height: 22px;
    background: rgba(196,30,42,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
  }

  /* ─── PROCESS ─── */
  .process { background: var(--navy-dark); }
  .process .section-label { color: var(--gold); }
  .process h2 { color: white; }
  .process .section-intro { color: rgba(255,255,255,0.6); }

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

  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    position: relative;
  }

  .step {
    padding: 40px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    position: relative;
    transition: background 0.25s;
  }
  .step:hover { background: rgba(255,255,255,0.08); }

  .step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    position: absolute;
    top: 20px; right: 20px;
  }

  .step-icon {
    font-size: 1.8rem;
    margin-bottom: 18px;
    display: block;
  }

  .step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
  }

  .step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--off-white); }
  .testimonials-header { margin-bottom: 52px; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
  }

  .quote-mark {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    color: var(--red);
    line-height: 0.5;
    margin-bottom: 16px;
    opacity: 0.3;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
  }

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

  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .author-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
  .author-role { font-size: 0.8rem; color: var(--text-muted); }

  .stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }

  /* ─── VISA TYPES ─── */
  .visa-types { border-top: 1px solid var(--border); }
  .visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 48px;
  }
  .visa-chip {
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
  }
  .visa-chip:hover {
    border-color: var(--red);
    background: rgba(196,30,42,0.04);
    color: var(--red);
    transform: translateY(-2px);
  }
  .visa-chip.featured {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
  }
  .visa-chip.featured:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: white;
  }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 96px max(5vw, calc((100% - 1320px) / 2 + 40px));
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(212,168,67,0.08);
    border-radius: 50%;
  }
  .cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 240px; height: 240px;
    background: rgba(196,30,42,0.1);
    border-radius: 50%;
  }
  .cta-banner h2 { color: white; margin-bottom: 16px; }
  .cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
  }

  /* ─── ASSESSMENT FORM ─── */
  .assessment { background: var(--off-white); }
  .assessment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 800px) {
    .assessment-inner { grid-template-columns: 1fr; gap: 40px; }
  }

  .form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(27,62,111,0.08);
  }

  .form-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
  }
  .form-card > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }

  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,62,111,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .btn-form {
    width: 100%;
    background: var(--red);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
  }
  .btn-form:hover { background: var(--red-dark); transform: translateY(-1px); }

  .form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px max(5vw, calc((100% - 1320px) / 2 + 40px)) 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  .footer-brand-inner { display: flex; flex-direction: row; gap: 20px; align-items: flex-start; }

  .footer-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 125px;
  }

  @media (max-width: 600px) {
    .footer-brand-inner { flex-direction: column; align-items: flex-start; }
    .footer-badge-col { flex-direction: row; align-items: flex-end; width: auto; gap: 12px; }
    .footer-badge-col > div { max-width: 90px; }
    .footer-badge-col > p { margin-top: 0 !important; }
  }

  .footer-brand .logo { color: white; }
  .footer-brand p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 16px 0 24px;
    max-width: 280px;
  }

  .footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: white; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
  }
  @media (max-width: 600px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  }

  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-legal a:hover { color: white; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .modal-close:hover { background: var(--border); }
  .modal h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
  }
  .modal p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

  /* ─── MOBILE NAV ─── */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: white;
    z-index: 99;
    padding: 20px max(5vw, calc((100% - 1320px) / 2 + 40px)) 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav .btn-speak { margin-top: 12px; text-align: center; }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero h1 { font-size: 2.4rem; }
    .form-row { grid-template-columns: 1fr; }
  }

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

  /* ─── BLUE LIGHT ─── */
  .trust-item--bluelight {
    color: #1a6eb5;
    font-weight: 600;
  }
  .trust-item--bluelight .trust-icon { stroke: #1a6eb5; }

  .cta-bluelight {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    letter-spacing: 0.1px;
  }
  .cta-bluelight strong { color: #fff; }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* Success State */
  .form-success {
    display: none;
    text-align: center;
    padding: 20px 0;
  }
  .form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
  }
  .form-success h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
  }
  .form-success p { color: var(--text-muted); font-size: 0.9rem; }
