/* ════════════════════════════════════════════════
   EnergyGasOffers — style.css
   Design: Corporate Trust / Refined Professional
   Fonts: Outfit (display) + DM Sans (body)
   Palette: Deep Navy + Electric Teal + Warm White
════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* Core palette */
  --navy:    #0a1628;
  --navy-2:  #112240;
  --navy-3:  #1a3355;
  --teal:    #0ea5e9;
  --teal-d:  #0284c7;
  --teal-l:  #e0f2fe;
  --amber:   #f59e0b;
  --white:   #ffffff;
  --bg:      #f8fafc;
  --bg-2:    #f0f6ff;
  --ink:     #0f172a;
  --ink-2:   #1e3a5f;
  --ink-3:   #475569;
  --ink-4:   #94a3b8;
  --border:  #e2e8f0;
  /* Shadows */
  --sh-sm: 0 2px 10px rgba(10,22,40,0.07);
  --sh-md: 0 8px 32px rgba(10,22,40,0.10);
  --sh-lg: 0 20px 60px rgba(10,22,40,0.15);
  /* Radii */
  --r:  10px;
  --r-lg: 16px;
  --r-xl: 24px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; }
h1 { font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -1.5px; }
h2 { font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.8px; }
h3 { font-weight: 600; font-size: 1.1rem; }
p { line-height: 1.72; color: var(--ink-3); }

.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.02rem; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section--light { background: var(--bg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.95rem; text-decoration: none;
  padding: 12px 22px; border-radius: var(--r);
  transition: all 0.22s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14,165,233,0.35);
}
.btn-primary:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.45); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--ink-2);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: var(--navy); }

.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-xl { padding: 18px 34px; font-size: 1.05rem; }

.btn-main { display: block; font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.btn-sub  { display: block; font-size: 0.72rem; font-weight: 400; opacity: 0.8; margin-top: 2px; font-family: 'DM Sans', sans-serif; }

/* ── Pulse dot ── */
.dot-live {
  display: inline-block; width: 8px; height: 8px;
  background: #22c55e; border-radius: 50%; flex-shrink: 0;
  position: relative;
}
.dot-live::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; background: #22c55e; opacity: 0.3;
  animation: dotPulse 1.8s infinite;
}
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:0.3} 50%{transform:scale(1.8);opacity:0} }

/* ═══════════════════════
   DISCLAIMER BAR
═══════════════════════ */
.disclaimer-bar {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.disclaimer-bar .container {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.65); font-size: 0.8rem; line-height: 1.5;
}
.disclaimer-bar svg { color: var(--teal); margin-top: 1px; }
.disclaimer-bar strong { color: rgba(255,255,255,0.9); }

/* ═══════════════════════
   NAV
═══════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--sh-md); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.35rem; letter-spacing: -0.5px;
  color: var(--navy) !important; text-decoration: none;
}
.logo span { color: var(--teal); }
.logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.logo--light { color: rgba(255,255,255,0.9) !important; }
.logo--light .logo-icon { background: rgba(255,255,255,0.1); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-3);
  padding: 8px 12px; border-radius: 8px;
  text-decoration: none; transition: all 0.2s;
}
.nav-menu a:hover { background: var(--bg); color: var(--ink); }
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 7px;
  background: var(--teal) !important; color: var(--white) !important;
  font-family: 'Outfit', sans-serif; font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 9px 18px !important; border-radius: var(--r) !important;
  box-shadow: 0 3px 12px rgba(14,165,233,0.3);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--teal-d) !important; box-shadow: 0 5px 18px rgba(14,165,233,0.4); }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.25s;
}

/* ═══════════════════════
   HERO
═══════════════════════ */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 50%, #0d2d4a 100%);
  min-height: 91vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 0 72px;
}

/* Grain texture */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 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");
  background-size: 200px 200px; opacity: 0.5;
}

/* Geometric shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hs {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.12), transparent 70%);
}
.hs1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hs2 { width: 400px; height: 400px; bottom: -100px; right: 200px; background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%); }
.hs3 { width: 300px; height: 300px; top: 50%; left: -80px; background: radial-gradient(circle, rgba(14,165,233,0.08), transparent 70%); }

/* Animated grid lines */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 30%, transparent 80%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 64px; align-items: center;
}

