/* ============================================================
   BLUEPRINTED MARKETING — Main Stylesheet
   Structure:
     1. Variables & Reset
     2. Base / Typography
     3. Utility Classes
     4. Navigation
     5. Hero
     6. Buttons
     7. Section Base
     8. Services
     9. Who We Serve
    10. Offers Ladder
    11. Why Blueprinted
    12. Process
    13. Testimonials
    14. Contact & Form
    15. Footer
    16. Animations & Reveal
    17. Responsive
   ============================================================ */

/* ── 1. VARIABLES & RESET ── */
:root {
  --blue: #2A4A7F;
  --blue-dark: #0f1e3d;
  --blue-mid: #1a3260;
  --blue-light: #3a5a9f;
  --yellow: #F5C518;
  --yellow-dark: #d4a800;
  --white: #FFFFFF;
  --neutral: #E8EDF2;
  --text: #4A5568;
  --text-light: #718096;
  --text-dark: #1a202c;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

html { scroll-behavior: smooth; }

/* ── 2. BASE / TYPOGRAPHY ── */
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--blue-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-dark);
}

/* ── 3. UTILITY CLASSES ── */

/* Ambient orb glow */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

/* Blueprint grid overlays */
.bp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 74, 127, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 74, 127, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.bp-grid-light {
  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: 40px 40px;
  pointer-events: none;
}

/* Section background helpers */
.section-light  { background: #f8fafc; }
.section-white  { background: #ffffff; }
.section-dark   { background: var(--blue-dark); }
.section-mid    { background: #0d1a35; }

/* Glass card base — reusable on any dark section */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow: var(--glass-shadow);
  transition: all 0.35s;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

/* Divider line */
.bp-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(42, 74, 127, 0.2) 20%,
    rgba(245, 197, 24, 0.3) 50%,
    rgba(42, 74, 127, 0.2) 80%,
    transparent
  );
}

/* ── 4. NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 30, 61, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(15, 30, 61, 0.88);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 32px; height: 32px;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}

.nav-logo-icon svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--blue-dark) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: all 0.25s !important;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4) !important;
  color: var(--blue-dark) !important;
}

.nav-audit {
  color: var(--yellow) !important;
  font-weight: 600 !important;
  border: 1px solid rgba(245, 197, 24, 0.3);
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.2s !important;
}

.nav-audit:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: var(--yellow);
  color: var(--yellow) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(15, 30, 61, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ── 5. HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--blue-dark);
  overflow: hidden;
  padding: 68px 0 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(42, 74, 127, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(245, 197, 24, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(42, 74, 127, 0.25) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Space Grotesk', sans-serif;
  backdrop-filter: blur(8px);
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

h1.hero-title {
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 820px;
}

h1.hero-title span {
  background: linear-gradient(135deg, #F5C518 0%, #ffd84d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-schematic {
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
  animation: floatSchematic 10s ease-in-out infinite;
}

/* ── 6. BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: #ffd030;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  letter-spacing: 0.01em;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-1px);
}

.btn-audit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.08);
  color: var(--yellow);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid rgba(245, 197, 24, 0.3);
  backdrop-filter: blur(12px);
  letter-spacing: 0.01em;
}

.btn-audit:hover {
  background: rgba(245, 197, 24, 0.14);
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: 0 0 28px rgba(245, 197, 24, 0.2);
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 17px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.01em;
  margin-top: 4px;
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: #ffd030;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 197, 24, 0.4);
}

.btn-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-check-icon svg { width: 16px; height: 16px; }

/* ── 7. SECTION BASE ── */
section { position: relative; overflow: hidden; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--yellow);
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 540px;
}

/* ── 8. SERVICES ── */
#services { background: #f8fafc; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(42, 74, 127, 0.09);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), #ffd84d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover {
  border-color: rgba(42, 74, 127, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(42, 74, 127, 0.11), 0 0 0 1px rgba(245, 197, 24, 0.1);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(42, 74, 127, 0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--yellow);
  transition: background 0.3s;
}

.service-icon svg { width: 24px; height: 24px; }

.service-card:hover .service-icon { background: rgba(42, 74, 127, 0.13); }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── 9. WHO WE SERVE ── */
#serve { background: var(--blue-dark); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.serve-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.serve-card:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(245, 197, 24, 0.3);
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.serve-emoji {
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.serve-emoji svg { width: 26px; height: 26px; }

.serve-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.serve-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.45;
}

/* ── 10. OFFERS LADDER ── */
#offers { background: #f8fafc; }

