@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --indigo: #4f46e5;
  --indigo-dark: #3730a3;
  --indigo-light: #e0e7ff;
  --violet: #7c3aed;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-color: 0 20px 60px rgba(79,70,229,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─────────────────── NAV ─────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  margin-right: 4px;
  box-shadow: 0 4px 12px rgba(79,70,229,0.35);
}
.logo span { background: linear-gradient(135deg, var(--indigo), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-img { height: 36px; width: 36px; display: block; border-radius: 50%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg); }

.nav-cta {
  padding: 9px 20px;
  font-size: 0.875rem;
  color: #0f172a !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

/* ─────────────────── BUTTONS ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.925rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -0.1px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(79,70,229,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: var(--white);
  color: var(--indigo);
  border: 1.5px solid var(--indigo-light);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--indigo-light);
  border-color: var(--indigo);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 6px;
}
.btn-ghost:hover { color: var(--indigo); }

.btn-large { padding: 15px 36px; font-size: 1rem; border-radius: 12px; }

/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #f0f4ff 0%, #faf5ff 40%, #f0fdfa 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c7d2fe, #818cf8);
  top: -150px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #d8b4fe, #a78bfa);
  bottom: -80px; left: -80px;
  animation: float2 10s ease-in-out infinite;
}
.hero-blob-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #a5f3fc, #67e8f9);
  top: 40%; left: 40%;
  animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.2);
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: #fff;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 22px;
  color: var(--text);
}
.hero-text h1 .gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}
.trust-avatars span:first-child { margin-left: 0; }
.ta1 { background: linear-gradient(135deg, #f97316, #fb923c); }
.ta2 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.ta3 { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.ta4 { background: linear-gradient(135deg, #10b981, #34d399); }
.trust-text { font-size: 0.82rem; color: var(--text-muted); }
.trust-text strong { color: var(--text); }
.stars { color: #f59e0b; font-size: 0.75rem; }

/* Browser mockup */
.hero-visual { display: flex; justify-content: center; }

.browser {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  animation: float1 6s ease-in-out infinite;
}
.browser-bar {
  background: #f1f5f9;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.d1 { background: #ef4444; }
.d2 { background: #f59e0b; }
.d3 { background: #22c55e; }
.browser-url {
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.url-dot { width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; }

.browser-body { padding: 20px; }

.b-hero {
  height: 100px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  gap: 8px;
}
.b-h-line {
  height: 10px;
  background: rgba(255,255,255,0.8);
  border-radius: 5px;
}
.b-h-line.short { width: 55%; background: rgba(255,255,255,0.5); }
.b-h-btn {
  width: 80px; height: 22px;
  background: rgba(255,255,255,0.9);
  border-radius: 5px;
  margin-top: 4px;
}

.b-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.b-nav span {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
}
.b-nav span:first-child { flex: 0 0 40px; background: linear-gradient(90deg, var(--indigo), var(--violet)); }

.b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.b-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.b-card-img {
  height: 44px;
  background: linear-gradient(135deg, #e0e7ff, #f0fdf4);
}
.b-card:nth-child(2) .b-card-img { background: linear-gradient(135deg, #fdf4ff, #e0e7ff); }
.b-card:nth-child(3) .b-card-img { background: linear-gradient(135deg, #ecfdf5, #f0f9ff); }
.b-card-body { padding: 8px; }
.b-card-line { height: 6px; background: var(--border); border-radius: 3px; margin-bottom: 4px; }
.b-card-line.short { width: 60%; }

.b-footer-lines { display: flex; flex-direction: column; gap: 7px; }
.b-footer-lines span {
  height: 7px;
  background: var(--border);
  border-radius: 4px;
}
.b-footer-lines span:nth-child(2) { width: 75%; }
.b-footer-lines span:nth-child(3) { width: 50%; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border);
  z-index: 10;
}
.float-badge-icon { font-size: 1.1rem; }

.fb-1 { top: 15%; right: -24px; animation: float2 5s ease-in-out infinite; }
.fb-2 { bottom: 20%; left: -24px; animation: float1 7s ease-in-out infinite; }
.hero-visual-wrap { position: relative; width: 100%; max-width: 480px; }

/* ─────────────────── STATS BAR ─────────────────── */
.stats {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.stat {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  line-height: 1.4;
  display: block;
}

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

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────── WHY CARDS ─────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: var(--bg);
}
.card-icon svg {
  width: 26px; height: 26px;
  color: var(--indigo);
  stroke: var(--indigo);
}
.card:nth-child(1) .card-icon { background: #eff6ff; }
.card:nth-child(2) .card-icon { background: #f0fdf4; }
.card:nth-child(3) .card-icon { background: #fdf4ff; }
.card:nth-child(4) .card-icon { background: #fff7ed; }
.card:nth-child(5) .card-icon { background: #f0fdfa; }
.card:nth-child(6) .card-icon { background: #eff6ff; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ─────────────────── SERVICES ─────────────────── */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.25s;
  cursor: default;
}
a.service-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(79,70,229,0.2);
}
.demo-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--indigo);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.service-item:hover .demo-link { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: var(--bg);
}
.service-item h3 { font-size: 0.975rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.2px; }
.service-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; }

/* ─────────────────── STEPS ─────────────────── */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--indigo-light), var(--violet) 50%, var(--indigo-light));
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(79,70,229,0.4);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.2px; }
.step p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ─────────────────── PRICING ─────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--indigo);
  background: linear-gradient(180deg, #f5f3ff 0%, var(--white) 100%);
  box-shadow: var(--shadow-color);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-3px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(79,70,229,0.4);
}
.price-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.price {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1;
}
.price .period { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.price-monthly {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 14px;
  margin-bottom: 24px;
}
.price-monthly .pm-amount { font-size: 1.35rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; line-height: 1; }
.price-monthly .pm-per { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0; margin-left: 2px; }
.price-monthly .pm-label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); text-align: right; }
.price-sub { color: var(--text-light); font-size: 0.82rem; margin-bottom: 24px; }
.price-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.price-card ul { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-card li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #d1fae5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; }
.buy-note { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; text-align: center; }

/* ── Thank-you / subscription upsell page (success.html) ───── */
.success-wrap { max-width: 620px; margin: 0 auto; text-align: center; }
.success-emoji { font-size: 3rem; margin-bottom: 12px; }
.success-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 14px;
}
.success-lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.sub-offer {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.sub-offer h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text); margin: 12px 0 10px; }
.sub-offer p { color: var(--text-muted); margin-bottom: 18px; }
.sub-offer-price { font-size: 2rem; font-weight: 900; letter-spacing: -1px; color: var(--text); margin-bottom: 22px; }
.sub-offer-price .period { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.sub-offer-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.sub-offer-actions .btn { width: 100%; max-width: 320px; }

/* ─────────────────── TESTIMONIALS ─────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.25s;
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars span { color: #f59e0b; font-size: 0.9rem; }
.testimonial p {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #f97316, #fb923c); }
.av2 { background: linear-gradient(135deg, var(--indigo), var(--violet)); }
.av3 { background: linear-gradient(135deg, var(--cyan), #0ea5e9); }
.testimonial-author strong { display: block; font-size: 0.875rem; font-weight: 700; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────────────── CTA BANNER ─────────────────── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--indigo);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ─────────────────── CONTACT FORM ─────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.contact-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }

.contact-points { display: flex; flex-direction: column; gap: 14px; }
.contact-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
.cp-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
  letter-spacing: -0.1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.925rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: all 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.contact-form .btn { width: 100%; }
.form-success {
  margin-top: 16px;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  color: #15803d;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
}
.hidden { display: none; }

/* ─────────────────── FOOTER ─────────────────── */
.footer {
  background: #0f172a;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #475569;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: #475569; font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #475569; text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: #94a3b8; }

/* ─────────────────── SCROLL ANIMATIONS ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual-wrap { display: none; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .steps-wrapper { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .steps-wrapper::before { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; max-width: 360px; margin: 0 auto; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .hamburger { display: block; }
  .cards-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