/* Stagger animations */
.hero-eyebrow { animation: fadeUp .5s .06s ease both; }
.hero-text h1  { animation: fadeUp .6s .12s ease both; }
.hero-sub      { animation: fadeUp .6s .20s ease both; }
.hero-actions  { animation: fadeUp .6s .28s ease both; }
.hero-badges   { animation: fadeUp .6s .35s ease both; }
.hero-card-col { animation: fadeUp .7s .15s ease both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem; font-weight: 500;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero-text h1 {
  color: #fff; margin-bottom: 22px;
  line-height: 1.08;
}
.hero-highlight {
  color: var(--teal);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 1.06rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 460px; margin-bottom: 34px;
}
.hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-badges span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500;
}
.hero-badges svg { color: #22c55e; }

/* Hero Card */
.hero-card-col { display: flex; justify-content: flex-end; }
.hero-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  width: 100%; max-width: 360px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.hcard-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg); border-bottom: 1px solid var(--border);
}
.hcard-live { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: #16a34a; }
.hcard-hours { font-size: 0.73rem; color: var(--ink-4); }
.hcard-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--teal-d), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin: 26px auto 16px;
  box-shadow: 0 8px 28px rgba(14,165,233,0.35);
}
.hcard-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-4); text-align: center; margin-bottom: 6px; }
.hcard-number {
  display: block; text-align: center;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2rem;
  color: var(--ink); text-decoration: none; letter-spacing: -0.5px; margin-bottom: 8px;
  transition: color 0.2s;
}
.hcard-number:hover { color: var(--teal); }
.hcard-note { font-size: 0.79rem; color: var(--ink-4); text-align: center; line-height: 1.5; margin-bottom: 0; padding: 0 20px; }
.hcard-stats {
  display: flex; align-items: center; justify-content: space-around;
  padding: 16px 20px; border-top: 1px solid var(--border); margin-top: 20px;
  background: var(--bg);
}
.hcard-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hcs-n { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--teal-d); line-height: 1; }
.hcs-l { font-size: 0.68rem; color: var(--ink-4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.hcs-divider { width: 1px; height: 28px; background: var(--border); }

/* ═══════════════════════
   TRUST STRIP
═══════════════════════ */
.trust-strip {
  background: var(--navy); padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.ts-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.84rem; font-weight: 500;
  padding: 8px 22px;
}
.ts-item svg { color: var(--teal); flex-shrink: 0; }
.ts-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }

/* ═══════════════════════
   SERVICES
═══════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 32px;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 26px;
  position: relative; transition: all 0.28s;
}
.service-card:hover { border-color: var(--teal); box-shadow: var(--sh-md); transform: translateY(-4px); }
.service-card--featured { border-color: var(--teal); background: linear-gradient(145deg, #fff, var(--teal-l)); }
.sc-badge {
  position: absolute; top: -12px; left: 22px;
  background: var(--teal); color: #fff;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 50px;
}
.sc-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--teal-l); display: flex; align-items: center; justify-content: center;
  color: var(--teal-d); margin-bottom: 18px; transition: all 0.28s;
}
.service-card:hover .sc-icon { background: var(--teal); color: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; line-height: 1.65; }
.services-disclaimer {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 20px;
  font-size: 0.84rem; color: var(--ink-3); line-height: 1.6;
}
.services-disclaimer svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════
   CTA SECTIONS
═══════════════════════ */
.cta-section { padding: 72px 0; }

/* CTA 1 — teal */
.cta-teal {
  background: linear-gradient(135deg, var(--teal-d) 0%, var(--teal) 100%);
  position: relative; overflow: hidden;
}
.cta-diagonal {
  position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(170deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-text h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.5rem,3vw,2.1rem); }
.cta-text p { color: rgba(255,255,255,0.75); max-width: 480px; }
.cta-action { display: flex; gap: 14px; flex-wrap: wrap; }

/* CTA 2 — dark stats */
.cta-dark {
  background: var(--navy-2);
  text-align: center;
}
.cta-stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-bottom: 0;
}
.cta-stat { padding: 0 36px; text-align: center; }
.cta-stat-n {
  display: block;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2.4rem;
  color: var(--teal); line-height: 1; margin-bottom: 6px;
}
.cta-stat-l { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.cta-stat-div { width: 1px; height: 52px; background: rgba(255,255,255,0.1); }
.cta-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 40px 0; }
.cta-dark h2 { color: #fff; margin-bottom: 14px; }
.cta-dark p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* CTA 3 — final */
.cta-final {
  background: linear-gradient(145deg, var(--navy) 0%, #0d2847 60%, var(--navy-3) 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-final-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(14,165,233,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cf-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  color: #86efac; font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}

/* ═══════════════════════
   HOW IT WORKS
═══════════════════════ */
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center; padding: 0 16px;
}
.step-num {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 3rem;
  color: var(--border); line-height: 1; margin-bottom: 10px;
}
.step-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--teal-l); display: flex; align-items: center; justify-content: center;
  color: var(--teal-d); margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 10px; font-size: 1rem; }
