/* ============================================================
   REVIEWMINIA — Global Stylesheet
   Design System: Navy/Electric Blue, Outfit + Inter fonts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:         #0B1120;
  --color-bg-card:    #1E2839;
  --color-bg-alt:     #F3F4F6;
  --color-blue:       #2563EB;
  --color-blue-dark:  #1D4ED8;
  --color-indigo:     #4338CA;
  --color-emerald:    #059669;
  --color-emerald-lt: #10B981;
  --color-amber:      #D97706;
  --color-text-light: #F9FAFB;
  --color-text-muted: #94A3B8;
  --color-text-slate: #64748B;
  --color-white:      #FFFFFF;
  --color-border:     rgba(255,255,255,0.08);
  --color-border-lt:  rgba(0,0,0,0.08);

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #0B1120 0%, #1E3A5F 100%);
  --grad-cta:    linear-gradient(90deg,  #2563EB 0%, #4338CA 100%);
  --grad-final:  linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  --grad-card:   linear-gradient(145deg, #1E2839 0%, #162032 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  48px;
  --sp-xl:  80px;
  --sp-2xl: 120px;

  /* Borders */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(37,99,235,0.25);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.4);

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
input, textarea, select { font-family: var(--font-body); }

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.15; }

.h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 900; }
.h2 { font-size: clamp(28px, 4vw, 50px); font-weight: 800; }
.h3 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; }
.h4 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; }

.text-gradient {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-md);
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section {
  padding: var(--sp-xl) 0;
}

.section-dark  { background: var(--color-bg); }
.section-card  { background: var(--color-bg-card); }
.section-light { background: var(--color-bg-alt); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-cta);
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-light);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: rgba(37,99,235,0.08);
}

.btn-lg { font-size: 18px; padding: 18px 36px; }
.btn-sm { font-size: 14px; padding: 10px 20px; }

.btn-emerald {
  background: linear-gradient(90deg, #059669, #10B981);
  color: white;
  box-shadow: 0 8px 24px rgba(5,150,105,0.35);
}
.btn-emerald:hover { transform: translateY(-2px); }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.4);
  box-shadow: var(--shadow-glow);
}

.card-light {
  background: white;
  border: 1px solid var(--color-border-lt);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ─── Grid Helpers ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }

/* ─── Flexbox Helpers ────────────────────────────────────── */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { flex-direction: column; }
.gap-sm      { gap: var(--sp-sm); }
.gap-md      { gap: var(--sp-md); }

/* ─── Text Utilities ─────────────────────────────────────── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-muted   { color: var(--color-text-muted); }
.text-blue    { color: var(--color-blue); }
.text-emerald { color: var(--color-emerald-lt); }
.text-amber   { color: var(--color-amber); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }

/* ─── Badge / Chip ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.badge-blue    { background: rgba(37,99,235,0.15); color: #93C5FD; border: 1px solid rgba(37,99,235,0.3); }
.badge-emerald { background: rgba(5,150,105,0.15); color: #6EE7B7; border: 1px solid rgba(5,150,105,0.3); }
.badge-amber   { background: rgba(217,119,6,0.15);  color: #FCD34D; border: 1px solid rgba(217,119,6,0.3); }

/* ─── Section Titles ─────────────────────────────────────── */
.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--sp-lg); }
.section-header p { color: var(--color-text-muted); font-size: 18px; margin-top: var(--sp-sm); line-height: 1.7; }

/* ─── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--sp-lg) 0;
}

/* ─── Icon Box ───────────────────────────────────────────── */
.icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-bottom: var(--sp-sm);
}

/* ─── Star Rating ────────────────────────────────────────── */
.stars { color: #FBBF24; font-size: 18px; letter-spacing: 2px; }

/* ─── Stat Box ───────────────────────────────────────────── */
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 14px; color: var(--color-text-muted); margin-top: 4px; }

/* ─── Form Elements ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--color-text-muted); }

.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--color-text-light);
  font-size: 15px;
  transition: var(--transition);
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-blue);
  background: rgba(37,99,235,0.08);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.form-select option { background: #1E2839; color: white; }

/* ─── Guarantee Box ──────────────────────────────────────── */
.guarantee-box {
  background: linear-gradient(135deg, rgba(5,150,105,0.1), rgba(5,150,105,0.05));
  border: 1.5px solid rgba(5,150,105,0.3);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.guarantee-box .shield { font-size: 48px; flex-shrink: 0; }
.guarantee-box h4 { font-size: 20px; color: var(--color-emerald-lt); margin-bottom: 4px; }
.guarantee-box p  { color: var(--color-text-muted); font-size: 15px; }

/* ─── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  font-size: 14px;
  color: var(--color-text-muted);
}
.trust-bar span { display: flex; align-items: center; gap: 6px; }
.trust-bar .dot { width: 4px; height: 4px; background: var(--color-text-slate); border-radius: 50%; }

/* ─── Accordion / FAQ ────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  padding: var(--sp-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--color-blue); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--color-blue); border-color: var(--color-blue); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: var(--sp-md); }

/* ─── Sticky CTA Bar ─────────────────────────────────────── */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0B1120ee, #1E3A5Fee);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(37,99,235,0.3);
  padding: 14px var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#sticky-bar.visible { transform: translateY(0); }
#sticky-bar p { font-size: 14px; color: var(--color-text-muted); }
#sticky-bar strong { color: var(--color-text-light); }
#sticky-bar-close {
  background: none; border: none;
  color: var(--color-text-muted); font-size: 20px; cursor: pointer;
  line-height: 1; padding: 4px;
}

