/* =========================================================
   SELLORA — Design System
   ========================================================= */

:root {
  --primary: #0B5FFF;
  --primary-dark: #0847c9;
  --secondary: #111827;
  --accent: #00C389;
  --bg: #FFFFFF;
  --bg-light: #F7F8FA;
  --text: #1F2937;
  --text-light: #6B7280;
  --cta: #FF8A00;
  --cta-dark: #e67a00;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.06);
  --shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 20px 60px rgba(17, 24, 39, 0.12);
  --shadow-primary: 0 12px 30px rgba(11, 95, 255, 0.25);
  --shadow-cta: 0 12px 30px rgba(255, 138, 0, 0.3);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --container: 1200px;
  --nav-height: 84px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

section { position: relative; }

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

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(11,95,255,.32); }

.btn-cta {
  background: linear-gradient(135deg, var(--cta), #ff6a00);
  color: #fff;
  box-shadow: var(--shadow-cta);
  position: relative;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,138,0,.4); }

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

.btn-outline-light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* =========================================================
   Nav
   ========================================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, height .3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: rgba(17,24,39,.06);
  height: 72px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.navbar-actions { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px 28px;
  box-shadow: var(--shadow);
  transform: translateY(-120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-link {
  padding: 14px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-bottom: 1px solid #F0F1F4;
}
.mobile-menu .btn { margin-top: 16px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .navbar-actions .btn-sm { display: none; }
  .hamburger { display: flex; }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: calc(var(--nav-height) + 50px) 0 50px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(11,95,255,.12), transparent 40%),
    radial-gradient(circle at 88% 12%, rgba(255,138,0,.12), transparent 42%),
    radial-gradient(circle at 55% 95%, rgba(0,195,137,.10), transparent 45%),
    linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 60%);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .4;
  animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--primary); top: -120px; right: -60px; }
.blob-2 { width: 320px; height: 320px; background: var(--accent); bottom: -80px; left: -60px; animation-delay: -4s; }
.blob-3 { width: 260px; height: 260px; background: var(--cta); top: 40%; right: 20%; opacity: .26; animation-delay: -8s; }
.blob-4 { width: 220px; height: 220px; background: var(--primary); top: 8%; left: 40%; opacity: .16; animation-delay: -6s; }

.spotlight {
  position: absolute;
  top: -15%;
  left: -5%;
  width: 55%;
  height: 75%;
  background: radial-gradient(circle, rgba(11,95,255,.14), transparent 65%);
  animation: spotlightMove 10s ease-in-out infinite;
}

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

@keyframes spotlightMove {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px,30px); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17,24,39,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--primary);
  background: rgba(11,95,255,.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--cta) 65%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trustline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.avatars span:first-child { margin-left: 0; }
.trust-text p { font-size: 14px; color: var(--text-light); }
.trust-text strong { color: var(--secondary); }
.trust-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cta);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.trust-stars strong {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0;
}

/* Hero visual */
.hero-visual { position: relative; height: 480px; }

.hero-illustration {
  position: absolute;
  inset: -60px -40px auto -40px;
  height: 600px;
  z-index: 0;
  pointer-events: none;
}
.hero-illustration svg { width: 100%; height: 100%; }

.float-chip {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 1;
}
.float-chip svg { width: 24px; height: 24px; }
.chip-key {
  background: linear-gradient(135deg, var(--cta), #ff6a00);
  top: -22px; left: 8%;
  animation-delay: -2s;
}
.chip-pin {
  background: linear-gradient(135deg, var(--accent), #00a173);
  top: -22px; right: 6%;
  animation-delay: -4s;
}

.glass {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
}

.visual-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
}

.visual-card-main {
  position: absolute;
  top: 20px; left: 10%;
  width: 78%;
  animation: floatCard 6s ease-in-out infinite;
}

.visual-card-header { display: flex; gap: 6px; margin-bottom: 18px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-green { background: var(--accent); }
.dot-orange { background: var(--cta); }
.dot-blue { background: var(--primary); }

.visual-label { font-size: 13px; color: var(--text-light); font-weight: 600; margin-bottom: 16px; }

.visual-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  margin-bottom: 20px;
}
.visual-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--primary), rgba(11,95,255,.25));
  animation: growUp 1.2s ease both;
}
.visual-chart span:nth-child(6) { background: linear-gradient(180deg, var(--accent), rgba(0,195,137,.25)); }
@keyframes growUp { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }

.visual-stats { display: flex; gap: 30px; border-top: 1px solid rgba(17,24,39,.08); padding-top: 18px; }
.visual-stats strong { display: block; font-family: var(--font-heading); font-size: 22px; color: var(--secondary); }
.visual-stats span { font-size: 13px; color: var(--text-light); }

