/* ==========================================================================
   MAVERICK EDGE CO. — MASTER STYLESHEET
   Version: 2.2 | March 2026 | Sachse, TX
   ========================================================================== */

/* ─── 1. RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── 2. DESIGN TOKENS ─── */
:root {
  /* Backgrounds */
  --bg:         #080910;
  --bg-2:       #0C0E1C;

  /* Surfaces */
  --surface:    #10131F;
  --surface-2:  #151929;
  --surface-3:  #1B2035;

  /* Borders */
  --border:     #1E2438;
  --border-2:   #252D45;
  --border-3:   #2E3855;

  /* Text */
  --white:      #EDF0FF;
  --white-2:    #B8C2DE;
  --muted:      #8090B8;

  /* Primary Accent — Blue */
  --blue:       #3D7EFF;
  --blue-2:     #6699FF;
  --blue-3:     #99BBFF;
  --blue-dim:   rgba(61,126,255,0.10);
  --blue-glow:  rgba(61,126,255,0.18);
  --blue-line:  rgba(61,126,255,0.28);

  /* Secondary Accent — Orange */
  --orange:     #FF6B2B;
  --orange-2:   #FF8C55;
  --orange-dim: rgba(255,107,43,0.10);
  --orange-line:rgba(255,107,43,0.28);

  /* Status */
  --green:      #4ADE80;
  --green-dim:  rgba(74,222,128,0.08);
  --green-line: rgba(74,222,128,0.25);
  --red:        #F87171;

  /* Typography */
  --fd: 'Bricolage Grotesque', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-pill: 999px;
}

/* ─── 3. BASE STYLES ─── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Dot grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(61,126,255,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, .display {
  font-family: var(--fd);
  letter-spacing: -0.04em;
}

/* ─── 4. ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes glow {
  0%, 100% { transform: translate(0, 0) scale(1);    opacity: .5; }
  33%       { transform: translate(30px, -20px) scale(1.05); opacity: .8; }
  66%       { transform: translate(-20px, 15px) scale(.97); opacity: .6; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes bPulse {
  0%, 100% { border-color: var(--border-2); }
  50%       { border-color: var(--blue-line); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(61,126,255,0.3); }
  50%       { box-shadow: 0 0 24px rgba(61,126,255,0.6); }
}

/* Scroll animation classes */
/* .fade-up / .fu start hidden; JS adds .visible to trigger animation */
.fade-up, .fu { opacity: 0; }

.fade-up.visible,
.fu.visible {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

/* Legacy stagger classes (d1–d8) — still valid; set --delay via inline style on new work */
.d1 { --delay: .05s; }
.d2 { --delay: .15s; }
.d3 { --delay: .25s; }
.d4 { --delay: .35s; }
.d5 { --delay: .45s; }
.d6 { --delay: .55s; }
.d7 { --delay: .70s; }
.d8 { --delay: .85s; }

/* ─── 5. NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
nav.scrolled {
  background: rgba(8,9,16,.88);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--fb);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-nav {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: var(--white-2);
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  transition: all .15s;
}
.btn-nav:hover { border-color: var(--blue-line); color: var(--blue-2); }
.btn-nav-p {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  background: var(--blue);
  border-radius: var(--r-sm);
  box-shadow: 0 0 18px rgba(61,126,255,.35);
  transition: all .15s;
}
.btn-nav-p:hover {
  background: var(--blue-2);
  box-shadow: 0 0 28px rgba(61,126,255,.5);
  transform: translateY(-1px);
}
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white-2);
  border-radius: 2px;
}

/* ─── 6. HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 68px 0 0;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(61,126,255,.12) 0%, transparent 60%);
  top: -200px; right: -200px;
  animation: glow 10s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,43,.07) 0%, transparent 60%);
  bottom: -100px; left: -100px;
  animation: glow 14s ease-in-out infinite reverse;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 40px 60px;
  display: grid;
  grid-template-columns: 1fr clamp(300px, 32%, 420px);
  gap: 60px;
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 24px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .97;
  color: var(--white);
  margin-bottom: 28px;
}
/* Italic shimmer — padding-right prevents italic clip */
.hero-h1 .accent-blue {
  display: inline-block;
  padding-right: 0.14em;
  color: var(--blue);
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-2) 40%, var(--blue) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-sub {
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 400;
  color: var(--white-2);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  background: var(--blue);
  border-radius: var(--r-md);
  box-shadow: 0 0 28px rgba(61,126,255,.4);
  transition: all .2s;
}
.btn-primary:hover {
  background: var(--blue-2);
  box-shadow: 0 0 40px rgba(61,126,255,.6);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 500;
  color: var(--white-2);
  text-decoration: none;
  padding: 15px 24px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  transition: all .2s;
}
.btn-secondary:hover {
  border-color: var(--blue-line);
  color: var(--blue-3);
  background: var(--blue-dim);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.trust-sep { color: var(--border-3); }

/* ─── 7. HERO CARDS ─── */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  padding-top: 16px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.hero-card:hover { border-color: var(--blue-line); transform: translateY(-2px); }
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,126,255,.3), transparent);
}
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.card-title { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--white); }
/* Minimal status indicators — no pill, no border */
.card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.status-live  { color: var(--green); }
.status-live .status-dot  { background: var(--green); }
.status-building { color: var(--blue-2); }
.status-building .status-dot { background: var(--blue); }
.card-sub  { font-family: var(--fb); font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.card-bar  { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; margin-bottom: 10px; }
.card-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-2)); }
.card-meta { display: flex; gap: 20px; }
.card-stat-val { font-family: var(--fd); font-size: 18px; font-weight: 800; color: var(--blue-2); line-height: 1; }
.card-stat-lab { font-family: var(--fb); font-size: 9px; color: var(--muted); margin-top: 2px; }