/* ─── Navigation ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
#nav.scrolled {
  background: rgba(11,17,32,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
}
.nav-logo span { color: var(--color-blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--color-text-light); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none;
  font-size: 15px; font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.nav-dropdown-toggle:hover { color: var(--color-text-light); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: #1E2839;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-sm);
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.nav-dropdown-menu a:hover { background: rgba(37,99,235,0.15); color: var(--color-text-light); }
.nav-dropdown-menu a span { font-size: 18px; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  background: none; border: none;
  color: var(--color-text-light);
  font-size: 26px;
  cursor: pointer;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(11,17,32,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-md);
  flex-direction: column;
  gap: var(--sp-sm);
  z-index: 999;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a, .nav-mobile-menu .mobile-section-title {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  font-weight: 500;
}
.mobile-section-title { color: var(--color-text-slate); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; border-bottom: none !important; padding-bottom: 4px !important; margin-top: 8px; }

/* ─── Hero Particles ─────────────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--color-blue);
  opacity: 0.06;
  animation: float 8s infinite ease-in-out;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ─── Step Connector ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-indigo));
  z-index: 0;
}
.step-item { position: relative; z-index: 1; text-align: center; padding: 0 var(--sp-sm); }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-cta);
  box-shadow: var(--shadow-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin: 0 auto var(--sp-sm);
}
.step-item h4 { font-size: 17px; margin-bottom: 8px; }
.step-item p  { font-size: 14px; color: var(--color-text-muted); }

/* ─── Pricing Cards ──────────────────────────────────────── */
.pricing-card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg) var(--sp-md);
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
  background: linear-gradient(145deg, #1E2839 0%, #1a2d47 100%);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cta);
  color: white; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--radius-pill);
}
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 52px; font-weight: 900;
  color: var(--color-text-light);
  margin: var(--sp-sm) 0 4px;
  line-height: 1;
}
.pricing-card .price sub { font-size: 20px; vertical-align: bottom; }
.pricing-card .price sup { font-size: 24px; }
.pricing-card .per { font-size: 14px; color: var(--color-text-muted); margin-bottom: var(--sp-md); }
.pricing-features { list-style: none; margin: var(--sp-md) 0; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.pricing-features li .check { color: var(--color-emerald-lt); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.pricing-features li .cross { color: var(--color-text-slate); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ─── Testimonial Card ───────────────────────────────────── */
.testimonial-card {
  background: var(--grad-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.testi-quote { font-size: 15px; color: var(--color-text-muted); line-height: 1.8; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: var(--sp-sm); margin-top: auto; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: white;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 15px; }
.testi-role { font-size: 13px; color: var(--color-text-muted); }
.testi-platform { font-size: 12px; color: var(--color-blue); margin-top: 2px; }

/* ─── Before/After Table ─────────────────────────────────── */
.ba-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ba-table thead th {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}
.ba-table thead th.before-col { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.ba-table thead th.after-col  { background: rgba(5,150,105,0.15);  color: #6EE7B7; }
.ba-table tbody tr:nth-child(odd) td.before-col  { background: rgba(239,68,68,0.06); }
.ba-table tbody tr:nth-child(odd) td.after-col   { background: rgba(5,150,105,0.06); }
.ba-table tbody td { padding: 14px 24px; font-size: 15px; border-bottom: 1px solid var(--color-border); }
.ba-table tbody td.before-col { color: #FCA5A5; }
.ba-table tbody td.after-col  { color: #6EE7B7; }
.ba-table tbody tr:last-child td { border-bottom: none; }

/* ─── Logo Strip ─────────────────────────────────────────── */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  opacity: 0.5;
  filter: grayscale(1);
  transition: var(--transition);
}
.logo-strip:hover { opacity: 0.8; filter: grayscale(0.3); }
.logo-strip .logo-item {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-light);
}

/* ─── Process dots ─────────────────────────────────────────── */
.process-connector { display: flex; align-items: center; gap: 0; }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: #060C18;
  border-top: 1px solid var(--color-border);
  padding: var(--sp-xl) 0 var(--sp-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.footer-brand p { color: var(--color-text-muted); font-size: 15px; margin-top: var(--sp-sm); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: var(--sp-sm); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul a:hover { color: var(--color-blue); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-md);
  font-size: 13px;
  color: var(--color-text-slate);
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-socials { display: flex; gap: var(--sp-sm); }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: var(--color-text-muted);
}
.footer-socials a:hover { border-color: var(--color-blue); color: var(--color-blue); background: rgba(37,99,235,0.1); }

/* ─── Scroll animations ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-dropdown { display: none; }
  .nav-hamburger { display: block; }
  .nav-cta { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .guarantee-box { flex-direction: column; text-align: center; }

  #sticky-bar { flex-direction: column; gap: 10px; text-align: center; padding: 14px var(--sp-md) 20px; }
  #sticky-bar p { display: none; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  .ba-table thead th, .ba-table tbody td { padding: 10px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  :root {
    --sp-lg: 36px;
    --sp-xl: 60px;
  }
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(37,99,235,0.3); }
  50%       { box-shadow: 0 0 40px rgba(37,99,235,0.6); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes count-up { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }

.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-count { animation: count-up 0.6s ease-out forwards; }
