:root{
    --blue: #0B3D91;
    --blue-dark: #1a5cbf;
    --orange: #F97316;
    --orange-dark: #d9600e;
    --white: #F9FAFB;
    --text: #1F2937;
    --text-muted: #6B7280;
    --border: rgba(11,61,145,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body{
    font-family: 'Rajdhani', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    height: 72px;
    background: rgba(7, 42, 102, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(249,115,22,0.3);
    transition: all 0.3s ease;
}

nav.scrolled {
    height: 60px;
    background: rgba(7,42,102,0.99);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s;
}

.nav-logo:hover img {transform: scale(1.06);}

.nav-links{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;   
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 3px;
    transition: background 0.25s, transform 0.2s !important;
}
 
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }
 
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
 
.hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-dark);
}
 
.hero-bg {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(11,61,145,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(249,115,22,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #041830 0%, #0B3D91 55%, #072a66 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.hero-rig {
    position: absolute;
    right: 0; bottom: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.22;
    mix-blend-mode: luminosity;
}
 
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 8rem 4rem 4rem;
    width: 100%;
}
 
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.4);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both;
}
 
.hero-badge i { font-size: 0.7rem; }
 
.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 900;
    line-height: 0.92;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    max-width: 720px;
    animation: fadeUp 0.8s 0.15s ease both;
}
 
.hero-title .accent { color: var(--orange); }
 
.hero-sub {
    font-family: 'Source Serif 4', serif;
    font-size: 1.18rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.68);
    max-width: 540px;
    margin-top: 1.6rem;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.3s ease both;
}
 
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.8rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 3px;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
 
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
 
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(249,115,22,0.4); }
 
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 3px;
    transition: all 0.28s ease;
}
 
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
 
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp 0.8s 0.6s ease both;
    flex-wrap: wrap;
}
 
    
.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-number span { color: var(--orange); }
 
.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

 section { padding: 5.5rem 4rem; }
 
.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.8rem;
}
 
.section-label::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: var(--orange);
}
 
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue-dark);
    line-height: 1.0;
    letter-spacing: -0.01em;
}
 
.section-title .accent { color: var(--orange); }

.overview {
    background: var(--white);
}
 
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}
 
