/* ===========================
   KLICKKK HOST – STYLESHEET
   =========================== */

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

:root {
  --primary: #0c0c0b;
  --primary-dark: #000000;
  --primary-light: #2e2e2c;
  --wp-purple: #21759b;
  --wp-blue: #3858e9;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-subtle: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 32px 64px rgba(0,0,0,.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font: 'Inter', system-ui, sans-serif;
  --header-h: 70px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.gradient-text {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--text-light) !important; }
.text-green { color: var(--success) !important; }
.text-red { color: var(--danger) !important; }

.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12,12,11,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--bg-alt); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn--wp {
  background: linear-gradient(135deg, #21759b, #3858e9);
  color: #fff;
  border-color: transparent;
}
.btn--wp:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(33,117,155,.35);
}

.btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,255,255,.3);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn--lg { padding: 14px 32px; font-size: 15px; }

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
}

.logo__accent { color: var(--primary); }

.nav { display: flex; justify-content: center; }

.nav__list {
  display: flex;
  gap: 4px;
}

.nav__link {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--primary);
  background: rgba(12,12,11,.06);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* Overlay behind slide-out menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Close button inside slide-out nav (hidden on desktop) */
.nav__close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.nav__close:hover { background: var(--border); color: var(--text); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, #f2f2f2 50%, #fff 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #c8c8c6, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #67e8f9, transparent 70%);
  bottom: 0;
  left: -80px;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .5;
}

.hero__inner {
  position: relative;
  text-align: center;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(12,12,11,.07);
  border: 1px solid rgba(12,12,11,.18);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero__badge i { color: var(--warning); }

.hero__title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i { color: var(--success); font-size: 15px; }

/* Stats bar */
.hero__stats {
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.04);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-number span { font-size: 24px; }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(12,12,11,.07);
  border: 1px solid rgba(12,12,11,.15);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.wp-tag {
  background: rgba(33,117,155,.08);
  border-color: rgba(33,117,155,.2);
  color: var(--wp-blue);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   FEATURES
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-icon--blue   { background: rgba(99,102,241,.12); color: #6366f1; }
.feature-icon--purple { background: rgba(168,85,247,.12); color: #a855f7; }
.feature-icon--green  { background: rgba(16,185,129,.12); color: #10b981; }
.feature-icon--orange { background: rgba(249,115,22,.12); color: #f97316; }
.feature-icon--pink   { background: rgba(236,72,153,.12); color: #ec4899; }
.feature-icon--teal   { background: rgba(6,182,212,.12);  color: #06b6d4; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ===========================
   PRICING PLANS
   =========================== */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.save-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16,185,129,.1);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.toggle-switch { position: relative; width: 48px; height: 26px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: var(--radius-pill);
  transition: .3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

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

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(to bottom, #f5f5f5, #fff);
}

.plan-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-card--wp.plan-card--featured {
  border-color: var(--wp-blue);
  background: linear-gradient(to bottom, #f0f8ff, #fff);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-badge--wp { background: linear-gradient(135deg, #21759b, #3858e9); }

.plan-icon {
  font-size: 32px;
  color: var(--wp-blue);
  margin-bottom: 8px;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.price-currency { font-size: 20px; font-weight: 700; color: var(--text-muted); }

.price-amount {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
  transition: all .3s ease;
}

.price-period { font-size: 15px; color: var(--text-muted); align-self: flex-end; padding-bottom: 6px; }

.plan-billing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-cta {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.plan-features li i {
  font-size: 14px;
  flex-shrink: 0;
  width: 16px;
}

.plan-features .fa-check { color: var(--success); }
.plan-features .fa-xmark { color: var(--text-light); }

/* ===========================
   WORDPRESS FEATURES ROW
   =========================== */
.wp-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.wp-feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(33,117,155,.07);
  border: 1px solid rgba(33,117,155,.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--wp-blue);
}

.wp-feature-pill i { font-size: 14px; }

/* ===========================
   COMPARISON TABLE
   =========================== */
.comparison-table-wrap { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table thead th {
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}

.comparison-table thead th:first-child { border-radius: 12px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 12px 0 0; }

.comparison-table thead th i { margin-right: 8px; }

.comparison-table tbody tr:hover { background: var(--bg-alt); }

.comparison-table tbody td:nth-child(2),
.comparison-table tbody td:nth-child(3) {
  font-weight: 500;
}

.comparison-table tbody td i { font-size: 16px; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--warning);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

.review-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 24px;
}

.review-badge i { font-size: 22px; color: #4285f4; }
.review-badge__stars { display: flex; gap: 2px; font-size: 13px; color: var(--warning); }
.review-badge__text { font-size: 14px; font-weight: 600; }

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: transform .3s ease;
}

.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, #0c0c0b 0%, #1a1a19 50%, #0c0c0b 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner__bg { position: absolute; inset: 0; pointer-events: none; }

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .3;
}

.cta-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #a5b4fc, transparent 70%);
  top: -200px;
  left: -100px;
}

.cta-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -100px;
  right: -50px;
}

.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cta-banner__content p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-banner__guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.guarantee-icon {
  font-size: 36px;
  color: var(--warning);
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guarantee-text strong {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.guarantee-text span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 32px;
}

.footer .logo__text { color: #fff; }
.footer .logo__accent { color: var(--primary-light); }
.footer .logo__icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  color: #64748b;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #64748b;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

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

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col li a {
  font-size: 14px;
  color: #64748b;
  transition: color var(--transition);
}

.footer__col li a:hover { color: #e2e8f0; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #475569;
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal a {
  color: #475569;
  transition: color var(--transition);
}

.footer__legal a:hover { color: #94a3b8; }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp .6s ease forwards;
}

.hero__badge, .hero__title, .hero__subtitle, .hero__cta, .hero__trust {
  animation: fadeInUp .7s ease both;
}

.hero__badge { animation-delay: .1s; }
.hero__title { animation-delay: .2s; }
.hero__subtitle { animation-delay: .3s; }
.hero__cta { animation-delay: .4s; }
.hero__trust { animation-delay: .5s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile header: hamburger | logo (center) | login */
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .logo { flex: 1; text-align: center; }

  .hamburger { display: flex; }

  .nav__close { display: flex; }

  /* Slide-out nav */
  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: 4px 0 32px rgba(0,0,0,.18);
    transition: left .3s cubic-bezier(.4,0,.2,1);
    padding: 0;
  }

  .nav.nav--open { left: 0; }

  .nav .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 0 24px;
  }

  .nav .nav__link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px;
    text-align: center;
    width: 100%;
    color: var(--text);
  }

  .nav .nav__link:hover {
    color: var(--primary);
    background: rgba(79,70,229,.06);
    border-radius: var(--radius-pill);
  }

  /* Keep login button visible */
  .header__actions {
    display: flex;
    flex-shrink: 0;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .plans-grid { grid-template-columns: 1fr; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner__inner { flex-direction: column; }
  .cta-banner__guarantee { width: 100%; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .hero__trust { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .footer__links { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .review-badges { flex-direction: column; align-items: center; }
}
