/* =============================================
   Warp9 Group — Main Stylesheet (Revamp 2026)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=PT+Sans:wght@400;700&display=swap');

:root {
  --navy:        #071E41;
  --navy-mid:    #0c2d5c;
  --teal:        #00A895;
  --teal-light:  #00c4ae;
  --teal-dark:   #007d6e;
  --white:       #FFFFFF;
  --light:       #F4F7FA;
  --text:        #1f2937;
  --muted:       #6B7280;
  --font-main:   'Montserrat', sans-serif;
  --font-body:   'PT Sans', serif;
  --transition:  0.28s ease;
  --radius:      10px;
  --radius-lg:   14px;
  --shadow:      0 2px 18px rgba(7,30,65,0.08);
  --shadow-lg:   0 8px 44px rgba(7,30,65,0.16);
  --shadow-teal: 0 5px 22px rgba(0,168,149,0.32);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── HEADER ─────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.logo-text {
  font-size: 1.35rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
  transition: opacity var(--transition);
}
.logo-text span { color: var(--teal); }
.logo:hover .logo-text { opacity: 0.88; }

nav ul { display: flex; gap: 4px; align-items: center; }
nav ul li a {
  color: rgba(255,255,255,0.78);
  font-size: 13.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 7px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.2px;
}
nav ul li a:hover, nav ul li a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 7px !important;
  box-shadow: 0 3px 14px rgba(0,168,149,0.32) !important;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 20px rgba(0,168,149,0.4) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: 6px; }
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, #071E41 0%, #0b2856 50%, #071E41 100%);
  color: var(--white);
  padding: 120px 5% 110px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -140px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,168,149,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { max-width: 820px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(0,168,149,0.14);
  border: 1px solid rgba(0,168,149,0.38);
  color: var(--teal);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 24px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.55rem);
  font-weight: 800; line-height: 1.14;
  margin-bottom: 24px; letter-spacing: -0.5px;
}
.hero h1 span { color: var(--teal); }
.hero p {
  font-size: 1.1rem; font-weight: 400;
  margin-bottom: 40px; opacity: 0.86;
  max-width: 620px; line-height: 1.78;
}
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.hero-bullet {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.88);
  transition: background var(--transition), border-color var(--transition);
}
.hero-bullet:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,168,149,0.35);
}
.hero-bullet::before { content: '✓'; color: var(--teal); font-weight: 800; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 32px;
  border-radius: var(--radius); font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: var(--white);
  margin-right: 14px;
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,168,149,0.46);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.44);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white); color: var(--navy);
  border-color: var(--white); transform: translateY(-2px);
}
.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.btn-navy:hover { opacity: 0.88; transform: translateY(-1px); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, #0b2856 100%);
  color: var(--white); padding: 92px 5% 82px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,168,149,0.1) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.page-hero .section-label,
.page-hero h1,
.page-hero p { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.page-hero p { font-size: 1.07rem; opacity: 0.84; max-width: 640px; }

/* ── SECTIONS ────────────────────────────────── */
section { padding: 92px 5%; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-teal { background: var(--teal); color: var(--white); }

.section-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.8px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px; display: block;
}
.section-navy .section-label { color: var(--teal); }

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 18px; letter-spacing: -0.3px;
}
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
p { margin-bottom: 14px; }