.step-card p { font-size: 0.88rem; }
.step-connector {
  display: flex; align-items: center; padding: 0 8px; padding-top: 30px;
  color: var(--ink-4); flex-shrink: 0;
}

/* ═══════════════════════
   ABOUT
═══════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.av-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 20px;
  transition: all 0.25s;
}
.av-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.av-card--main {
  grid-column: 1 / -1; text-align: center; padding: 28px 24px;
  border-color: var(--teal); background: var(--teal-l);
}
.av-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  color: #fff; margin: 0 auto 14px;
}
.av-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.av-sub { font-size: 0.82rem; color: var(--ink-3); }
.av-card--stat { text-align: center; }
.av-stat-num {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2rem;
  color: var(--teal-d); line-height: 1; margin-bottom: 4px;
}
.av-stat-label { font-size: 0.78rem; color: var(--ink-3); font-weight: 500; }
.av-card--accent { background: var(--navy); border-color: var(--navy); }
.av-card--accent .av-stat-num { color: var(--teal); }
.av-card--accent .av-stat-label { color: rgba(255,255,255,0.55); }
.av-card--badge {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 10px;
  background: var(--bg); font-size: 0.88rem; font-weight: 600; color: var(--ink-2);
}
.av-card--badge svg { color: #22c55e; flex-shrink: 0; }

.about-content h2 { margin-bottom: 18px; }
.about-content > p { margin-bottom: 14px; }
.about-pillars { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.ap-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r);
  background: var(--bg); border: 1px solid var(--border);
}
.ap-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--teal-l); display: flex; align-items: center; justify-content: center;
  color: var(--teal-d); flex-shrink: 0;
}
.ap-item strong { display: block; font-size: 0.9rem; color: var(--ink); margin-bottom: 4px; }
.ap-item span { font-size: 0.84rem; color: var(--ink-3); }

/* ═══════════════════════
   FAQ
═══════════════════════ */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.faq-left h2 { margin-bottom: 14px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; user-select: none; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  padding: 18px 0; font-weight: 600; font-size: 0.96rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-ico { font-size: 1.5rem; color: var(--teal); font-weight: 300; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem; color: var(--ink-3); line-height: 1.72;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s;
}
.faq-a a { color: var(--teal); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* ═══════════════════════
   CONTACT
═══════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cm-item { display: flex; align-items: flex-start; gap: 14px; }
.cm-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-l); display: flex; align-items: center; justify-content: center;
  color: var(--teal-d); flex-shrink: 0;
}
.cm-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--ink-4); margin-bottom: 3px; }
.cm-val { font-size: 0.92rem; font-weight: 600; color: var(--ink); text-decoration: none; line-height: 1.5; }
.cm-val:hover { color: var(--teal); }
.contact-disc {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.8rem; color: var(--ink-4); line-height: 1.6;
  background: var(--bg); border-radius: var(--r); padding: 14px 16px;
  border: 1px solid var(--border);
}
.contact-disc svg { color: var(--teal); flex-shrink: 0; margin-top: 1px; }

