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

:root {
  --purple-deep: #4B3B6A;
  --purple-darker: #2d2548;
  --purple-mid: #3a2d56;
  --turquoise: #3ED1C3;
  --turquoise-soft: #A8FFF4;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --text-light: rgba(255,255,255,0.85);
  --card-bg: rgba(75, 59, 106, 0.5);
  --card-border: rgba(62, 209, 195, 0.18);
  --glow: 0 0 24px rgba(62, 209, 195, 0.25);
  --glow-strong: 0 0 40px rgba(62, 209, 195, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--purple-darker);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── UTILITIES ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--turquoise);
  border: 1px solid rgba(62,209,195,0.35);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-title span { color: var(--turquoise); }

/* ─── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--turquoise);
  color: var(--purple-darker);
  box-shadow: 0 0 20px rgba(62,209,195,0.35);
}
.btn-primary:hover {
  background: var(--turquoise-soft);
  box-shadow: var(--glow-strong);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--turquoise);
  color: var(--turquoise);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--turquoise);
  border: 1.5px solid rgba(62,209,195,0.3);
  font-size: 14px;
  padding: 10px 20px;
}
.btn-ghost:hover {
  background: rgba(62,209,195,0.08);
  border-color: var(--turquoise);
}

.btn-lg { font-size: 18px; padding: 18px 36px; }

/* WhatsApp icon in button */
.btn .wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── HEADER ────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s ease;
}

#header.scrolled {
  background: rgba(45, 37, 72, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(62,209,195,0.15);
  padding: 12px 0;
}

#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-svg { height: 44px; width: auto; }

.header-badge {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(62,209,195,0.08);
  border: 1px solid rgba(62,209,195,0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--turquoise);
}
@media(min-width:768px){ .header-badge { display: flex; } }

.header-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--turquoise);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ─── HERO ──────────────────────────────────────── */
#hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(62,209,195,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 60% at 20% 80%, rgba(75,59,106,0.9) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media(min-width:1024px){ .hero-grid { grid-template-columns: 1fr 1fr; } }

@media(max-width:1023px){
  .hero-grid > div:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-eyebrow { align-self: center; }
  .hero-title { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; width: 100%; }
  .hero-trust { justify-content: center; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--turquoise);
  border: 1px solid rgba(62,209,195,0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--turquoise);
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--turquoise);
  flex-shrink: 0;
}

/* Device mockups */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.device-scene {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.device-tv {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(75,59,106,0.9) 0%, rgba(45,37,72,0.95) 100%);
  border: 2px solid rgba(62,209,195,0.35);
  border-radius: 16px;
  box-shadow: var(--glow), 0 40px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  position: relative;
}

.device-screen {
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background: var(--purple-darker);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.screen-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(62,209,195,0.1);
}

.screen-logo-dot {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--turquoise), var(--purple-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: white;
}

.screen-nav {
  display: flex;
  gap: 10px;
}

.screen-nav span {
  width: 40px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
}

.screen-nav span:first-child {
  background: rgba(62,209,195,0.5);
}

.screen-featured {
  flex: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(62,209,195,0.15) 0%, rgba(75,59,106,0.6) 100%);
  border: 1px solid rgba(62,209,195,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.play-btn-screen {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(62,209,195,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(62,209,195,0.5);
  position: relative;
  z-index: 2;
}

.play-btn-screen::after {
  content: '';
  border-left: 18px solid var(--purple-darker);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.screen-featured-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  gap: 6px;
}

.feat-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}

.feat-line:first-child { width: 55%; background: rgba(255,255,255,0.15); }
.feat-line:last-child { width: 38%; }

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

.screen-card {
  aspect-ratio: 3/4;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.screen-card:nth-child(1) { background: linear-gradient(135deg, rgba(62,209,195,0.2), rgba(75,59,106,0.4)); }
.screen-card:nth-child(3) { background: linear-gradient(135deg, rgba(168,255,244,0.1), rgba(45,37,72,0.6)); }

/* Phone mockup */
.device-phone {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 26%;
  aspect-ratio: 9/18;
  background: var(--purple-mid);
  border: 2px solid rgba(62,209,195,0.4);
  border-radius: 22px;
  box-shadow: var(--glow), 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  z-index: 3;
}

.phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  background: var(--purple-darker);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 6px;
}

.phone-notch {
  width: 40%;
  height: 6px;
  background: var(--purple-mid);
  border-radius: 3px;
  margin: 0 auto 4px;
}

.phone-card {
  flex: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(62,209,195,0.15), rgba(75,59,106,0.5));
  border: 1px solid rgba(62,209,195,0.12);
}

.phone-card-sm {
  height: 30%;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.04);
}

/* Tablet mockup */
.device-tablet {
  position: absolute;
  bottom: -30px;
  left: -14px;
  width: 34%;
  aspect-ratio: 4/3;
  background: var(--purple-mid);
  border: 2px solid rgba(62,209,195,0.25);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  z-index: 2;
}

.tablet-screen {
  position: absolute;
  inset: 5px;
  border-radius: 10px;
  background: var(--purple-darker);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 5px;
}