.overview-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.overview-text p strong { color: var(--text); font-weight: 600; }
 

 .services {
      background: linear-gradient(160deg, #041830 0%, #0B3D91 100%);
      position: relative;
      overflow: hidden;
    }
 
    .services::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 50px 50px;
    }
 
    .services .section-title { color: #fff; }
    .services .section-label { color: var(--orange); }
 
    .services-intro {
      font-size: 1rem;
      color: rgba(255,255,255,0.6);
      max-width: 520px;
      line-height: 1.7;
      margin-top: 1rem;
    }
 
    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3.5rem;
      flex-wrap: wrap;
      gap: 2rem;
    }
 
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      position: relative;
    }
 
    .service-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
      cursor: default;
    }
 
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s;
    }
 
    .service-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-6px);
      border-color: rgba(249,115,22,0.4);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      z-index: 2;
    }
 
    .service-card:hover::before { opacity: 1; }
 
    .service-icon {
      width: 52px; height: 52px;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.3);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
      font-size: 1.3rem;
      color: var(--orange);
      transition: all 0.35s;
    }
 
    .service-card:hover .service-icon {
      background: var(--orange);
      color: #fff;
      border-color: var(--orange);
      transform: rotate(-6deg) scale(1.1);
    }
 
    .service-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.7rem;
    }
 
    .service-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }
 
    .service-num {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      transition: color 0.35s;
    }
 
    .service-card:hover .service-num { color: rgba(249,115,22,0.08); }
 
    /* ── VISION & MISSION ── */
    .vm-section {
      background: var(--white);
    }
 
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }
 
    .vm-card {
      padding: 3rem;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
 
    .vm-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(11,61,145,0.15);
    }
 
    .vm-card.vision {
      background: linear-gradient(135deg, #0B3D91 0%, #1a5cbf 100%);
      color: #fff;
    }
 
    .vm-card.mission {
      background: var(--white);
      border: 2px solid var(--border);
    }
 
    .vm-icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.6rem;
    }
 
    .vision .vm-icon {
      background: rgba(249,115,22,0.2);
      color: var(--orange);
    }
 
    .mission .vm-icon {
      background: rgba(11,61,145,0.1);
      color: var(--blue);
    }
 
    .vm-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
    }
 
    .vision h3 { color: #fff; }
    .mission h3 { color: var(--blue-dark); }
 
    .vm-card p {
      font-size: 0.97rem;
      line-height: 1.75;
    }
 
    .vision p { color: rgba(255,255,255,0.75); }
    .mission p { color: var(--text-muted); }
 
    .vm-card::after {
      content: '';
      position: absolute;
      bottom: -30px; right: -30px;
      width: 120px; height: 120px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.08);
    }
 
    /* ── TEAM ── */
    .team {
      background: #f0f4fa;
    }
 
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
 
    .team-card {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(11,61,145,0.06);
      transition: all 0.35s ease;
      position: relative;
    }
 
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(11,61,145,0.15);
    }
 
    .team-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
 
    .team-card:hover::before { transform: scaleX(1); }
 
    .team-info {
      padding: 1.6rem;
    }
 
    .team-info h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--blue-dark);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
 
    .team-role {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--orange);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 3px;
      margin-bottom: 0.8rem;
    }
 
    .team-info p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
 
    /* ── POLICIES ── */
    .policies {
      background: linear-gradient(160deg, #041830 0%, #0B3D91 100%);
      position: relative;
    }
 
    .policies .section-title { color: #fff; }
    .policies .section-label { color: var(--orange); }
 
    .policies-intro {
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      max-width: 500px;
      margin-top: 0.6rem;
      line-height: 1.7;
    }
 
    .policies-header { margin-bottom: 3rem; }
 
    .policies-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
 
    .policy-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 1rem 1.2rem;
      border-radius: 4px;
      transition: all 0.3s ease;
      cursor: default;
    }
 
    .policy-pill:hover {
      background: rgba(249,115,22,0.12);
      border-color: rgba(249,115,22,0.4);
      transform: translateX(4px);
    }
 
    .policy-pill i {
      font-size: 1.1rem;
      color: var(--orange);
      flex-shrink: 0;
    }
 
    .policy-pill span {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255,255,255,0.8);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
 
    /* ── IPM ── */
    .ipm-section {
      background: var(--white);
    }
 
    .ipm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 3rem;
    }
 
    .ipm-img {
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(11,61,145,0.15);
      transition: transform 0.4s ease;
    }
 
    .ipm-img:hover { transform: scale(1.02); }
 
    .ipm-img img {
      width: 100%;
      display: block;
    }
 
    .ipm-features {
      list-style: none;
      margin-top: 2rem;
    }
 
    .ipm-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
 
    .ipm-features li i {
      color: var(--orange);
      margin-top: 2px;
      flex-shrink: 0;
    }
 
    .ipm-features li strong { color: var(--text); }
 
    /* ── CONTACT / CTA ── */
    .cta-section {
      background: var(--orange);
      position: relative;
      overflow: hidden;
    }
 
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
    }
 
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      flex-wrap: wrap;
      position: relative;
    }
 
    .cta-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
      max-width: 560px;
    }
 
    .cta-contact {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      flex-shrink: 0;
    }
 
    .cta-contact a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      font-size: 0.97rem;
      font-weight: 600;
      transition: color 0.2s;
    }
 
    .cta-contact a:hover { color: #fff; }
    .cta-contact a i { font-size: 1rem; opacity: 0.75; }
 
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--orange);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: 3px;
      transition: all 0.28s ease;
      margin-top: 1rem;
    }
 
    .btn-white:hover {
      background: var(--blue-dark);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    }
 
    /* ── FOOTER ── */
    footer {
      background: #03111f;
      color: rgba(255,255,255,0.6);
      padding: 3rem 4rem 2rem;
    }
 
    .footer-inner {
      max-width: 1300px;
      margin: 0 auto;
    }
 
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
 
    .footer-brand img {
      height: 40px;
      margin-bottom: 1rem;
      filter: brightness(1.2);
    }
 
    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.7;
      max-width: 280px;
    }
 
    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #fff;
      margin-bottom: 1.2rem;
    }
 
    .footer-col ul { list-style: none; }
 
    .footer-col ul li {
      margin-bottom: 0.6rem;
    }
 
    .footer-col ul li a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s, padding-left 0.2s;
    }
 
    .footer-col ul li a:hover {
      color: var(--orange);
      padding-left: 4px;
    }
 
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.5rem;
      font-size: 0.8rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
 
    .footer-bottom a { color: var(--orange); text-decoration: none; }
 
    .social-links {
      display: flex;
      gap: 0.8rem;
    }
 
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 3px;
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.25s;
    }
 
    .social-links a:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: translateY(-3px);
    }
 
    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
 
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
 
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    .reveal-left {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
 
    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
 
    .reveal-right {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
 
    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }
 
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
 
    /* ── MOBILE ── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .policies-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
 
    @media (max-width: 900px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 4rem 1.5rem; }
      .hero-content { padding: 7rem 1.5rem 3rem; }
      .overview-grid, .vm-grid, .ipm-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .overview-badge { left: 0; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      footer { padding: 3rem 1.5rem 2rem; }
    }
 
    @media (max-width: 600px) {
      .services-grid, .team-grid, .policies-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 2rem; }
      .footer-top { grid-template-columns: 1fr; }
      .cta-inner { flex-direction: column; }
    }
 
    /* Mobile nav open */
    nav.open .nav-links {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--blue-dark);
      padding: 2rem;
      gap: 1.2rem;
      border-top: 1px solid rgba(249,115,22,0.3);
    }
 
 