.notif-card {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.notif-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-text strong { display: block; font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.notif-text span   { font-family: var(--fb); font-size: 12px; color: var(--muted); }

/* ─── 8. STATS BAR ─── */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(16,19,31,.6);
  backdrop-filter: blur(12px);
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item { padding: 28px 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--blue-2);
}
.stat-val.orange { color: var(--orange); }
.stat-label { font-family: var(--fb); font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ─── 9. SECTIONS (shared) ─── */
.section { position: relative; z-index: 1; padding: 100px 0; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.sec-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.sec-title {
  font-family: var(--fd);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}
.sec-sub {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--white-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 52px;
}

/* ─── 10. SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: border-color .2s, transform .2s;
}
.service-card:hover { border-color: var(--blue-line); transform: translateY(-4px); }
.service-num  { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--muted); margin-bottom: 18px; }
.service-icon {
  width: 44px; height: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { color: var(--blue-2); }
.service-name { font-family: var(--fd); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.service-desc { font-family: var(--fb); font-size: 15px; color: var(--white-2); line-height: 1.7; margin-bottom: 22px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.service-tag::before { content: '↗ '; font-size: 10px; color: var(--blue); }

/* ─── 11. PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.process-step {
  padding: 34px 26px;
  border-right: 1px solid var(--border-2);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .2s;
}
.process-step:nth-child(1)::before { background: var(--blue); }
.process-step:nth-child(2)::before { background: var(--blue-2); }
.process-step:nth-child(3)::before { background: linear-gradient(90deg, var(--blue-2), var(--orange)); }
.process-step:nth-child(4)::before { background: var(--orange); }
.process-step:hover::before { opacity: 1; }
.step-num   { font-family: var(--fd); font-size: 44px; font-weight: 800; color: var(--border-3); line-height: 1; margin-bottom: 14px; }
.step-title { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc  { font-family: var(--fb); font-size: 14px; color: var(--white-2); line-height: 1.65; }

/* ─── 12. PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-color: var(--blue-line); box-shadow: 0 0 50px rgba(61,126,255,.1); }
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}
.pricing-featured-badge {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--blue-dim);
  color: var(--blue-2);
  border: 1px solid var(--blue-line);
  align-self: flex-start;
}
.pricing-retainer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fb);
  font-size: 10px;
  color: var(--orange-2);
  background: var(--orange-dim);
  border: 1px solid var(--orange-line);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.pricing-name  { font-family: var(--fb); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pricing-price { font-family: var(--fd); font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.03em; }
.pricing-price sup { font-size: 16px; vertical-align: super; margin-right: 1px; color: var(--white-2); }
.pricing-freq  { font-family: var(--fb); font-size: 11px; color: var(--muted); margin-top: 4px; margin-bottom: 18px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--white-2);
  line-height: 1.5;
}
.feat-check {
  width: 15px; height: 15px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.btn-pp {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 13px;
  background: var(--blue);
  border-radius: var(--r-md);
  box-shadow: 0 0 18px rgba(61,126,255,.3);
  transition: all .2s;
  margin-top: auto;
}
.btn-pp:hover { background: var(--blue-2); box-shadow: 0 0 28px rgba(61,126,255,.5); transform: translateY(-1px); }
.btn-ps {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-2);
  padding: 13px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  transition: all .2s;
  margin-top: auto;
}
.btn-ps:hover { border-color: var(--blue-line); color: var(--blue-3); background: var(--blue-dim); }

/* ─── 13. ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-body {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--white-2);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.about-stat-card:last-child { margin-bottom: 0; }
.about-stat-card:hover { border-color: var(--blue-line); }
.about-stat-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-stat-icon.orange { background: var(--orange-dim); border-color: var(--orange-line); }
.about-stat-icon.orange svg { color: var(--orange-2); }
.about-stat-icon svg { color: var(--blue-2); }
.about-stat-val   { font-family: var(--fd); font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.02em; }
.about-stat-label { font-family: var(--fb); font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── 14. CTA SECTION ─── */
.cta-section { position: relative; z-index: 1; padding: 80px 0 100px; }
.cta-inner   { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-2), var(--orange), transparent);
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,126,255,.08) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: glow 8s ease-in-out infinite;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.cta-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.cta-title {
  font-family: var(--fd);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-family: var(--fb);
  font-size: 17px;
  color: var(--white-2);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.btn-cta-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  border-radius: var(--r-md);
  box-shadow: 0 0 32px rgba(61,126,255,.45);
  transition: all .2s;
}
.btn-cta-p:hover { background: var(--blue-2); box-shadow: 0 0 48px rgba(61,126,255,.65); transform: translateY(-2px); }
.btn-cta-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  color: var(--white-2);
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  transition: all .2s;
}
.btn-cta-s:hover { border-color: var(--blue-line); color: var(--blue-3); background: var(--blue-dim); }