.visual-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  animation: floatCard 5s ease-in-out infinite;
}
.visual-card-float strong { display: block; font-size: 13.5px; font-family: var(--font-heading); color: var(--secondary); }
.visual-card-float span { font-size: 12px; color: var(--text-light); }

.visual-float-1 { bottom: 60px; left: -20px; animation-delay: -1.5s; }
.visual-float-2 { top: 240px; right: -30px; animation-delay: -3s; }
.visual-float-3 { bottom: -10px; right: 60px; animation-delay: -.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.icon-badge {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.icon-badge svg { width: 22px; height: 22px; }
.badge-blue { background: rgba(11,95,255,.1); color: var(--primary); }
.badge-green { background: rgba(0,195,137,.12); color: var(--accent); }
.badge-orange { background: rgba(255,138,0,.12); color: var(--cta); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 40px; }
  .hero-content { text-align: center; }
  .hero-actions, .hero-trustline { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .hero-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .hero-illustration, .float-chip { display: none; }
  .visual-card-main,
  .visual-card-float {
    position: static;
    width: 100%;
    animation: none;
  }
}

/* =========================================================
   Trust Numbers
   ========================================================= */

.trust-section {
  background: var(--secondary);
  padding: 50px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.counter {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  background: linear-gradient(135deg, #fff, #B9CBFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.trust-item p { color: #9CA3AF; font-weight: 600; font-size: 14.5px; }

@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* =========================================================
   Section head / tags
   ========================================================= */

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11,95,255,.08);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-head p { color: var(--text-light); font-size: 16.5px; }

/* =========================================================
   Why Sellora — feature cards
   ========================================================= */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.grid-10 { grid-template-columns: repeat(5, 1fr); }

.feature-card {
  background: #fff;
  border: 1px solid #EEF0F4;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(11,95,255,.25);
}
.feature-card .icon-badge { margin-bottom: 18px; }
.feature-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); }

@media (max-width: 1080px) { .grid-10 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .grid-10 { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   How it works — timeline
   ========================================================= */

.timeline {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.timeline-step {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #EEF0F4;
  text-align: left;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.timeline-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--primary);
  opacity: .5;
  margin-bottom: 14px;
}
.timeline-step .icon-badge { margin-bottom: 16px; }
.timeline-step h4 { font-size: 17px; margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--text-light); }

.timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9CFDA;
  width: 24px;
}
.timeline-arrow svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .timeline { flex-direction: column; }
  .timeline-arrow { transform: rotate(90deg); margin: -4px auto; }
}

/* =========================================================
   Services
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #EEF0F4;
  border-radius: var(--radius);
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.service-chip span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--primary);
  background: rgba(11,95,255,.08);
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.service-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--secondary);
  color: #fff;
}
.service-chip:hover span { background: var(--cta); color: #fff; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Pricing
   ========================================================= */

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

.price-card {
  background: #fff;
  border: 1px solid #EEF0F4;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.price-featured {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.price-featured:hover { transform: scale(1.05) translateY(-6px); }
.price-featured .price-plan,
.price-featured .price-value { color: #fff; }
.price-featured .price-list li { color: #D1D5DB; }
.price-featured .price-list li::before { color: var(--accent); }
.price-featured .price-highlight { color: #9CA3AF; }

.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cta), #ff6a00);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-cta);
}

.price-plan { font-family: var(--font-heading); font-weight: 600; color: var(--text-light); font-size: 15px; margin-bottom: 10px; }
.price-value { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--secondary); margin-bottom: 26px; letter-spacing: -0.01em; }

.price-list { margin-bottom: 28px; }
.price-list li {
  font-size: 14.5px;
  color: var(--text);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px dashed #EDEFF3;
}
.price-featured .price-list li { border-bottom-color: rgba(255,255,255,.1); }
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-highlight { text-align: center; font-size: 13px; color: var(--text-light); margin-top: 16px; font-weight: 600; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-6px); }
}

/* =========================================================
   Benefits
   ========================================================= */

.benefits-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.benefits-content h2 { margin-bottom: 16px; }
.benefits-content > p { color: var(--text-light); font-size: 16.5px; margin-bottom: 34px; max-width: 480px; }

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 14.5px;
  color: var(--secondary);
}
.check-list svg {
  width: 22px; height: 22px;
  min-width: 22px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(0,195,137,.12);
  color: var(--accent);
}