.tablet-cell {
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}
.tablet-cell:first-child {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(62,209,195,0.12), rgba(75,59,106,0.4));
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 340px; height: 340px;
  background: rgba(62,209,195,0.12);
  top: -80px; right: -80px;
}
.hero-orb-2 {
  width: 240px; height: 240px;
  background: rgba(75,59,106,0.8);
  bottom: -60px; left: -60px;
}

/* ─── WHAT IS ────────────────────────────────────── */
#what-is {
  background: rgba(75,59,106,0.2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.what-is-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.icon-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(62,209,195,0.12);
  border: 1px solid rgba(62,209,195,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
}

.what-is-text {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── FOR WHO ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(circle at 0% 0%, rgba(62,209,195,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(62,209,195,0.45);
  box-shadow: var(--glow);
}

.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(62,209,195,0.1);
  border: 1px solid rgba(62,209,195,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ─── HOW IT WORKS ────────────────────────────────── */
#how-it-works {
  background: rgba(75,59,106,0.15);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62,209,195,0.4);
  box-shadow: var(--glow);
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--turquoise);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(62,209,195,0.12);
  border: 1.5px solid var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--turquoise);
  flex-shrink: 0;
}

.step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── REAL APPS GRID (com logos reais) ────────────── */
.real-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.real-app-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 20px 22px;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
}

.real-app-card:hover {
  transform: translateY(-6px);
  border-color: #28e6d1;
  box-shadow: 0 18px 40px rgba(40, 230, 209, 0.12);
}

.real-app-logo-wrap {
  width: 130px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 10px;
  overflow: hidden;
}

.app-logo {
  width: 130px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.real-app-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.real-app-desc {
  font-size: 12px;
  color: #d8d3ef;
  line-height: 1.5;
}

.apps-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── BENEFITS ───────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62,209,195,0.4);
  box-shadow: var(--glow);
}

.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(62,209,195,0.1);
  border: 1px solid rgba(62,209,195,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.benefit-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── OBJECTIONS ─────────────────────────────────── */
#objections {
  background: linear-gradient(135deg, rgba(75,59,106,0.6) 0%, rgba(45,37,72,0.9) 100%);
  border-top: 1px solid rgba(62,209,195,0.15);
  border-bottom: 1px solid rgba(62,209,195,0.15);
  position: relative;
  overflow: hidden;
}

#objections::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,209,195,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.objections-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media(min-width:768px){ .objections-inner { grid-template-columns: 1fr 1fr; } }

@media(max-width:767px){
  .objections-inner > div:first-child {
    text-align: center;
  }
  .objections-inner .section-tag { margin-left: auto; margin-right: auto; }
  .objections-inner .section-title { text-align: center; }
  .objections-inner .bullets { align-items: center; }
  .objections-inner .bullet { justify-content: flex-start; width: 100%; max-width: 320px; }
}

.objections-text { font-size: 16px; color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }

.bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
}

.bullet-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(62,209,195,0.15);
  border: 1.5px solid var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--turquoise);
}

.objection-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.obj-pill {
  background: rgba(62,209,195,0.07);
  border: 1px solid rgba(62,209,195,0.18);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.obj-pill-icon { font-size: 18px; flex-shrink: 0; }

/* ─── CTA MID ─────────────────────────────────────── */
.cta-mid {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-mid .section-title { margin-bottom: 12px; }
.cta-mid .section-subtitle { margin: 0 auto 32px; }

/* ─── FAQ ─────────────────────────────────────────── */
#faq { background: rgba(75,59,106,0.1); }

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(62,209,195,0.4);
}

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

.faq-question:hover { color: var(--turquoise); }
.faq-item.open .faq-question { color: var(--turquoise); }

.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(62,209,195,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, border-color 0.2s;
}

.faq-chevron svg {
  width: 12px; height: 12px;
  stroke: var(--turquoise);
  transition: transform 0.35s ease;
}

.faq-item.open .faq-chevron { border-color: var(--turquoise); background: rgba(62,209,195,0.1); }
.faq-item.open .faq-chevron svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

/* ─── CTA FINAL ──────────────────────────────────── */
#cta-final {
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(62,209,195,0.07) 0%, transparent 70%),
              linear-gradient(180deg, var(--purple-darker) 0%, var(--purple-mid) 100%);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid rgba(62,209,195,0.12);
}

#cta-final .section-title { font-size: clamp(28px, 5vw, 52px); margin-bottom: 16px; }
#cta-final .section-subtitle { margin: 0 auto 36px; max-width: 560px; }

.cta-small-text {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.cta-small-text span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-small-text span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--turquoise);
  flex-shrink: 0;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: rgba(45,37,72,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-text {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.6;
}

/* ─── SECTION HEADER ─────────────────────────────── */
.section-header { text-align: center; }
.section-header .section-subtitle { margin: 0 auto; }
.section-header .section-title { margin-left: auto; margin-right: auto; }

/* ─── REVEAL ANIMATION ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media(max-width:767px) {
  .section { padding: 60px 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .btn-lg { font-size: 16px; padding: 16px 28px; }
  .device-phone { right: -10px; width: 22%; }
  .device-tablet { left: -8px; width: 30%; }
}

@media(max-width:768px) {
  .real-apps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:480px) {
  #hero { padding-top: 120px; }
  .real-apps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