/* ─── 15. FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-left  { display: flex; align-items: center; gap: 32px; }
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--white-2); }
.footer-right { font-family: var(--fb); font-size: 11px; color: var(--muted); }

/* ─── 16. UTILITY ─── */
/* Hero left column helper (for Brand Board / inner pages) */
.phero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  max-width: 640px;
  position: relative;
  z-index: 5;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Blue highlight text (services page & inner pages) */
.text-blue, .highlight-blue {
  color: var(--blue-2);
  text-shadow: 0 0 20px rgba(61,126,255,0.2);
  letter-spacing: -0.04em;
}

/* ─── 17. RESPONSIVE ─── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .hero-inner { padding: 60px 24px 80px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); padding: 0 24px; }
  .stat-item { padding: 22px 18px; }
  .section-inner { padding: 0 24px; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: repeat(2,1fr); }
  .pricing-grid  { grid-template-columns: repeat(2,1fr); }
  .cta-card { padding: 48px 28px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-left  { flex-direction: column; gap: 14px; }
}
@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 46px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   SERVICES PAGE — NEW COMPONENT STYLES
   Added for services.html and shared inner pages
   ========================================================================== */

/* ─── GLOBAL BUTTON SYSTEM (shared) ─── */
.btn {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  padding: 11px 22px;
  cursor: pointer;
  transition: all 150ms;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}
.btn-solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(61,126,255,0.4);
}
.btn-solid:hover {
  background: var(--blue-2);
  box-shadow: 0 0 28px rgba(61,126,255,0.55);
  transform: translateY(-1px);
}
.btn.btn-secondary {
  background: var(--surface-3);
  color: var(--white-2);
  border: 1px solid var(--border-2);
}
.btn.btn-secondary:hover {
  border-color: var(--blue-line);
  color: var(--blue-3);
}
.btn-ghost {
  background: transparent;
  color: var(--white-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--blue-line);
  color: var(--blue-3);
}
.btn-outline {
  background: transparent;
  color: var(--blue-2);
  border: 1px solid var(--blue-line);
}
.btn-outline:hover { background: var(--blue-dim); }
.btn-sm { font-size: 11px; padding: 8px 16px; border-radius: 7px; }

/* ─── BADGE SYSTEM (shared) ─── */
.badge {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-pill);
}
.badge-blue    { background: var(--blue-dim);    color: var(--blue-2);   border: 1px solid var(--blue-line); }
.badge-orange  { background: var(--orange-dim);  color: var(--orange-2); border: 1px solid var(--orange-line); }
.badge-neutral { background: var(--surface-3);   color: var(--white-2);  border: 1px solid var(--border-2); }
.badge-green   { background: var(--green-dim);   color: var(--green);    border: 1px solid var(--green-line); }

/* ─── SECTION LABEL ─── */
.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.sec-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 80px;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.page-h1 {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.page-sub {
  font-family: var(--fb);
  font-size: 18px;
  color: var(--white-2);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-family: var(--fb);
  font-size: 12px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--white-2); }
.breadcrumb-sep { color: var(--border-3); }
.breadcrumb-current { color: var(--white-2); }
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-nav { display: none; }
}
@media (max-width: 768px) {
  .page-hero { padding: 110px 0 60px; }
  .page-hero-inner { padding: 0 24px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 90px 0 48px; }
  .page-hero-inner { padding: 0 16px; }
}

/* ─── HERO ANCHOR CARDS ─── */
.page-hero-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 100px;
}
.hero-anchor-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: border-color 150ms, transform 150ms;
  cursor: pointer;
}
.hero-anchor-card:hover {
  border-color: var(--blue-line);
  transform: translateX(4px);
}
.hero-anchor-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
}
.hero-anchor-name {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-anchor-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.hero-anchor-arrow {
  margin-left: auto;
  color: var(--muted);
  transition: transform 150ms, color 150ms;
  flex-shrink: 0;
}
.hero-anchor-card:hover .hero-anchor-arrow {
  transform: translateX(4px);
  color: var(--blue-2);
}

/* ─── SERVICE BLOCKS ─── */
.service-block { border-top: 1px solid var(--border); }
.service-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.service-block:nth-of-type(2) .service-block-text { order: 2; }
.service-block:nth-of-type(2) .service-block-visual { order: 1; }
.service-block-label {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--blue-2);
  margin-bottom: 8px;
}
.service-tier-label {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.service-block-body {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--white-2);
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 8px;
}
.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.service-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--white-2);
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-blue   { background: var(--blue-dim);   border: 1px solid var(--blue-line); }
.check-orange { background: var(--orange-dim); border: 1px solid var(--orange-line); }
.check-green  { background: var(--green-dim);  border: 1px solid var(--green-line); }
.service-block-visual-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
@media (max-width: 1024px) {
  .service-block-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-block:nth-of-type(2) .service-block-text { order: 1; }
  .service-block:nth-of-type(2) .service-block-visual { order: 2; }
}
@media (max-width: 768px) {
  .service-block-grid { padding: 56px 0; }
}
@media (max-width: 480px) {
  .service-block-grid { padding: 40px 0; gap: 24px; }
}