.benefits-visual { display: flex; align-items: center; justify-content: center; }
.orbit-card {
  width: 320px; height: 320px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.orbit-ring {
  position: absolute;
  inset: 24px;
  border: 1.5px dashed rgba(11,95,255,.25);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.orbit-ring-2 { inset: 56px; border-color: rgba(255,138,0,.3); animation-duration: 12s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-center {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #4c86ff);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-primary);
}
.orbit-center svg { width: 34px; height: 34px; }
.orbit-center span { font-family: var(--font-heading); font-weight: 700; font-size: 14px; }

@media (max-width: 900px) {
  .benefits-inner { grid-template-columns: 1fr; text-align: center; }
  .benefits-content > p { margin-left: auto; margin-right: auto; }
  .check-list { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .check-list li { justify-content: center; }
  .benefits-visual { margin-top: 20px; }
}

/* =========================================================
   Testimonials
   ========================================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #EEF0F4;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--cta); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p { font-size: 15.5px; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
}
.testimonial-author strong { display: block; font-size: 14.5px; }
.testimonial-author span { font-size: 12.5px; color: var(--text-light); }

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid #EEF0F4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary);
  text-align: left;
}
.faq-icon {
  font-size: 20px;
  color: var(--primary);
  transition: transform .3s ease;
  min-width: 20px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 22px; }
.faq-answer p { color: var(--text-light); font-size: 14.5px; }

/* =========================================================
   Final CTA + Lead Form
   ========================================================= */

.final-cta {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: var(--secondary);
}
.final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(11,95,255,.35), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,138,0,.28), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(0,195,137,.2), transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: .8; }
  50% { opacity: 1; }
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.final-cta-content h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.final-cta-content > p { color: #C3C9D6; font-size: 17px; margin-bottom: 30px; max-width: 440px; }
.final-cta-points { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.final-cta-points li {
  color: #E5E8F0;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 14.5px;
  padding-left: 28px;
  position: relative;
}
.final-cta-points li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 800;
}

.lead-form {
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.lead-form h3 { font-size: 22px; margin-bottom: 6px; }
.lead-form-sub { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }

.form-row { margin-bottom: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: flex; flex-direction: column; gap: 7px; }
.form-row span { font-size: 13px; font-weight: 700; font-family: var(--font-heading); color: var(--secondary); }

.form-row input,
.form-row select,
.form-row textarea {
  border: 1.5px solid #E3E6EC;
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,95,255,.12);
}
.form-row textarea { resize: vertical; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.checkbox-row input { margin-top: 3px; accent-color: var(--primary); width: 16px; height: 16px; }

.form-success {
  display: none;
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-top: 14px;
}
.form-success.show { display: block; }

@media (max-width: 980px) {
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta-content { text-align: center; }
  .final-cta-content > p { margin-left: auto; margin-right: auto; }
  .final-cta-points { align-items: center; }
  .final-cta-points li { padding-left: 0; }
  .final-cta-points li::before { position: static; margin-right: 8px; }
}
@media (max-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .lead-form { padding: 26px 20px; }
}

/* =========================================================
   Footer
   ========================================================= */

.footer { background: #0A0E17; color: #9CA3AF; padding-top: 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 18px;
}
.footer-logo { height: 30px; width: auto; }
.footer-brand p { font-size: 14.5px; max-width: 320px; margin-bottom: 22px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.social-icons svg { width: 17px; height: 17px; }
.social-icons a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }

.footer-col h4 { color: #fff; font-size: 15.5px; margin-bottom: 20px; }
.footer-col a, .footer-col span {
  display: block;
  font-size: 14.5px;
  margin-bottom: 13px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--cta); }
.footer-address { max-width: 220px; }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   Floating buttons + sticky mobile CTA
   ========================================================= */

.float-btn {
  position: fixed;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 900;
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: btnPulse 2.6s ease-in-out infinite;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 26px; height: 26px; }
.float-whatsapp { background: #25D366; bottom: 96px; }
.float-call { background: var(--primary); bottom: 24px; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0), var(--shadow-lg); }
}

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid #EEF0F4;
  z-index: 850;
  display: none;
}
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  .float-btn { display: none; }
  body { padding-bottom: 0; }
}

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-group .reveal:nth-child(1) { transition-delay: .05s; }
.reveal-group .reveal:nth-child(2) { transition-delay: .1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: .15s; }
.reveal-group .reveal:nth-child(4) { transition-delay: .2s; }
.reveal-group .reveal:nth-child(5) { transition-delay: .25s; }
.reveal-group .reveal:nth-child(6) { transition-delay: .3s; }
.reveal-group .reveal:nth-child(7) { transition-delay: .35s; }
.reveal-group .reveal:nth-child(8) { transition-delay: .4s; }
.reveal-group .reveal:nth-child(9) { transition-delay: .45s; }
.reveal-group .reveal:nth-child(10) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