/* ── SERVICE CARDS ───────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
  gap: 28px; margin-top: 52px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg); padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(7,30,65,0.055);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 13px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,168,149,0.28);
}
.card-icon svg { width: 26px; height: 26px; fill: var(--white); }
.card-icon.icon-gold { background: linear-gradient(135deg, #D97706, #F59E0B); box-shadow: 0 4px 14px rgba(217,119,6,0.28); }
.card-icon.icon-purple { background: linear-gradient(135deg, #7C3AED, #8B5CF6); box-shadow: 0 4px 14px rgba(124,58,237,0.28); }
.card-icon.icon-green { background: linear-gradient(135deg, #059669, #10B981); box-shadow: 0 4px 14px rgba(5,150,105,0.28); }
.card h3 { color: var(--navy); font-size: 1.05rem; }
.card p { color: #525252; font-size: 0.93rem; line-height: 1.66; }
.card a {
  color: var(--teal); font-weight: 700; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 4px; margin-top: 10px;
  transition: gap var(--transition);
}
.card a:hover { gap: 10px; }
.card-tag {
  display: inline-block; background: #EFF6FF; color: #1E40AF;
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 12px; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase;
}
.card-tag.new { background: #D1FAE5; color: #065F46; }
.card-tag.hot { background: #FEE2E2; color: #991B1B; }

/* ── TWO-COL ─────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child { order: 1; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  background: linear-gradient(140deg, var(--navy) 0%, #0c2d5c 100%);
  padding: 80px 5%;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,168,149,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
  position: relative; z-index: 1;
}
.stat-item h2 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  color: var(--teal); font-weight: 800;
  margin-bottom: 8px; line-height: 1;
  text-shadow: 0 0 30px rgba(0,168,149,0.3);
}
.stat-item p {
  color: rgba(255,255,255,0.68); font-size: 0.83rem;
  text-transform: uppercase; letter-spacing: 1.6px;
  font-weight: 600; margin: 0;
}

/* ── VISION BLOCK ────────────────────────────── */
.vision-block {
  border-left: 4px solid var(--teal);
  padding-left: 22px; margin: 22px 0;
}
.vision-block strong {
  display: block; font-size: 0.82rem;
  color: var(--navy); font-weight: 700;
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px;
}