/* ─── FAQ ACCORDION ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: color 150ms;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--blue-2); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--white-2);
  line-height: 1.7;
}
@media (max-width: 480px) {
  .faq-item.open .faq-answer { max-height: 400px; }
  .faq-question { padding: 16px 16px; font-size: 13px; }
  .faq-answer { padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 16px; }
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-strip-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}
.cta-strip-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-strip {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .cta-strip-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-strip-btns .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .cta-strip { padding: 24px 16px; }
}

/* ==========================================================================
   SERVICES PAGE ADDITIONS — append to bottom of styles.css
   Fixes: eyebrow, page-h1 accent, service block reverse, faq-container border,
   and all visual card (.vc-*) internals replacing the old inline styles.
   ========================================================================== */

/* ─── EYEBROW (page-level, shared across inner pages) ─── */
/* The hero version is .hero-eyebrow — this is the lighter variant used in page heroes */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 20px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-2);
}

/* ─── PAGE H1 ITALIC ACCENT ─── */
.ph1-accent {
  color: var(--blue-2);
  font-style: italic;
}

/* ─── SERVICE BLOCK REVERSE LAYOUT ─── */
/* Replaces the broken :nth-of-type(2) approach.
   Add class="service-block--reverse" to Block 2 in HTML. */
.service-block--reverse .service-block-text  { order: 2; }
.service-block--reverse .service-block-visual { order: 1; }
/* Reset on mobile — always text first */
@media (max-width: 1024px) {
  .service-block--reverse .service-block-text  { order: 1; }
  .service-block--reverse .service-block-visual { order: 2; }
}

/* ─── FAQ CONTAINER ─── */
/* Remove the inline style="border:..." from the HTML — this handles it */
.faq-container {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

/* ─── CTA STRIP BUTTON FIX ─── */
/* btn-primary / btn-secondary are already defined but need explicit sizing 
   in the cta-strip context to match the strip height */
.cta-strip .btn-primary,
.cta-strip .btn-secondary {
  white-space: nowrap;
}

/* ==========================================================================
   VISUAL CARD INTERNALS (.vc-*)
   These replace all the inline style="" blocks in the service block visuals.
   ========================================================================== */

/* ─── SECTION LABEL inside visual cards ─── */
.vc-section-label {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ─── BROWSER CHROME (Block 1 — Design) ─── */
.vc-browser {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.vc-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.vc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.vc-red    { background: #FF5F57; }
.vc-yellow { background: #FFBD2E; }
.vc-green  { background: #28C840; }
.vc-url {
  flex: 1;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--fb);
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ─── PAGE CHECKLIST (Block 1 — Design) ─── */
.vc-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.vc-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--white-2);
}

/* ─── STATS GRID (Block 1 — Design) ─── */
.vc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vc-stat {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 14px;
}
.vc-stat-val {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-2);
  line-height: 1;
  letter-spacing: -.02em;
}
.vc-stat-label {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── LAUNCH TIMELINE (Block 2 — Build) ─── */
.vc-timeline {
  display: flex;
  flex-direction: column;
}
.vc-tl-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.vc-tl-step--last {
  border-bottom: none;
}
.vc-tl-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 700;
  color: var(--blue-2);
  flex-shrink: 0;
}
.vc-tl-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vc-tl-desc {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--muted);
}

/* ─── PROGRESS BARS (Block 3 — Grow) ─── */
.vc-progress-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.vc-progress-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vc-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vc-progress-name {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--white-2);
}
.vc-progress-val {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
}
.vc-val-blue  { color: var(--blue-2); }
.vc-val-green { color: var(--green); }
.vc-progress-track {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.vc-progress-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}
.vc-fill-blue  { background: linear-gradient(90deg, var(--blue), var(--blue-2)); }
.vc-fill-green { background: var(--green); }

/* ─── DIVIDER inside visual cards ─── */
.vc-rule {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* ─── WEEK CHECKLIST (Block 3 — Grow) ─── */
.vc-weeks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vc-week-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vc-week-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vc-dot-done   { background: var(--green); }
.vc-dot-active { background: var(--blue); animation: pulse 2s infinite; }
.vc-week-label {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  color: var(--white-2);
  min-width: 52px;
}
.vc-week-desc {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--muted);
}
/* ==========================================================================
   MAVERICK EDGE CO. — CSS ADDITIONS v2 (append to bottom of styles.css)
   Covers: services editorial hero, colored service block borders,
   orange service card variant, and all .vc-* visual card internals.
   ========================================================================== */


/* ─── SERVICES EDITORIAL HERO ─── */
.svc-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.svc-hero-glow-blue {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(61,126,255,0.11) 0%, transparent 65%);
  top: -200px; right: -180px;
  animation: glow 12s ease-in-out infinite;
  pointer-events: none;
}
.svc-hero-glow-orange {
  position: absolute;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255,107,43,0.07) 0%, transparent 65%);
  bottom: -60px; left: -120px;
  animation: glow 16s ease-in-out infinite reverse;
  pointer-events: none;
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Three-word stacked display headline */
.svc-h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--fd);
  font-size: clamp(64px, 9vw, 116px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.svc-word { display: block; }
.svc-word-design { color: var(--white); }
.svc-word-build  {
  color: var(--blue-2);
  text-shadow: 0 0 60px rgba(61,126,255,0.25);
}
.svc-word-grow   {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255,107,43,0.2);
}

