/* =====================================================
   TECHFORTE — shared design system
   Fonts: Poppins (display) / Inter (body)
   Palette: deep navy → cyan gradient world
   ===================================================== */

:root{
  --blue-1: #0a1958;   /* deepest navy — nav, footer, dark bands */
  --blue-2: #16307e;
  --blue-3: #1e56c9;
  --blue-4: #2f7fe0;   /* brightest gradient stop */
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.85);
  --white-faint: rgba(255,255,255,0.55);
  --navy-btn: #0c1440;
  --cyan-accent: #14b8e8;
  --surface: #f4f6fb;      /* light content-section background */
  --surface-alt: #eaeefa;  /* slightly deeper light surface for zebra sections */
  --ink: #0a1958;          /* body text on light surfaces */
  --ink-soft: #55608a;     /* secondary text on light surfaces */
  --line: rgba(10,25,88,0.10);
  --shadow-lg: 0 30px 60px -20px rgba(10,25,88,0.25);
  --shadow-sm: 0 10px 24px -12px rgba(10,25,88,0.18);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  font-family:'Inter', sans-serif;
  color: var(--ink);
  background: var(--surface);
  overflow-x:hidden;
  width:100%;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font-family:inherit; }

.container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

::selection{ background: var(--cyan-accent); color: var(--blue-1); }

:focus-visible{
  outline: 2px solid var(--cyan-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html{ scroll-behavior:auto; }
}

/* =========== GRADIENT BAND (used behind nav on every page) =========== */
.brand-gradient{
  background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 35%, var(--blue-3) 70%, var(--blue-4) 100%);
  color: var(--white);
  position: relative;
}

/* =========================== NAV =========================== */
nav.site-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  margin: clamp(16px, 3vw, 26px) clamp(20px, 5vw, 56px) 0;
  padding: 10px 10px 10px clamp(20px, 3vw, 28px);
  position: relative;
  z-index: 30;
}

.site-nav::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 60px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px -12px rgba(2,6,30,0.35);
  z-index: -1;
  pointer-events: none;
}

.logo{
  font-family:'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 20px);
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration:none;
  white-space: nowrap;
  z-index: 31;
}