/* ── OPPORTUNITY BANDS ───────────────────────── */
.opp-band {
  display: flex; align-items: center; gap: 28px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 32px; box-shadow: var(--shadow);
  margin-bottom: 20px; border-left: 5px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.opp-band:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.opp-band.gold { border-left-color: #D97706; }
.opp-band.purple { border-left-color: #7C3AED; }
.opp-band.green { border-left-color: #059669; }
.opp-icon {
  width: 58px; height: 58px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.opp-band.gold .opp-icon { background: linear-gradient(135deg, #D97706, #F59E0B); }
.opp-band.purple .opp-icon { background: linear-gradient(135deg, #7C3AED, #8B5CF6); }
.opp-band.green .opp-icon { background: linear-gradient(135deg, #059669, #10B981); }
.opp-body { flex: 1; }
.opp-body h3 { color: var(--navy); margin-bottom: 4px; }
.opp-body p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.opp-revenue { text-align: right; flex-shrink: 0; }
.opp-revenue strong { display: block; font-size: 1.25rem; color: var(--navy); font-weight: 800; }
.opp-revenue span { font-size: 0.78rem; color: var(--muted); }

/* ── STEPS / HOW WE DO IT ────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 32px; margin-top: 48px; }
.step-card {
  text-align: center; padding: 42px 28px;
  border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(7,30,65,0.055);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%; color: var(--white);
  font-size: 1.45rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 4px 16px rgba(0,168,149,0.36);
}
.step-card h3 { color: var(--navy); margin-bottom: 10px; }
.step-card p { color: #525252; font-size: 0.92rem; }

/* ── OBJECTIVES ──────────────────────────────── */
.objectives-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 40px; }
.objective-card {
  text-align: center; padding: 36px 24px;
  border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.objective-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.objective-card .num { font-size: 2.6rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 10px; }
.objective-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.objective-card p { color: #525252; font-size: 0.92rem; }

/* ── TEAM ────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; margin-top: 40px; }
.team-member {
  text-align: center; background: var(--white);
  border-radius: var(--radius-lg); padding: 32px 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-member:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 86px; height: 86px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem; color: var(--white); font-weight: 700;
  box-shadow: 0 5px 18px rgba(0,168,149,0.36);
}
.team-member h3 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.team-member .role {
  font-size: 0.78rem; color: var(--teal); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 10px;
}
.team-member p { font-size: 0.88rem; color: #525252; }

/* ── PARTNERS ────────────────────────────────── */
.partners-grid { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 40px; }
.partner-item {
  text-align: center; flex: 1; min-width: 130px;
  background: var(--white); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow); border: 1px solid rgba(7,30,65,0.055);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.partner-item:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
  border-color: rgba(0,168,149,0.22);
}
.partner-item h3 { font-size: 1.25rem; color: var(--navy); font-weight: 800; }
.partner-item p { font-size: 0.82rem; color: #777; margin: 4px 0 0; }

/* ── FEATURE LIST ────────────────────────────── */
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 0.95rem; color: #374151;
}
.feature-list li::before {
  content: '✓'; color: var(--teal); font-weight: 800;
  font-size: 1rem; flex-shrink: 0; margin-top: 1px;
}

/* ── QUOTE BLOCK ─────────────────────────────── */
.quote-block {
  background: var(--light); border-radius: var(--radius-lg);
  padding: 36px 40px; border-left: 5px solid var(--teal); margin: 40px 0;
}
.quote-block p { font-size: 1.1rem; font-style: italic; color: var(--navy); margin: 0 0 16px; }
.quote-block cite { font-size: 0.88rem; font-weight: 700; color: var(--muted); }

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 84px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.065) 1px, transparent 1px);
  background-size: 28px 28px;
}
.newsletter h2 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.newsletter p { color: rgba(255,255,255,0.88); margin-bottom: 32px; position: relative; z-index: 1; }
.newsletter-form {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.newsletter-form input[type="email"] {
  padding: 14px 22px; border: none; border-radius: var(--radius);
  font-size: 1rem; width: 340px; max-width: 100%;
  font-family: var(--font-main);
  box-shadow: 0 3px 14px rgba(0,0,0,0.14);
}
.newsletter-form input[type="email"]:focus { outline: none; }
.newsletter-form button {
  background: var(--navy); color: var(--white); border: none;
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 3px 14px rgba(0,0,0,0.2);
}
.newsletter-form button:hover { opacity: 0.88; transform: translateY(-1px); }
.newsletter-form button:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(150deg, var(--navy) 0%, #0c2d5c 100%);
  color: var(--white); padding: 104px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,168,149,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(circle, rgba(0,168,149,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-banner p {
  opacity: 0.82; max-width: 560px; margin: 0 auto 42px;
  font-size: 1.07rem; position: relative; z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
.contact-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,168,149,0.26);
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--white); }
.contact-info-item h3 {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 1.6px; color: #888; margin-bottom: 5px; font-weight: 700;
}
.contact-info-item p { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0; }
.contact-info-item a { color: var(--navy); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--teal); }

.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 50px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(7,30,65,0.06);
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form .sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.77rem; font-weight: 700;
  margin-bottom: 8px; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.9px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #E5E7EB; border-radius: var(--radius);
  font-family: var(--font-main); font-size: 0.95rem;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,149,0.13);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white); border: none;
  padding: 16px 36px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; font-family: var(--font-main);
  cursor: pointer; width: 100%;
  transition: all var(--transition);
  box-shadow: var(--shadow-teal);
  letter-spacing: 0.3px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,168,149,0.46); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: #040d1a; color: var(--white); padding: 72px 5% 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-brand p {
  color: rgba(255,255,255,0.52); font-size: 0.87rem;
  margin-top: 16px; max-width: 280px; line-height: 1.8;
}
footer h4 {
  color: var(--teal); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 2.4px;
  margin-bottom: 18px; font-weight: 700;
}
footer ul li { margin-bottom: 11px; }
footer ul li a { color: rgba(255,255,255,0.58); font-size: 0.88rem; transition: color var(--transition); }
footer ul li a:hover { color: var(--teal); }
footer p, footer a { color: rgba(255,255,255,0.58); font-size: 0.88rem; }
footer a:hover { color: var(--teal); }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: var(--teal); border-color: var(--teal);
  transform: translateY(-2px);
}
.social-links svg { width: 16px; height: 16px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.32); margin: 0; }

/* ── SCROLL-REVEAL ANIMATION ─────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > *:first-child { order: unset; }
  .two-col.reverse > *:last-child { order: unset; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .opp-band { flex-wrap: wrap; }
  .opp-revenue { text-align: left; }
}
@media (max-width: 700px) {
  nav ul {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 5%; gap: 4px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  nav ul.open { display: flex; }
  nav ul li a { padding: 12px 14px; font-size: 14px; border-radius: 8px; }
  .hamburger { display: flex; }
  .hero { padding: 90px 5% 80px; }
  .contact-form { padding: 28px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 72px 5%; }
  .cta-banner { padding: 80px 5%; }
}