.svc-hero-sub {
  font-family: var(--fb);
  font-size: 18px;
  color: var(--white-2);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
}

/* ─── TIER TILES (hero navigation to each service section) ─── */
.svc-tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 900px;
}
.svc-tier-tile {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  text-decoration: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}
.svc-tier-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transition: opacity 0.2s;
}
.svc-tier-tile:hover {
  transform: translateY(-4px);
}

/* Blue tile */
.svc-tile-blue { border-color: var(--border-2); }
.svc-tile-blue::before { background: var(--blue); }
.svc-tile-blue:hover { border-color: var(--blue-line); }

/* Gradient tile */
.svc-tile-gradient::before { background: linear-gradient(90deg, var(--blue-2), var(--orange)); }
.svc-tile-gradient:hover { border-color: rgba(255,107,43,0.2); }

/* Orange tile */
.svc-tile-orange { border-color: var(--border-2); }
.svc-tile-orange::before { background: var(--orange); }
.svc-tile-orange:hover { border-color: var(--orange-line); }

.stt-num {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.stt-name {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.stt-price {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-2);
  margin-bottom: 6px;
}
.svc-tile-orange .stt-price { color: var(--orange-2); }
.svc-tile-gradient .stt-price { color: var(--blue-2); }
.stt-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .svc-hero { padding: 110px 0 64px; }
  .svc-hero-inner { padding: 0 24px; }
  .svc-tier-row { grid-template-columns: 1fr; max-width: 100%; }
  .svc-h1 { font-size: clamp(52px, 14vw, 80px); }
}
@media (max-width: 480px) {
  .svc-hero { padding: 90px 0 48px; }
  .svc-hero-inner { padding: 0 16px; }
}

/* ─── SERVICE BLOCK COLORED TOP BORDERS ─── */
/* Mirrors the voice-card accent pattern in the brand board */
.service-block { border-top: 1px solid var(--border); position: relative; }
.service-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-block--design::before  { background: var(--blue); opacity: 1; }
.service-block--build::before   { background: linear-gradient(90deg, var(--blue-2), var(--orange)); opacity: 1; }
.service-block--grow::before    { background: var(--orange); opacity: 1; }

/* ─── SERVICE BLOCK LABEL COLOR VARIANTS ─── */
.service-block-label--blue     { color: var(--blue-2); }
.service-block-label--gradient {
  background: linear-gradient(90deg, var(--blue-2), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.service-block-label--orange   { color: var(--orange-2); }


/* ─── ORANGE VARIANT FOR SERVICE CARD (electrical) ─── */
.service-card--orange:hover { border-color: var(--orange-line); }
.service-icon--orange {
  background: var(--orange-dim);
  border-color: var(--orange-line);
}
.service-icon--orange svg { color: var(--orange-2); }

/* ─── CONTACT SECTION ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
.contact-left { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.contact-direct { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.contact-phone { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.contact-phone:hover { color: var(--blue-2); }
.contact-or { color: var(--muted); font-size: 12px; }
.contact-email { color: var(--blue-2); font-size: 13px; text-decoration: none; }
.contact-email:hover { color: var(--blue-3); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 500; color: var(--white-2); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 8px;
  padding: 10px 14px; color: var(--white); font-family: var(--fb); font-size: 13px;
  outline: none; transition: border-color 0.15s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-line); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 80px; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .cta-title { font-size: clamp(24px, 5vw, 36px); }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── LINE REVEAL ANIMATION ─── */
.rl-wrap {
  display: block;
  overflow: hidden;
  line-height: 1.05;
  padding-bottom: 0.08em;
}
.rl-line {
  display: block;
  transform: translateY(110%);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.rl-line.rl-visible {
  transform: translateY(0);
}

/* ─── HERO RESPONSIVE FIXES ─── */
/* Hide right cards column below 960px (zoomed in or tablet) */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-cards { display: none; }
}

/* Tighten hero padding on mid viewports */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr clamp(260px, 38%, 380px);
    gap: 40px;
  }
}

/* Prevent weird dead-space zoom-out at very wide viewports */
.hero { min-height: 100svh; }

