/* ============================================================
   SAAS Power Marketing — Global Stylesheet
   Design System: Navy + Electric Blue + Gold
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:       #0A0F2C;
  --navy-mid:   #111827;
  --navy-light: #1e2a4a;
  --blue:       #2563EB;
  --blue-dark:  #1d4ed8;
  --blue-light: #3b82f6;
  --gold:       #F59E0B;
  --gold-dark:  #d97706;
  --white:      #FFFFFF;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --green:      #10b981;
  --red:        #ef4444;
  --purple:     #8b5cf6;

  --gradient-hero:    linear-gradient(135deg, #0A0F2C 0%, #1a2666 50%, #0f1e4e 100%);
  --gradient-blue:    linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  --gradient-gold:    linear-gradient(135deg, #F59E0B 0%, #d97706 100%);
  --gradient-card:    linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);
  --shadow-blue:0 8px 30px rgba(37,99,235,.35);
  --shadow-gold:0 8px 30px rgba(245,158,11,.35);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full:9999px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.text-gradient {
  background: linear-gradient(135deg, #2563EB 0%, #60a5fa 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold {
  color: var(--gold);
}
.text-white { color: var(--white); }
.text-muted  { color: var(--gray-500); }
.text-center { text-align: center; }
.text-sm     { font-size: .875rem; }
.text-lg     { font-size: 1.125rem; }
.font-bold   { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ── Layout Containers ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .overline {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,15,44,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-saas     { color: #fff; }
.logo-power    { color: var(--gold); }
.logo-marketing{ color: rgba(255,255,255,.6); font-weight: 500; font-size: .9em; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after {
  background: rgba(255,255,255,.08);
}
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn-xl { padding: 22px 52px; font-size: 1.2rem; border-radius: var(--radius-md); }

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,.5);
  color: var(--white);
}
.btn-primary:active { transform: translateY(0); }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,158,11,.5);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.btn-secondary {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover {
  gap: 12px;
  color: var(--blue-dark);
}
.btn-ghost::after { display: none; }
.btn-danger {
  background: var(--red);
  color: var(--white);
}
.btn-danger:hover { background: #dc2626; color: var(--white); }

.btn-full { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite reverse;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: .7; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: linear-gradient(135deg, var(--blue), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: white;
  margin-right: -8px;
}
.hero-proof-text { font-size: .9rem; color: rgba(255,255,255,.7); }
.hero-proof-text strong { color: var(--white); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-dashboard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 460px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dash-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-dot.red    { background: #ef4444; }
.dash-dot.yellow { background: var(--gold); }
.dash-dot.green  { background: #10b981; }
.dash-title { margin-left: auto; color: rgba(255,255,255,.5); font-size: .8rem; }

.dash-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.dash-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 16px;
}
.dash-stat-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.dash-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.dash-stat-value.gold { color: var(--gold); }
.dash-stat-value.green { color: #34d399; }

.dash-bar-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.dash-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; margin-bottom: 10px; }
.dash-bar-fill { height: 100%; border-radius: 3px; background: var(--gradient-blue); }
.dash-bar-fill.gold { background: var(--gradient-gold); }

.dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  color: #34d399;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
}
.dash-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100%{ opacity:1; transform:scale(1); }
  50%    { opacity:.5; transform:scale(.8); }
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number .stat-accent { color: var(--gold); }
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-dark {
  background: var(--navy-light);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}

/* ── Service Cards ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37,99,235,.1) 0%, rgba(37,99,235,.05) 100%);
  border: 1px solid rgba(37,99,235,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card .service-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover .service-link { gap: 10px; }

/* ── How It Works ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-hero);
  border: 3px solid var(--blue);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  box-shadow: var(--shadow-blue);
}
.step-card h3 { margin-bottom: 12px; }
.step-card p { color: var(--gray-600); line-height: 1.7; }

/* ── Before / After ─────────────────────────────────────────── */
.before-after {
  background: var(--navy);
  padding: 100px 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.ba-side {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
}
.ba-before {
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
}
.ba-after {
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.15);
}
.ba-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.ba-before .ba-label { background: rgba(239,68,68,.15); color: #f87171; }
.ba-after  .ba-label { background: rgba(16,185,129,.15); color: #34d399; }
.ba-title { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }
.ba-list { display: flex; flex-direction: column; gap: 14px; }
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.ba-item-icon { flex-shrink: 0; margin-top: 3px; font-size: 1rem; }
.ba-before .ba-item-icon { color: #f87171; }
.ba-after  .ba-item-icon { color: #34d399; }
.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  gap: 16px;
}
.ba-vs {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.ba-arrow { color: rgba(255,255,255,.2); font-size: 1.5rem; }

/* ── Pricing Cards ──────────────────────────────────────────── */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}
.pricing-toggle-label { font-weight: 600; color: var(--gray-600); font-size: .95rem; }
.pricing-toggle-label.active { color: var(--navy); }
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 14px;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
input:checked ~ .toggle-slider { background: var(--blue); }
input:checked ~ .toggle-slider::before { transform: translateX(24px); }
.annual-badge {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #059669;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 2px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.04);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}
.pricing-plan-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-dollar { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.pricing-amount { font-size: 3.2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.pricing-period { font-size: .95rem; color: var(--gray-500); }
.pricing-desc {
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700);
}
.pricing-feature i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-wrap {
  position: relative;
  overflow: hidden;
}
.testimonials-carousel {
  display: flex;
  gap: 28px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.testimonial-role { font-size: .82rem; color: var(--gray-500); }
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.carousel-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.15rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-logo { font-size: 1.4rem; font-weight: 900; display: inline-block; margin-bottom: 16px; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,.65);
}
.footer-contact i { color: var(--blue); width: 16px; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  line-height: 1.5;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-control.error { border-color: var(--red); }
.form-control.success { border-color: var(--green); }
.form-error { font-size: .8rem; color: var(--red); margin-top: 4px; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-control-group {
  position: relative;
}
.form-control-group .form-icon {
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray-400);
  font-size: .9rem;
}
.form-control-group .form-control { padding-left: 40px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-check input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--blue); }
.form-check label { font-size: .9rem; color: var(--gray-600); cursor: pointer; }

.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  width: 100%;
  max-width: 460px;
}
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2666 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .nav-logo { font-size: 1.6rem; }
.auth-title { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.auth-subtitle { font-size: .95rem; color: var(--gray-500); margin-bottom: 32px; }
.auth-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0;
  color: var(--gray-400); font-size: .85rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-200);
}
.auth-footer { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--gray-600); }
.auth-footer a { color: var(--blue); font-weight: 600; }

/* ── Dashboard Layout ───────────────────────────────────────── */
.dash-layout {
  display: flex;
  min-height: 100vh;
  background: var(--gray-50);
}
.dash-sidebar {
  width: 260px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}
.dash-sidebar-logo {
  padding: 28px 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dash-sidebar-logo a { font-size: 1.15rem; }
.dash-nav { padding: 20px 12px; flex: 1; }
.dash-nav-section {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 12px 12px 6px;
  margin-top: 8px;
}
.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  font-size: .93rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 2px;
  text-decoration: none;
}
.dash-nav-link i { width: 18px; text-align: center; font-size: .95rem; }
.dash-nav-link:hover {
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.dash-nav-link.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.dash-nav-link.logout { color: rgba(239,68,68,.7); margin-top: 8px; }
.dash-nav-link.logout:hover { background: rgba(239,68,68,.1); color: var(--red); }
.dash-main {
  flex: 1;
  margin-left: 260px;
  min-width: 0;
}
.dash-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0; z-index: 50;
}
.dash-topbar h1 { font-size: 1.4rem; color: var(--navy); }
.dash-user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
}
.dash-user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .85rem;
}
.dash-user-name { font-size: .9rem; font-weight: 600; color: var(--navy); }
.dash-content { padding: 32px; }
.dash-section-title { font-size: 1.25rem; color: var(--navy); margin-bottom: 20px; font-weight: 700; }