.nav-right{
  display:flex;
  align-items:center;
  gap: clamp(20px, 3vw, 32px);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: clamp(18px, 2.6vw, 34px);
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links > a{
  color: var(--white);
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:4px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  position: relative;
  padding-bottom: 3px;
}
.nav-links > a .idx{ display:none; }

.nav-links > a::after{
  content:"";
  position:absolute;
  left:0; bottom:-4px;
  width:0;
  height:2px;
  background: var(--cyan-accent);
  border-radius:2px;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-links > a:hover{ opacity:1; }
.nav-links > a:hover::after,
.nav-links > a.active::after{ width:100%; }
.nav-links > a.active{ opacity:1; }

.nav-cta{ flex-shrink:0; }

.mobile-menu-foot{ display:none; }

.caret{ font-size:10px; margin-top:1px; }

/* Modern icon-morph toggle: two asymmetric bars that unite into an X */
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  position: relative;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  cursor:pointer;
  z-index:31;
  padding:0;
  flex-shrink:0;
  transition: background 0.25s ease;
}
.menu-toggle:hover{ background: rgba(255,255,255,0.16); }
.menu-toggle span{
  position:absolute;
  height:2px;
  background: var(--white);
  border-radius:2px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.menu-toggle span:nth-child(1){ width:18px; top:18px; left:14px; }
.menu-toggle span:nth-child(2){ width:12px; top:27px; left:14px; }
.menu-toggle.open span:nth-child(1){ width:18px; top:22.5px; left:14px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2){ width:18px; top:22.5px; left:14px; transform: rotate(-45deg); }

/* =========================== BUTTONS =========================== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:16px 26px;
  border-radius:40px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  width:fit-content;
  border: none;
  text-decoration:none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn .arrow-circle{
  width:26px; height:26px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  flex-shrink:0;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background: var(--navy-btn);
  color: var(--white);
}
.btn-primary .arrow-circle{ background: rgba(255,255,255,0.12); }
.btn-primary:hover{ background:#060a26; }

.btn-outline{
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline .arrow-circle{ background: rgba(255,255,255,0.14); }
.btn-outline:hover{ border-color: var(--white); }

.btn-light{
  background: var(--white);
  color: var(--blue-1);
}
.btn-light .arrow-circle{ background: rgba(10,25,88,0.08); color: var(--blue-1); }
.btn-light:hover{ background:#eef1f8; }

.nav-cta.btn{
  padding: 12px 22px;
  font-size: 14px;
  gap: 10px;
}
.nav-cta.btn .arrow-circle{ width:22px; height:22px; font-size:12px; }

/* =========================== SECTION UTILITIES =========================== */
.section{ padding: clamp(64px, 9vw, 120px) 0; position:relative; }
.section-alt{ background: var(--surface-alt); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color: var(--blue-3);
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:20px; height:2px;
  background: var(--cyan-accent);
  display:inline-block;
}
.brand-gradient .eyebrow{ color: var(--white-soft); }
.brand-gradient .eyebrow::before{ background: var(--cyan-accent); }

.section-title{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.15;
  letter-spacing:0.2px;
  max-width: 680px;
  color: var(--ink);
}
.brand-gradient .section-title{ color: var(--white); }

.section-sub{
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  line-height:1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 18px;
}
.brand-gradient .section-sub{ color: var(--white-soft); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Signature typographic motif — big duotone word stack, reused per page
   with different words, always right-aligned like the homepage hero. */
.word-stack{
  text-align:right;
  pointer-events:none;
}
.word-stack .line{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size: clamp(30px, 5.4vw, 74px);
  line-height:1.05;
  letter-spacing:1px;
  color: var(--white);
  text-transform:uppercase;
}
.word-stack .line.dim{ color: rgba(255,255,255,0.32); }

/* =========================== GENERIC PAGE HERO =========================== */
.page-hero{
  position:relative;
  padding: clamp(48px, 8vw, 72px) 0 clamp(64px, 9vw, 96px);
  overflow:hidden;
}
.page-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items:end;
}
.page-hero-copy{ max-width: 520px; }
.page-hero .eyebrow{ color: var(--white-soft); }
.page-hero h1{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size: clamp(32px, 5vw, 54px);
  line-height:1.14;
  text-transform:uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p{
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  line-height:1.7;
  color: var(--white-soft);
  max-width: 460px;
}
.page-hero .word-stack{ opacity:0.9; }

.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color: var(--white-faint);
  margin-bottom:22px;
}
.breadcrumb a{ text-decoration:none; color: var(--white-soft); }
.breadcrumb a:hover{ color:var(--white); }

/* =========================== CARDS =========================== */
.card-grid{
  display:grid;
  gap: 24px;
}
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.feature-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card .icon{
  width: 52px; height:52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-4));
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 22px;
}
.feature-card h3{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--ink);
}
.feature-card p{
  font-size: 14.5px;
  line-height:1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.feature-card .card-link{
  font-size: 14px;
  font-weight:600;
  color: var(--blue-3);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.feature-card .card-link:hover{ gap:10px; }
.feature-card .card-link span{ transition: none; }

.value-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.value-card .num{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size: 15px;
  color: var(--cyan-accent);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.value-card h3{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:18px;
  margin-bottom:10px;
}
.value-card p{
  font-size:14px;
  line-height:1.65;
  color: var(--ink-soft);
}

.team-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card img{ width:100%; height: 240px; object-fit:cover; }
.team-card .info{ padding: 20px 22px 24px; }
.team-card h3{ font-family:'Poppins', sans-serif; font-weight:600; font-size:17px; margin-bottom:4px; }
.team-card .role{ font-size:13px; color: var(--blue-3); font-weight:600; }

.stat-strip{
  display:flex;
  flex-wrap:wrap;
  gap: clamp(14px, 2vw, 22px);
}
.stat-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 26px);
  min-width: 160px;
  flex: 0 1 auto;
}
.stat-card.solid{ background: var(--white); color: var(--blue-1); }
.stat-card .glyph{ font-family:'Poppins', sans-serif; font-weight:800; font-size:20px; margin-bottom:30px; color: var(--blue-1); }
.stat-card .number{ font-family:'Poppins', sans-serif; font-weight:700; font-size: clamp(30px, 4vw, 40px); margin-bottom:6px; line-height:1; }
.stat-card.solid .number{ color: var(--blue-1); }
.stat-card:not(.solid) .number{ color: var(--white); }
.stat-card .label{ font-size:14.5px; font-weight:500; }
.stat-card.solid .label{ color: var(--blue-1); }
.stat-card:not(.solid) .label{ color: var(--white-soft); }
.stat-card.blank{ background:transparent; border:none; flex:1 1 auto; min-width:0; padding:0; }

.project-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  background: var(--blue-2);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.project-card img{ width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.project-card:hover img{ transform: scale(1.06); }
.project-card .overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,25,88,0) 40%, rgba(6,10,38,0.92) 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding: 24px;
}
.project-card .tag{
  align-self:flex-start;
  font-size:12px; font-weight:700; letter-spacing:0.6px; text-transform:uppercase;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.project-card h3{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:20px;
  color: var(--white);
  margin-bottom: 4px;
}
.project-card p{ font-size:13.5px; color: var(--white-soft); }

.testimonial-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .quote-mark{
  font-family:'Poppins', sans-serif;
  font-size: 40px;
  color: var(--cyan-accent);
  line-height:1;
  margin-bottom: 12px;
  display:block;
}
.testimonial-card p.quote{
  font-size: 15px;
  line-height:1.7;
  color: var(--ink);
  margin-bottom: 22px;
}
.testimonial-card .person{ display:flex; align-items:center; gap:12px; }
.testimonial-card .person img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.testimonial-card .person .name{ font-weight:600; font-size:14px; }
.testimonial-card .person .role{ font-size:12.5px; color: var(--ink-soft); }

.process-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step{ position:relative; padding-top: 8px; }
.process-step .step-num{
  font-family:'Poppins', sans-serif;
  font-weight:800;
  font-size: 15px;
  color: var(--cyan-accent);
  letter-spacing:1px;
  margin-bottom: 16px;
}
.process-step h3{ font-family:'Poppins', sans-serif; font-weight:600; font-size:18px; margin-bottom:10px; color: var(--white); }
.process-step p{ font-size:14px; line-height:1.65; color: var(--white-soft); }
.process-step::after{
  content:"";
  position:absolute;
  top:0; left:0; right:24px;
  height:1px;
  background: rgba(255,255,255,0.18);
}

/* =========================== CTA BANNER =========================== */
.cta-banner{
  border-radius: 28px;
  padding: clamp(40px, 6vw, 64px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 32px;
  flex-wrap:wrap;
}
.cta-banner h2{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size: clamp(24px, 3.4vw, 36px);
  color: var(--white);
  max-width: 480px;
  line-height:1.25;
}
.cta-banner p{
  color: var(--white-soft);
  margin-top: 10px;
  font-size: 15px;
  max-width: 420px;
}

/* =========================== FOOTER =========================== */
.site-footer{
  background: var(--blue-1);
  color: var(--white-soft);
  padding: clamp(56px, 8vw, 80px) 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo{ margin-bottom: 16px; display:inline-block; }
.footer-brand p{ font-size:14px; line-height:1.7; max-width: 280px; color: var(--white-faint); margin-bottom: 22px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:36px; height:36px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,0.18);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover{ background: var(--cyan-accent); border-color: var(--cyan-accent); color: var(--blue-1); }

.footer-col h4{
  font-family:'Poppins', sans-serif;
  font-size: 14px;
  font-weight:600;
  letter-spacing: 0.6px;
  text-transform:uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:14px; color: var(--white-faint); text-decoration:none; transition: color 0.2s ease; }
.footer-col a:hover{ color: var(--white); }
.footer-col .contact-line{ font-size:14px; color: var(--white-faint); line-height:1.7; }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
  padding: 24px 0;
  font-size: 13px;
  color: var(--white-faint);
}
.footer-bottom a{ text-decoration:none; color: var(--white-faint); }
.footer-bottom a:hover{ color:var(--white); }
.footer-bottom-links{ display:flex; gap:24px; }

/* =========================== FORMS (Contact) =========================== */
.contact-layout{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items:start;
}
.contact-info-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom: 18px;
}
.contact-info-card .icon{
  width:44px; height:44px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-4));
  display:flex; align-items:center; justify-content:center;
  color:var(--white);
  font-size:18px;
  flex-shrink:0;
}
.contact-info-card h4{ font-family:'Poppins', sans-serif; font-size:15px; font-weight:600; margin-bottom:6px; }
.contact-info-card p{ font-size:14px; color: var(--ink-soft); line-height:1.6; }