.ladder-intro {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.ladder-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.ladder-track::before {
  content: '';
  position: absolute;
  left: 40px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow) 0%, rgba(245, 197, 24, 0.15) 100%);
  z-index: 0;
}

.ladder-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid rgba(42, 74, 127, 0.09);
  border-radius: 16px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: all 0.35s;
  overflow: hidden;
}

.ladder-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--yellow);
  opacity: 0;
  transition: opacity 0.3s;
}

.ladder-step:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(42, 74, 127, 0.1), 0 0 0 1px rgba(245, 197, 24, 0.12);
  border-color: rgba(42, 74, 127, 0.2);
}

.ladder-step:hover::before { opacity: 1; }

.ladder-step.featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3260 100%);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: 0 12px 40px rgba(15, 30, 61, 0.25);
}

.ladder-step.featured::before { opacity: 1; }
.ladder-step.featured h3 { color: var(--white); }
.ladder-step.featured p  { color: rgba(255, 255, 255, 0.6); }

.ladder-step.featured .ladder-badge {
  background: rgba(245, 197, 24, 0.15);
  color: var(--yellow);
  border-color: rgba(245, 197, 24, 0.3);
}

.ladder-step.featured .ladder-includes li {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.ladder-num {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.4);
  margin-top: 2px;
}

.ladder-step.featured .ladder-num {
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.5);
}

.ladder-body { flex: 1; }

.ladder-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.ladder-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ladder-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.ladder-includes li {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(42, 74, 127, 0.07);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.01em;
}

.ladder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42, 74, 127, 0.07);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  border: 1px solid rgba(42, 74, 127, 0.15);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ladder-arrow {
  text-align: center;
  padding: 6px 0 4px;
  color: rgba(42, 74, 127, 0.3);
  font-size: 20px;
  position: relative;
  z-index: 2;
}

/* ── 11. WHY BLUEPRINTED ── */
#why { background: #ffffff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(42, 74, 127, 0.09);
  transition: all 0.35s;
}

.why-card:hover {
  box-shadow: 0 12px 40px rgba(42, 74, 127, 0.09);
  transform: translateY(-3px);
  border-color: rgba(42, 74, 127, 0.2);
}

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(42, 74, 127, 0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.why-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── 12. PROCESS ── */
#process { background: #f8fafc; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: rgba(245, 197, 24, 0.35);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  text-align: center;
}

.step-number {
  width: 72px; height: 72px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--yellow);
  border: 4px solid #f8fafc;
  box-shadow: 0 0 0 2px var(--yellow);
  animation: stepGlow 3s ease-in-out infinite;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── 13. TESTIMONIALS ── */
#results { background: #f8fafc; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(42, 74, 127, 0.1);
  box-shadow: 0 4px 24px rgba(42, 74, 127, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.35s;
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(42, 74, 127, 0.12);
}

.tcard-preview {
  display: block;
  position: relative;
  overflow: hidden;
  height: 180px;
  background: #1a3260;
  text-decoration: none;
  flex-shrink: 0;
}

.tcard-preview iframe {
  width: 200%; height: 360px;
  border: none;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
  position: absolute; top: 0; left: 0;
}

.tcard-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26, 50, 96, 0.6));
}

.tcard-badge {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(245, 197, 24, 0.9);
  color: #1a2060;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.05em;
}