.dash-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.dash-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.dash-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.dash-card-icon.blue  { background: rgba(37,99,235,.1); color: var(--blue); }
.dash-card-icon.gold  { background: rgba(245,158,11,.1); color: var(--gold); }
.dash-card-icon.green { background: rgba(16,185,129,.1); color: var(--green); }
.dash-card-icon.purple{ background: rgba(139,92,246,.1); color: var(--purple); }
.dash-card-value { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.dash-card-label { font-size: .83rem; color: var(--gray-500); font-weight: 500; }

/* ── Table ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.table th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
.table td {
  padding: 14px 16px;
  font-size: .9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--gray-50); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.badge-success { background: rgba(16,185,129,.1); color: #065f46; }
.badge-error   { background: rgba(239,68,68,.1); color: #991b1b; }
.badge-blue    { background: rgba(37,99,235,.1); color: #1e40af; }
.badge-gold    { background: rgba(245,158,11,.1); color: #92400e; }
.badge-purple  { background: rgba(139,92,246,.1); color: #5b21b6; }
.badge-gray    { background: var(--gray-100); color: var(--gray-600); }

/* ── Blog ───────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a8a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.2);
  position: relative;
}
.blog-card-category {
  position: absolute;
  bottom: 12px; left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: .8rem; color: var(--gray-400); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); line-height: 1.4; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-author-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gradient-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--white); font-weight: 700;
}
.blog-author-name { font-size: .8rem; color: var(--gray-600); font-weight: 500; }
.read-more { font-size: .85rem; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; }

/* ── Toast Notifications ────────────────────────────────────── */
.toast {
  position: fixed;
  top: 80px; right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  z-index: 9999;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  opacity: 0;
}
.toast.toast-show {
  transform: translateX(0);
  opacity: 1;
}
.toast-success { background: #dcfce7; color: #14532d; border: 1px solid #bbf7d0; }
.toast-error   { background: #fee2e2; color: #7f1d1d; border: 1px solid #fecaca; }
.toast-info    { background: #dbeafe; color: #1e3a8a; border: 1px solid #bfdbfe; }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── Loading Spinner ────────────────────────────────────────── */
.spinner-overlay {
  position: fixed; inset: 0;
  background: rgba(10,15,44,.5);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.spinner-overlay.active { opacity: 1; pointer-events: all; }
.spinner {
  width: 48px; height: 48px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn.loading .btn-spinner { display: block; }
.btn.loading .btn-text { display: none; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon { font-size: 1rem; color: var(--gray-400); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 24px;
  color: var(--gray-600); font-size: .95rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ── Scroll Animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-left.revealed, .reveal-right.revealed { transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
}
.page-hero .overline { color: var(--gold); background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.3); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; position: relative; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 600px; margin: 0 auto; position: relative; }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-icon.gold { background: rgba(245,158,11,.1); color: var(--gold); }
.contact-info-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--navy); }
.calendly-placeholder {
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 32px;
}
.calendly-placeholder i { font-size: 2.5rem; color: var(--gray-300); margin-bottom: 12px; }
.calendly-placeholder p { color: var(--gray-500); }

/* ── About Page ─────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h4 { color: var(--navy); margin-bottom: 10px; }
.value-card p { color: var(--gray-600); font-size: .9rem; line-height: 1.7; }

/* ── Utilities ──────────────────────────────────────────────── */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-0   { margin-bottom: 0; }
.p-0    { padding: 0; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
hr.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 32px 0;
}

/* ── Dark Section Utility ───────────────────────────────────── */
.bg-navy    { background: var(--navy); }
.bg-dark    { background: var(--navy-mid); }
.bg-gray    { background: var(--gray-50); }
.bg-white   { background: var(--white); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual  { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .dash-cards-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .steps-grid     { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .ba-grid        { grid-template-columns: 1fr; }
  .ba-divider     { flex-direction: row; padding: 16px 0; }
  .blog-grid      { grid-template-columns: repeat(2,1fr); }
  .values-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .stat-item      { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    padding: 100px 32px 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.3rem; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
  .nav-actions { flex-direction: column; gap: 12px; margin: 32px 0 0; padding: 0; border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
  .nav-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 36px 24px; }

  /* Dashboard mobile */
  .dash-sidebar {
    transform: translateX(-100%);
    transition: transform .3s;
    z-index: 200;
  }
  .dash-sidebar.open { transform: translateX(0); }
  .dash-main { margin-left: 0; }
  .dash-content { padding: 20px; }
  .dash-cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dash-topbar { padding: 14px 20px; }
}

@media (max-width: 480px) {
  .dash-cards-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