.contact-form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 32px;
  box-shadow: var(--sh-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 0.83rem; font-weight: 600; color: var(--ink-2); display: block; margin-bottom: 6px; }
.form-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 12px 14px; font-size: 0.94rem; font-family: 'DM Sans', sans-serif;
  color: var(--ink); background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.form-input::placeholder { color: var(--ink-4); }
select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-legal { font-size: 0.76rem; color: var(--ink-4); line-height: 1.6; margin-top: 12px; }
.form-success {
  display: none; text-align: center; padding: 20px;
}
.fs-icon { color: #22c55e; margin-bottom: 14px; display: flex; justify-content: center; }
.form-success h3 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
.footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 60px 0 40px;
}
.footer-brand .logo { margin-bottom: 14px; display: flex; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 16px; }
.footer-phone {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--teal) !important; text-decoration: none; display: inline-block;
}
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.86rem; text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-disc {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-disc p { font-size: 0.8rem; color: rgba(255,255,255,0.28); line-height: 1.65; }
.footer-disc strong { color: rgba(255,255,255,0.45); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom span { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════
   MOBILE STICKY BAR
═══════════════════════ */
.mob-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9998; background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.08); padding: 12px 20px;
}
.mob-call-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mob-call-inner > span { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500; }
.mob-call-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 10px 18px; border-radius: var(--r); text-decoration: none;
  box-shadow: 0 3px 12px rgba(14,165,233,0.4); white-space: nowrap;
}

/* ═══════════════════════
   SCROLL ANIMATIONS
═══════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1040px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr 360px; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card-col { order: -1; justify-content: stretch; }
  .hero-card { max-width: 100%; }
  .hero { min-height: auto; padding: 52px 0 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { gap: 28px; }
  .step-connector { display: none; }
  .step-card { min-width: 140px; }
  .mob-call-bar { display: block; }
  body { padding-bottom: 66px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 0 auto; }
  .ts-sep { display: none; }
  .trust-strip-inner { flex-direction: column; gap: 8px; }
}
@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; border-bottom: 2px solid var(--border); padding: 8px 0; box-shadow: var(--sh-md); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 24px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-stats-row { flex-direction: column; gap: 24px; }
  .cta-stat-div { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════
   LEGAL PAGES (privacy, terms, etc.)
═══════════════════════ */
.legal-body { padding: 64px 0 80px; }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.legal-nav { position: sticky; top: 88px; }
.legal-nav h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-4); font-weight: 700; margin-bottom: 12px; }
.legal-nav a { display: block; font-size: 0.86rem; color: var(--ink-3); text-decoration: none; padding: 7px 12px; border-radius: 8px; margin-bottom: 2px; font-weight: 500; transition: all .2s; border-left: 2px solid transparent; }
.legal-nav a:hover { background: var(--teal-l); color: var(--teal-d); border-left-color: var(--teal); }
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 1.4rem; color: var(--navy); margin: 44px 0 12px; padding-top: 44px; border-top: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 20px 0 8px; }
.legal-content p { font-size: 0.95rem; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { font-size: 0.94rem; color: var(--ink-3); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--teal); }
.legal-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; padding: 16px 18px; background: var(--teal-l); border-radius: var(--r); border-left: 3px solid var(--teal); }
.legal-meta-item { font-size: 0.84rem; color: var(--ink-2); }
.legal-meta-item strong { color: var(--navy); }
.legal-highlight { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r); padding: 16px 20px; margin: 16px 0; }
.legal-highlight p { margin: 0; font-size: 0.9rem; }
.legal-warn { background: #fff7ed; border: 1.5px solid #fed7aa; border-radius: var(--r); padding: 16px 20px; margin: 16px 0; }
.legal-warn p { margin: 0; font-size: 0.9rem; color: #92400e; }
@media(max-width:768px) { .legal-layout{grid-template-columns:1fr} .legal-nav{display:none} }