.tcard-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tcard-avatar {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.tcard-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.tcard-co   { font-size: 12px; color: var(--text-light); }
.tcard-stars { margin-left: auto; color: #F5C518; font-size: 13px; }

.tcard-quote {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

.tcard-tags {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tcard-tag {
  background: #EFF6FF;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.testimonial-icon {
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-icon svg { width: 48px; height: 48px; }

/* ── 14. CONTACT & FORM ── */
#contact { background: var(--blue-dark); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left h2 {
  color: var(--text-dark);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-left h2 span { color: var(--yellow); }

.contact-left p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-perks { display: flex; flex-direction: column; gap: 12px; }

.contact-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.contact-perk::before {
  content: '';
  width: 22px; height: 22px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M20%206L9%2017L4%2012%27%20fill%3D%27none%27%20stroke%3D%27%23F5C518%27%20stroke-width%3D%272.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(42, 74, 127, 0.12);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(42, 74, 127, 0.08);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(42, 74, 127, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid rgba(42, 74, 127, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(74, 85, 104, 0.45); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group select option { background: var(--white); color: var(--text-dark); }
.form-group textarea { resize: none; height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.sms-consent {
  margin: 4px 0 18px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(42, 74, 127, 0.03), rgba(245, 197, 24, 0.05));
  border: 1px solid rgba(42, 74, 127, 0.12);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-consent-heading {
  font-size: 11px;
  font-weight: 700;
  color: rgba(42, 74, 127, 0.72);
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sms-consent-intro {
  font-size: 13px;
  color: rgba(74, 85, 104, 0.82);
  line-height: 1.65;
  margin: 0;
}

.sms-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(42, 74, 127, 0.12);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.sms-check-row:hover {
  border-color: rgba(42, 74, 127, 0.22);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.sms-check-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.sms-check-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sms-check-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  font-family: 'Space Grotesk', sans-serif;
}

.sms-check-copy span:last-child {
  font-size: 12px;
  color: rgba(74, 85, 104, 0.8);
  line-height: 1.55;
  font-family: 'Barlow', sans-serif;
}

.sms-consent-note,
.sms-consent-meta {
  font-size: 12px;
  color: rgba(74, 85, 104, 0.68);
  line-height: 1.6;
  margin: 0;
}

.sms-consent-note a,
.sms-consent-meta a {
  color: var(--blue);
  text-decoration: underline;
}

.sms-consent-note a:hover,
.sms-consent-meta a:hover { color: var(--blue-dark); }

.sms-proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.sms-proof-card {
  background: var(--white);
  border: 1px solid rgba(42, 74, 127, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 56px rgba(42, 74, 127, 0.08);
}

.sms-proof-card h2,
.sms-proof-card h3 { margin-bottom: 14px; }

.sms-proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 0;
}

.sms-proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.sms-proof-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.18);
  border: 1px solid rgba(245, 197, 24, 0.42);
  margin-top: 2px;
  flex-shrink: 0;
}

.sms-proof-highlight {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(42, 74, 127, 0.05);
  border-left: 3px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}

/* ── 15. FOOTER ── */
footer {
  background: #080f20;
  padding: 32px 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-logo span { color: var(--yellow); }

footer p { font-size: 13px; color: rgba(255, 255, 255, 0.28); }

.footer-contact-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ── 16. ANIMATIONS & REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

@keyframes floatSchematic {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 18px)); }
}

@keyframes stepGlow {
  0%, 100% { box-shadow: 0 0 0 2px var(--yellow), 0 0 0 6px rgba(245, 197, 24, 0.12); }
  50%       { box-shadow: 0 0 0 2px var(--yellow), 0 0 0 14px rgba(245, 197, 24, 0.2); }
}

/* ── 17. RESPONSIVE ── */
@media (max-width: 1000px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}

@media (max-width: 900px) {
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .serve-grid            { grid-template-columns: repeat(2, 1fr); }
  .why-grid              { grid-template-columns: 1fr; }
  .process-steps         { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .contact-inner         { grid-template-columns: 1fr; gap: 40px; }
  .sms-proof-grid        { grid-template-columns: 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: repeat(2, 1fr); }
  .ladder-track::before  { display: none; }
  .ladder-step           { padding: 24px; }
}

@media (max-width: 600px) {
  .services-grid     { grid-template-columns: 1fr; }
  .serve-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats        { gap: 28px; }
  .contact-form      { padding: 28px 20px; }
  .sms-proof-card    { padding: 24px 20px; }
  .sms-consent       { padding: 16px; }
  .hero-ctas         { flex-direction: column; align-items: stretch; }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-glass,
  .hero-ctas .btn-audit { justify-content: center; }
}

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: rgba(10, 20, 50, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 400 !important;
  border: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: white !important;
}

.dropdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 8px 14px 4px;
  font-family: 'Space Grotesk', sans-serif;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 8px;
}

.dropdown-all-link {
  color: var(--yellow) !important;
  font-weight: 600 !important;
}

.nav-links a.nav-active {
  color: var(--white) !important;
  font-weight: 600;
}

/* ── MOBILE MENU ADDITIONS ── */
.mobile-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 12px 0 4px;
  font-family: 'Space Grotesk', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a.mobile-sub {
  padding-left: 20px;
  font-size: 14px;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative;
  padding: calc(68px + 80px) 0 80px;
  overflow: hidden;
}

.page-hero-dark { background: var(--blue-dark); }
.page-hero-light { background: #f8fafc; }
.page-hero-white { background: var(--white); }

/* ── ABOUT HERO SPLIT ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-placeholder {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.about-photo-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 10px;
}

/* ── PRICING TIERS ── */
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 56px auto 0;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(42,74,127,0.1);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(42,74,127,0.1);
  transform: translateY(-2px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3260 100%);
  border-color: rgba(245,197,24,0.35);
  box-shadow: 0 12px 40px rgba(15,30,61,0.2);
}

.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-card.featured .pricing-price { color: var(--yellow); }
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-list li::before { color: var(--yellow); }
.pricing-card.featured .pricing-badge { background: var(--yellow); color: var(--blue-dark); }

.pricing-left { min-width: 200px; flex-shrink: 0; }

.pricing-badge {
  display: inline-block;
  background: rgba(42,74,127,0.08);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(42,74,127,0.15);
}

.pricing-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

.pricing-right { flex: 1; }

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-list li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  top: 1px;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(42,74,127,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(42,74,127,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ── CASE STUDY CARDS ── */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.case-card {
  background: var(--white);
  border: 1px solid rgba(42,74,127,0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42,74,127,0.1);
}

.case-trade {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.case-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.case-stat {
  background: rgba(42,74,127,0.05);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.case-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.case-stat-label { font-size: 13px; color: var(--text-light); }

/* ── SERVICE PAGE 3-COL LAYOUT ── */
.service-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-detail-col {
  background: var(--white);
  border: 1px solid rgba(42,74,127,0.09);
  border-radius: 16px;
  padding: 32px;
}

.service-detail-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
}

.service-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail-list li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.service-detail-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

.service-expect-step {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.service-expect-num {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 13px;
  color: var(--blue-dark);
  margin-top: 1px;
}

.service-expect-step p { font-size: 14px; color: var(--text-light); line-height: 1.55; }

/* ── ADD-ONS ── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.addon-card {
  background: var(--white);
  border: 1px solid rgba(42,74,127,0.09);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.addon-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.addon-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: 1fr; }
  .service-details-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .addons-grid { grid-template-columns: 1fr; }
  .pricing-card { flex-direction: column; gap: 16px; }
  .pricing-left { min-width: 0; }
}

@media (max-width: 600px) {
  .stat-item { padding: 24px 16px; }
  .stat-value { font-size: 28px; }
}

/* ── BTN-OUTLINE (for light backgrounds) ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1.5px solid rgba(42, 74, 127, 0.35);
  letter-spacing: 0.01em;
}

.btn-outline:hover {
  background: rgba(42, 74, 127, 0.07);
  border-color: var(--blue);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

/* ── CLIENT PORTAL NAV LINK ── */
.nav-portal {
  color: rgba(255,255,255,0.7) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.2s !important;
}

.nav-portal:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
}

/* ── NEW FOOTER ── */
.site-footer {
  background: #080f20;
  padding: 64px 5% 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-social:hover { color: var(--yellow); }

.footer-col-head {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-nav-col a,
.footer-contact-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-nav-col a:hover,
.footer-contact-col a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--yellow); }

/* ── CASE STUDY FULL LAYOUT ── */
.case-study-block {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid rgba(42,74,127,0.1);
}

.case-study-block:last-child { border-bottom: none; }

.case-study-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.case-study-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.case-study-section { margin-bottom: 24px; }

.case-study-section h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.case-study-section p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

.case-study-photo {
  background: linear-gradient(135deg, #e8edf2, #f8fafc);
  border-radius: 16px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccd5e0;
  color: #8a9bb0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  position: sticky;
  top: 88px;
}

/* ── TRADES WE SERVE GRID ── */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.trade-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  transition: all 0.25s;
}

.trade-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,197,24,0.35);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .case-study-block { grid-template-columns: 1fr; }
  .case-study-photo { position: static; min-height: 240px; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── HOMEPAGE PLAN CARDS ── */
.hp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

.hp-plan-card {
  background: var(--white);
  border: 1px solid rgba(42,74,127,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hp-plan-card.hp-plan-featured {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(245,197,24,0.15);
}

.hp-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hp-plan-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.hp-plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.hp-plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 6px;
}
.hp-plan-price span { font-size: 14px; font-weight: 400; color: var(--text-light); }
.hp-plan-price small { font-size: 13px; font-weight: 500; color: var(--blue); }

.hp-plan-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(42,74,127,0.08);
}

.hp-plan-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.hp-plan-list li {
  font-size: 14px;
  color: var(--text-light);
  padding: 5px 0 5px 22px;
  position: relative;
}

.hp-plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hp-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