.contact-form-wrap{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.form-field label{ font-size:13px; font-weight:600; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select{
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-family:'Inter', sans-serif;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline:none;
  border-color: var(--blue-3);
}
.form-field textarea{ resize: vertical; min-height: 120px; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1024px){
  .page-hero-grid{ grid-template-columns: 1fr; }
  .page-hero .word-stack{ text-align:left; margin-top: 32px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .contact-layout{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .menu-toggle{ display:flex; }
  .nav-cta{ display:none; }

  .nav-links{
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at 85% 12%, rgba(20,184,232,0.22), transparent 55%),
      radial-gradient(circle at 10% 85%, rgba(47,127,224,0.28), transparent 50%),
      linear-gradient(160deg, var(--blue-1) 0%, var(--blue-2) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    padding: 110px clamp(28px, 8vw, 56px) 48px;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(.4,0,.2,1), visibility 0.35s;
    z-index: 25;
    overflow-y: auto;
  }
  .nav-links.open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links > a{
    font-family:'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 9vw, 44px);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateX(24px);
    gap: 16px;
  }
  .nav-links > a::after{ display:none; }
  .nav-links > a.active{ color: var(--cyan-accent); }
  .nav-links > a .idx{
    display:inline-block;
    font-family:'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan-accent);
    letter-spacing: 1px;
  }

  .nav-links.open > a{
    animation: navItemIn 0.55s cubic-bezier(.16,1,.3,1) forwards;
  }
  .nav-links.open > a:nth-child(1){ animation-delay: 0.08s; }
  .nav-links.open > a:nth-child(2){ animation-delay: 0.14s; }
  .nav-links.open > a:nth-child(3){ animation-delay: 0.20s; }
  .nav-links.open > a:nth-child(4){ animation-delay: 0.26s; }
  .nav-links.open > a:nth-child(5){ animation-delay: 0.32s; }

  @keyframes navItemIn{
    to{ opacity:1; transform: translateX(0); }
  }

  .mobile-menu-foot{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-top: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.14);
    width: 100%;
    opacity: 0;
    transform: translateX(24px);
  }
  .nav-links.open .mobile-menu-foot{
    animation: navItemIn 0.55s cubic-bezier(.16,1,.3,1) forwards;
    animation-delay: 0.4s;
  }
  .mobile-menu-foot .footer-social a{ color: var(--white); }

  .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .process-strip{ grid-template-columns: 1fr 1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .cta-banner{ flex-direction:column; align-items:flex-start; text-align:left; }
  .stat-card.blank{ display:none; }
}

@media (max-width: 640px){
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .process-strip{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .grid-4{ grid-template-columns: 1fr; }
}