/* ─── TARGETED FIXES ─── */
.form-group select { padding-right: 40px; }
button.btn-cta-p { border: none; cursor: pointer; }

/* ─── CUSTOM SELECT DROPDOWN ─── */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238090B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ─── FOOTER RESTRUCTURE ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  justify-content: center;
}
.footer-links a {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--white-2); }
.footer-bottom {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--muted);
}

/* ─── PRICING CARD FEATURED — ANIMATED BORDER TRAIL ─── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes trailSpin {
  to { --angle: 360deg; }
}
.pricing-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--angle),
      transparent 70%,
      var(--blue) 80%,
      var(--blue-2) 87%,
      #a8c8ff 90%,
      var(--blue) 95%,
      transparent
    ) border-box;
  animation: trailSpin 4s linear infinite;
}
/* Remove the old blue top edge */
.pricing-card.featured::before { display: none; }

/* ─── PRICING BADGE — ABSOLUTE TOP RIGHT (21st.dev pattern) ─── */
.pricing-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pricing-retainer-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  color: var(--orange-2);
  background: var(--orange-dim);
  border: 1px solid var(--orange-line);
  border-radius: 6px;
  padding: 3px 8px;
}
/* Cards with absolute badges need relative positioning */
.pricing-card { position: relative; }

/* ─── STAT CITIES LABEL ─── */
.stat-cities { white-space: nowrap; font-size: 12px; line-height: 1.8; }

/* ─── PLAN INDICATOR IN FORM ─── */
.plan-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 13px;
}
.plan-indicator-label { color: var(--muted); }
.plan-indicator-name { color: var(--blue-2); font-weight: 600; flex: 1; }
.plan-clear {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  padding: 0 2px;
  line-height: 1;
}
.plan-clear:hover { color: var(--white); }

/* ─── RETAINER CHECKBOX ─── */
.retainer-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  transition: border-color .15s;
}
.retainer-check:hover { border-color: var(--blue-line); }
.retainer-check input[type="checkbox"] { display: none; }
.retainer-check-box {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  background: var(--bg-2);
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.retainer-check input:checked + .retainer-check-box {
  background: var(--blue);
  border-color: var(--blue);
}
.retainer-check input:checked + .retainer-check-box::after {
  content: '';
  width: 8px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.retainer-check-label {
  font-size: 13px;
  color: var(--white-2);
  line-height: 1.5;
}

/* ─── STANDARD CARD IS NOW FEATURED ─── */
.pricing-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--angle),
      transparent 70%,
      var(--blue) 80%,
      var(--blue-2) 87%,
      #a8c8ff 90%,
      var(--blue) 95%,
      transparent
    ) border-box;
  animation: trailSpin 4s linear infinite;
}

/* ─── FEATURED CARD GLOW (Edge plan) ─── */
.pricing-card.featured {
  box-shadow: 0 0 40px rgba(61,126,255,0.15), 0 0 80px rgba(61,126,255,0.06);
}

