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

  :root {
    --navy: #0A0F2C;
    --indigo: #38bdf8;
    --violet: #f59e0b;
    --teal: #00D4AA;
    --white: #F8F6FF;
    --muted: #B8A9D4;
    --card-bg: rgba(255,255,255,0.04);
    --border: rgba(184,169,212,0.15);
  }

  html { scroll-behavior: smooth; }

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

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.4;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,15,44,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  /*nav.scrolled { padding: 12px 60px; }*/

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 900;
    background: linear-gradient(135deg, var(--teal), var(--violet));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
  }

  .nav-logo img { height: 40px; }
  .hero-form-card input.fc, .hero-form-card select.fc {width: 100%; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border); border-radius: 8px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.85rem; padding: 10px 14px; outline: none; transition: border-color 0.25s ease; margin-bottom:10px}
  a { text-decoration: none; }
  .fc option { background: #2b2d4a; color: #fff; }
  .hero-form-card button { width: 100%; padding: 13px; background: linear-gradient(135deg, var(--indigo), var(--violet)); color: var(--white); border: none; border-radius: 9px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; margin-top: 6px; box-shadow: 0 5px 20px rgba(123, 47, 190, 0.4); }
  .nav-logo span { font-weight: 400; }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.875rem; font-weight: 500; letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease; cursor: pointer;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-links a.active { color: var(--white); }

  .nav-cta {
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    color: var(--white); border: none; padding: 10px 24px;
    border-radius: 6px; font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
    letter-spacing: 0.3px;
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(123,47,190,0.4);
  }

  /* ─── SECTIONS COMMON ─── */
  section { position: relative; z-index: 1; }

  .section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; line-height: 1.15;
    color: var(--white);
  }

  .section-title em { font-style: italic; color: var(--teal); }

  .section-subtitle {
    font-size: 1.05rem; color: var(--muted); line-height: 1.7;
    max-width: 580px; margin-top: 14px;
  }

  /* ─── HERO ─── */
  #home {
    min-height: 100vh;
    display: flex; align-items: flex-start; flex-direction: row;
    justify-content: space-between;
    padding: 130px 60px 80px;
    position: relative; overflow: hidden; gap: 50px;
  }

  .hero-content { flex: 1; min-width: 0; }

  .hero-glow {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,47,190,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-glow2 {
    position: absolute; bottom: -150px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,170,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content { max-width: 640px; position: relative; z-index: 2; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.3);
    padding: 6px 14px; border-radius: 100px;
    font-size: 0.8rem; color: var(--teal); margin-bottom: 28px;
    font-weight: 500;
  }
  .hero-badge::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal); display: block;
    box-shadow: 0 0 8px var(--teal);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 22px;
  }
  .hero-title .line2 {
    background: linear-gradient(135deg, var(--teal) 0%, #a855f7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero-sub {
    font-size: 1.1rem; color: var(--muted); line-height: 1.75;
    margin-bottom: 40px; max-width: 520px;
  }

  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  .btn-primary {
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    color: var(--white); border: none; padding: 14px 30px;
    border-radius: 8px; font-size: 0.95rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(123,47,190,0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123,47,190,0.5);
  }

  .btn-outline {
    background: transparent; color: var(--white);
    border: 1px solid var(--border); padding: 14px 30px;
    border-radius: 8px; font-size: 0.95rem; font-weight: 500;
    cursor: pointer; transition: all 0.3s ease;
  }
  .btn-outline:hover {
    border-color: var(--teal); color: var(--teal);
    background: rgba(0,212,170,0.06);
  }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 52px;
    padding-top: 40px; border-top: 1px solid var(--border);
  }
  .stat-num {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem; font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--violet));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

  /* Hero layout: left text + right form */
  #home { align-items: flex-start; gap: 60px; }

  .hero-visual {
    flex-shrink: 0; width: 420px; z-index: 2;
    position: relative; top: 0; right: 0; transform: none;
    margin-top: 20px;
  }

  /* Hero inline enquiry form */
  .hero-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 30px 28px;
    backdrop-filter: blur(16px);
    animation: slideIn 0.7s ease 0.3s forwards;
    opacity: 0; transform: translateX(30px);
  }
  @keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
  }
  .hero-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; margin-bottom: 4px;
  }
  .hero-form-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }

  .hero-form-card .form-group { margin-bottom: 12px; }
  .hero-form-card .form-group label {
    display: block; font-size: 0.72rem; font-weight: 600;
    color: var(--muted); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 6px;
  }
  .hero-form-card .form-group input,
  .hero-form-card .form-group select {
    width: 100%; background: rgba(255,255,255,0.06);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--white); font-family: 'Inter', sans-serif;
    font-size: 0.85rem; padding: 10px 14px; outline: none;
    transition: border-color 0.25s ease;
  }
  .hero-form-card .form-group input:focus,
  .hero-form-card .form-group select:focus {
    border-color: rgba(0,212,170,0.5); background: rgba(0,212,170,0.04);
  }
  .hero-form-card .form-group select option { background: #1a1f4e; }
  .hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  .hero-form-submit {
    width: 100%; padding: 13px;
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    color: var(--white); border: none; border-radius: 9px;
    font-size: 0.9rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease; margin-top: 6px;
    box-shadow: 0 5px 20px rgba(123,47,190,0.4);
  }
  .hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(123,47,190,0.55);
  }
  .hero-form-note {
    text-align: center; font-size: 0.72rem; color: var(--muted);
    margin-top: 10px;
  }
  .hero-form-note span { color: var(--teal); }

  /* Horizontal pathway strip below stats */
  .hero-pathway-strip {
    display: flex; align-items: center; gap: 0;
    margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border);
    overflow-x: auto; padding-bottom: 4px;
  }
  .hero-pathway-strip::-webkit-scrollbar { height: 3px; }
  .hero-pathway-strip::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 2px; }

  .path-step {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    flex-shrink: 0; min-width: 80px; text-align: center;
    animation: fadeUp 0.5s ease forwards; opacity: 0; transform: translateY(12px);
  }
  .path-step:nth-child(1) { animation-delay: 0.2s; }
  .path-step:nth-child(3) { animation-delay: 0.35s; }
  .path-step:nth-child(5) { animation-delay: 0.5s; }
  .path-step:nth-child(7) { animation-delay: 0.65s; }
  .path-step:nth-child(9) { animation-delay: 0.8s; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

  .path-dot {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
    border: 1px solid var(--border);
  }
  .path-label { font-size: 0.65rem; color: var(--muted); line-height: 1.3; max-width: 72px; }

  .path-arrow {
    flex: 1; height: 1px; min-width: 16px;
    background: linear-gradient(90deg, var(--violet), var(--teal));
    opacity: 0.4; position: relative; margin-bottom: 20px;
  }
  .path-arrow::after {
    content: ''; position: absolute; right: -4px; top: -3px;
    border: 4px solid transparent; border-left: 6px solid var(--teal);
    opacity: 0.6;
  }

  /* ─── ABOUT ─── */
  #about {
    padding: 100px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(45,27,142,0.08) 50%, transparent 100%);
  }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; max-width: 1100px; margin: 50px auto 0;
  }

  .feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
  .feature-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px; border-radius: 10px;
    background: var(--card-bg); border: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  .feature-item:hover {
    border-color: rgba(0,212,170,0.3);
    transform: translateX(4px);
  }
  .feature-icon {
    width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  }
  .feature-icon.teal { background: rgba(0,212,170,0.12); }
  .feature-icon.violet { background: rgba(123,47,190,0.15); }
  .feature-icon.indigo { background: rgba(45,27,142,0.25); }
  .feature-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
  .feature-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

  .trust-badges {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px;
  }
  .trust-badge {
    padding: 20px; border-radius: 10px;
    background: var(--card-bg); border: 1px solid var(--border);
    text-align: center;
  }
  .trust-badge .num {
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem; font-weight: 700; color: var(--teal);
  }
  .trust-badge .label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

  /* ─── SERVICES ─── */
  #services { padding: 100px 60px; }

  .services-header { text-align: center; max-width: 600px; margin: 0 auto; }
  .services-header .section-subtitle { margin: 14px auto 0; }

  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; margin-top: 52px; max-width: 1100px; margin-left: auto; margin-right: auto;
  }

  .service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px; padding: 28px;
    cursor: pointer; transition: all 0.35s ease;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--indigo), var(--teal));
    opacity: 0; transition: opacity 0.3s ease;
  }
  .service-card:hover { border-color: rgba(0,212,170,0.25); transform: translateY(-4px); }
  .service-card:hover::before { opacity: 1; }

  .service-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem; color: var(--violet); letter-spacing: 2px; margin-bottom: 16px;
  }
  .service-icon { font-size: 1.8rem; margin-bottom: 14px; }
  .service-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
  .service-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

  /* ─── ENQUIRY ─── */
  #contact {
    padding: 100px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(45,27,142,0.1) 50%, transparent 100%);
  }
  .contact-header { text-align: center; max-width: 580px; margin: 0 auto 52px; }
  .contact-header .section-subtitle { margin: 14px auto 0; }

  .enquiry-tabs {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap;
  }
  .eq-tab {
    background: var(--card-bg); border: 1px solid var(--border);
    color: var(--muted); padding: 10px 22px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 500; cursor: pointer;
    transition: all 0.25s ease;
  }
  .eq-tab.active, .eq-tab:hover {
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    border-color: transparent; color: var(--white);
  }

  .enquiry-form-wrap {
    max-width: 700px; margin: 0 auto;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 42px; backdrop-filter: blur(10px);
  }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; margin-bottom: 6px;
  }
  .form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--muted); letter-spacing: 0.8px; text-transform: uppercase;
    margin-bottom: 7px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--white); font-family: 'Inter', sans-serif;
    font-size: 0.9rem; padding: 12px 16px;
    outline: none; transition: border-color 0.25s ease;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(0,212,170,0.5);
    background: rgba(0,212,170,0.04);
  }
  .form-group select option { background: #1a1f4e; }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 60%, #9b3cc4 100%);
    color: var(--white); border: none; border-radius: 10px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease; margin-top: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(123,47,190,0.4);
  }
  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(123,47,190,0.55);
  }

  .form-success {
    display: none; text-align: center; padding: 40px 20px;
  }
  .form-success .check {
    font-size: 3rem; margin-bottom: 16px;
    display: block;
  }
  .form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; margin-bottom: 10px;
  }
  .form-success p { color: var(--muted); font-size: 0.9rem; }

  /* ─── FLOATING CTA STRIP ─── */
  .floating-cta {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  }

  .float-btn {
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    color: var(--white); border: none; padding: 12px 20px;
    border-radius: 100px; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(45,27,142,0.5);
    white-space: nowrap;
  }
  .float-btn:hover {
    transform: translateX(-3px);
    box-shadow: 0 10px 30px rgba(123,47,190,0.5);
  }
  .float-btn.teal-btn {
    background: linear-gradient(135deg, #00a882, var(--teal));
    box-shadow: 0 6px 20px rgba(0,212,170,0.35);
  }
  .float-btn.teal-btn:hover { box-shadow: 0 10px 30px rgba(0,212,170,0.5); }

  .float-toggle {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo), var(--violet));
    border: none; color: var(--white); font-size: 1.4rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(45,27,142,0.6);
    transition: all 0.3s ease;
  }
  .float-toggle:hover { transform: rotate(180deg) scale(1.1); }

  .float-menu { display: none; flex-direction: column; gap: 8px; align-items: flex-end; }
  .float-menu.open { display: flex; }

  /* ─── PROCESS SECTION ─── */
  #process { padding: 100px 60px; }
  .process-header { text-align: center; max-width: 560px; margin: 0 auto; }
  .process-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 56px; max-width: 1000px; margin-left: auto; margin-right: auto;
  }
  .process-step {
    text-align: center; padding: 36px 24px;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 14px; transition: all 0.3s ease; position: relative;
  }
  .process-step:hover {
    border-color: rgba(0,212,170,0.25); transform: translateY(-4px);
  }
  .step-num {
    font-family: 'Space Mono', monospace;
    font-size: 2.2rem; font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--violet));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
  }
  .step-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
  .step-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

  /* ─── FOOTER ─── */
  footer {
    padding: 40px 60px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 1;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 900;
    background: linear-gradient(135deg, var(--teal), var(--violet));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .footer-text { font-size: 0.78rem; color: var(--muted); }
  .footer-disclaimer { font-size: 0.72rem; color: rgba(184,169,212,0.5); max-width: 500px; line-height: 1.6; text-align: right; }

  /* ─── MODAL (Enquiry Quick Forms) ─── */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px); z-index: 300;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: #111535; border: 1px solid var(--border);
    border-radius: 20px; padding: 38px; width: 100%; max-width: 480px;
    position: relative; max-height: 90vh; overflow-y: auto;
  }
  .modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: var(--muted);
    font-size: 1.4rem; cursor: pointer; line-height: 1;
  }
  .modal-close:hover { color: var(--white); }
  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 4px;
  }
  .modal-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    #home { flex-direction: column; padding: 100px 24px 60px; gap: 36px; }
    .hero-visual { width: 100%; }
    .hero-form-card { padding: 22px 18px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    #about, #services, #contact, #process { padding: 70px 24px; }
    footer { flex-direction: column; gap: 14px; text-align: center; padding: 30px 24px; }
    .footer-disclaimer { text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .hero-pathway-strip { gap: 0; }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .trust-badges { grid-template-columns: 1fr 1fr; }
    .enquiry-form-wrap { padding: 24px; }
  }