/* ─── CUSTOM ANIMATED DROPDOWN ─── */
.cs-wrap {
  position: relative;
  width: 100%;
  user-select: none;
}
.cs-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-family: var(--fb);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s;
  outline: none;
}
.cs-trigger:hover,
.cs-wrap.open .cs-trigger { border-color: var(--blue-line); }
.cs-value { color: var(--muted); transition: color 0.15s; }
.cs-value.selected { color: var(--white); }
.cs-arrow {
  color: var(--muted);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.cs-wrap.open .cs-arrow { transform: rotate(180deg); }

.cs-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  overflow: hidden;
  z-index: 50;
  opacity: 0;
  transform: translateY(-8px) scaleY(0.95);
  transform-origin: top;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-wrap.open .cs-panel {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: all;
}

.cs-option {
  padding: 10px 14px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--white-2);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  opacity: 0;
  transform: translateY(-4px);
}
.cs-wrap.open .cs-option {
  opacity: 1;
  transform: translateY(0);
  transition: background 0.12s, color 0.12s,
              opacity 0.18s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Stagger each option */
.cs-wrap.open .cs-option:nth-child(1)  { transition-delay: 0.02s; }
.cs-wrap.open .cs-option:nth-child(2)  { transition-delay: 0.04s; }
.cs-wrap.open .cs-option:nth-child(3)  { transition-delay: 0.06s; }
.cs-wrap.open .cs-option:nth-child(4)  { transition-delay: 0.08s; }
.cs-wrap.open .cs-option:nth-child(5)  { transition-delay: 0.10s; }
.cs-wrap.open .cs-option:nth-child(6)  { transition-delay: 0.12s; }
.cs-wrap.open .cs-option:nth-child(7)  { transition-delay: 0.14s; }
.cs-wrap.open .cs-option:nth-child(8)  { transition-delay: 0.16s; }
.cs-wrap.open .cs-option:nth-child(9)  { transition-delay: 0.18s; }
.cs-wrap.open .cs-option:nth-child(10) { transition-delay: 0.20s; }
.cs-wrap.open .cs-option:nth-child(11) { transition-delay: 0.22s; }
.cs-wrap.open .cs-option:nth-child(12) { transition-delay: 0.24s; }

.cs-option:hover { background: var(--surface-2); color: var(--white); }
.cs-option:first-child { color: var(--muted); }
.cs-option.cs-selected {
  color: var(--blue-2);
  background: var(--blue-dim);
}
.cs-option + .cs-option {
  border-top: 1px solid var(--border);
}

/* ─── DROPDOWN PANEL SCROLL FIX ─── */
.cs-panel {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.cs-panel::-webkit-scrollbar { width: 4px; }
.cs-panel::-webkit-scrollbar-track { background: transparent; }
.cs-panel::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

/* Match dropdown text exactly to form input text */
.cs-trigger,
.cs-option {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.cs-option { padding: 11px 14px; }
.cs-option:focus-visible { outline: none; background: var(--surface-2); }

/* Keyboard-focused option highlight */
.cs-option.cs-focused {
  background: var(--surface-2);
  color: var(--white);
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY CONSOLIDATION
   Scale: 10px tiny | 12px caption | 14px body | 17px large body
   ══════════════════════════════════════════════ */

/* ── 12px: captions, metadata, secondary labels ── */
.stat-label,
.trust-item,
.card-sub,
.footer-links a,
.footer-bottom,
.notif-text span,
.contact-or,
.about-stat-label { font-size: 12px; }

/* ── 14px: all standard UI + body copy ── */
.nav-links a,
.btn-nav,
.btn-nav-p,
.service-desc,
.step-desc,
.pricing-features li,
.faq-answer p,
.form-group input,
.form-group textarea,
.form-group label,
.cs-trigger,
.cs-option,
.contact-email,
.retainer-check-label,
.plan-indicator,
.about-body { font-size: 14px; }

/* ── Unify button sizes ── */
.btn-primary,
.btn-secondary,
.btn-cta-p,
.btn-cta-s,
.btn-pp,
.btn-ps { font-size: 14px; }

/* ── 15px → 14px cleanup ── */
.service-desc { font-size: 14px; }
.sec-sub { font-size: 17px; }
.hero-sub { font-size: 18px; }

/* ── 10px: tiny labels only ── */
.sec-eyebrow,
.cta-eyebrow,
.hero-eyebrow,
.nav-logo-sub,
.service-num,
.pricing-name,
.pricing-freq { font-size: 11px; }

/* ── Pricing name should be readable ── */
.pricing-name {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════
   TEXT SIZE BUMP +1-2px across all tiers
   ══════════════════════════════════════════════ */

/* 12px captions → 13px */
.stat-label,
.trust-item,
.card-sub,
.footer-links a,
.footer-bottom,
.notif-text span,
.contact-or,
.about-stat-label { font-size: 13px; }

/* 14px body → 15px */
.nav-links a,
.btn-nav,
.btn-nav-p,
.service-desc,
.step-desc,
.pricing-features li,
.faq-answer p,
.form-group input,
.form-group textarea,
.form-group label,
.cs-trigger,
.cs-option,
.contact-email,
.retainer-check-label,
.plan-indicator,
.about-body { font-size: 15px; }

.btn-primary,
.btn-secondary,
.btn-cta-p,
.btn-cta-s,
.btn-pp,
.btn-ps { font-size: 15px; }

/* 17px large body → 18px */
.sec-sub { font-size: 18px; }

/* hero-sub stays 18px — already good */

/* ══════════════════════════════════════════════
   PRO CARD BORDER FIX
   Show the normal card border + animated glow trail on top
   ══════════════════════════════════════════════ */
.pricing-card.featured {
  /* Normal visible border like the other cards */
  border: 1px solid var(--border-2);
  /* Glow shadow to make it pop */
  box-shadow:
    0 0 0 1px var(--border-2),
    0 0 32px rgba(61,126,255,0.18),
    0 0 80px rgba(61,126,255,0.08);
  /* Reset background to just the surface — trail handled by pseudo */
  background: var(--surface);
}

/* Animated border trail as a separate pseudo-element overlay */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    transparent 70%,
    rgba(61,126,255,0.9) 80%,
    rgba(102,153,255,1) 87%,
    rgba(168,200,255,0.8) 90%,
    rgba(61,126,255,0.6) 94%,
    transparent
  );
  z-index: 0;
  animation: trailSpin 4s linear infinite;
  pointer-events: none;
  /* Use mask to only show the border edge, not fill */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

/* Ensure Pro card children sit above the ::after trail overlay */
.pricing-card.featured > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   PRICING CARD — DEFINITIVE FIX
   ══════════════════════════════════════════════ */

/* Badge: force absolute, high specificity */
.pricing-card .pricing-featured-badge {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

/* Remove overflow:hidden from base card so ::after trail isn't clipped */
.pricing-card { overflow: visible; }

/* Pro card: base border always visible + animated spotlight sweeping over it */
.pricing-card.featured {
  background: var(--surface);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px var(--border-2),
    0 0 32px rgba(61,126,255,0.18),
    0 0 80px rgba(61,126,255,0.07);
  animation: none;
  position: relative;
}

/* Kill previous ::after/::before conflicts */
.pricing-card.featured::before { display: none !important; }

/* Trail as ::after — sits outside the card edge */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--angle),
    var(--border-2) 0%,
    var(--border-2) 68%,
    var(--blue) 78%,
    var(--blue-2) 85%,
    rgba(168,200,255,0.95) 89%,
    var(--blue) 93%,
    var(--border-2) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: trailSpin 4s linear infinite;
  z-index: 0;
  pointer-events: none;
  border-radius: var(--r-lg);
}

/* All card children above the trail */
.pricing-card.featured > * { position: relative; z-index: 1; }

/* Consistent top padding on all cards so price aligns uniformly */
.pricing-card { padding-top: 22px; }

/* ══════════════════════════════════════════════
   GLOBAL CONSISTENCY PASS
   One source of truth for radius, spacing,
   transitions, hovers, borders
   ══════════════════════════════════════════════ */

/* ── Radius tokens (re-locked) ── */
:root {
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-pill: 999px;
  /* Single card radius used everywhere */
  --r-card: 16px;
  /* Transition standard */
  --t-fast: 0.15s ease;
  --t-med:  0.2s cubic-bezier(0.22, 1, 0.36, 1);
  /* Card padding standard */
  --card-pad: 24px;
  /* Hover lift standard */
  --lift: translateY(-3px);
}

/* ── All cards: unified radius, padding, border, transition ── */
.hero-card,
.service-card,
.pricing-card,
.about-stat-card,
.notif-card,
.plan-indicator,
.retainer-check,
.cta-card {
  border-radius: var(--r-card);
  border-color: var(--border-2);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

/* ── Card padding unified ── */
.hero-card    { padding: var(--card-pad); }
.service-card { padding: var(--card-pad) var(--card-pad); }
.pricing-card { padding: var(--card-pad); }
.about-stat-card { padding: var(--card-pad); }

/* ── Hover lift unified — all cards lift the same amount ── */
.hero-card:hover,
.service-card:hover,
.about-stat-card:hover {
  transform: var(--lift);
  border-color: var(--blue-line);
}

/* ── Process grid: unified radius ── */
.process-grid { border-radius: var(--r-card); }
.process-step { padding: 28px var(--card-pad); }

/* ── Icon containers: consistent small radius ── */
.service-icon,
.notif-icon,
.about-stat-icon {
  border-radius: var(--r-sm);
}

/* ── Input fields: consistent radius ── */
.form-group input,
.form-group textarea,
.cs-trigger,
.cs-panel { border-radius: var(--r-sm); }

/* ── Buttons: consistent radius ── */
.btn-primary,
.btn-secondary,
.btn-nav,
.btn-nav-p,
.btn-ps,
.btn-pp,
.btn-cta-p,
.btn-cta-s { border-radius: var(--r-sm); }

/* ── Badges and small chips: consistent ── */
.pricing-featured-badge,
.card-status,
.plan-indicator { border-radius: var(--r-xs); }

/* ── Transitions unified on interactive elements ── */
.btn-primary,
.btn-secondary,
.btn-nav,
.btn-nav-p,
.btn-ps,
.btn-pp,
.btn-cta-p,
.btn-cta-s,
.nav-links a,
.footer-links a { transition: all var(--t-fast); }

/* ── ANIMATED BORDER TRAIL — corner fix ──
   inset: -1px means ::after is 1px larger on each side.
   Its border-radius must match the card radius exactly (not +1px,
   because the mask technique handles the edge). */
.pricing-card.featured::after {
  border-radius: var(--r-card);
  inset: -1px;
}

/* ── CTA card consistent ── */
.cta-card {
  border-radius: var(--r-card);
  padding: 60px 48px;
}

/* ── Contact form inputs match ── */
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  border-radius: var(--r-sm);
  border-color: var(--border-2);
}

/* ── Notif card matches hero cards ── */
.notif-card { padding: 16px var(--card-pad); }

/* ── Progress bar: consistent tiny radius ── */
.card-bar,
.card-fill { border-radius: 2px; }

/* ── Stats bar items: consistent padding ── */
.stat-item { padding: 28px var(--card-pad); }

/* ── Smooth scroll ── */
html { scroll-behavior: smooth; }

/* ── Mobile nav open state ── */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }

  .nav-menu-btn { display: flex; }

  nav.open .nav-links,
  nav.open .nav-cta {
    display: flex;
  }

  nav.open {
    position: fixed;
    inset: 0;
    flex-direction: column;
    background: var(--bg);
    z-index: 200;
    align-items: center;
    justify-content: center;
  }

  nav.open .nav-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
  }

  nav.open .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  nav.open .nav-links a {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
  }

  nav.open .nav-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
  }

  nav.open .btn-nav,
  nav.open .btn-nav-p {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* X icon when open */
  nav.open .nav-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.open .nav-menu-btn span:nth-child(2) { opacity: 0; }
  nav.open .nav-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
