/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1a2040;
  overflow-x: hidden;
  cursor: default;
}

/* ─── CSS VARS ─── */
:root {
  --yellow: #f5cb32;
  --navy: #1a2040;
  --purple: #6635dc;
  --light: #e4e4e4;
  --navy-80: rgba(26,32,64,0.8);
  --white: #ffffff;
  --gray-soft: #f7f7f9;
  --gray-mid: #e8e8ee;
  --text-muted: #6b7280;
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s;
}
#nav.dark {
  background: rgba(26,32,64,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 56px;
  border-bottom: 1px solid rgba(245,203,50,0.08);
}
#nav.light {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 56px;
  border-bottom: 1px solid rgba(26,32,64,0.07);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
/* tamanho padrão da logo */
.nav-logo img{
  height: 80px;     /* tamanho ideal da marca */
  width: auto;
  display: block;
}
.logo-svg { width: 36px; height: 36px; }
.logo-name {
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.5px;
  transition: color 0.4s;
}
#nav:not(.dark) .logo-name { color: var(--navy); }
#nav.dark .logo-name { color: var(--yellow); }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.3s, opacity 0.3s;
}
#nav:not(.dark) .nav-links a { color: var(--navy); opacity: 0.7; }
#nav:not(.dark) .nav-links a:hover { opacity: 1; color: var(--navy); }
#nav.dark .nav-links a { color: rgba(255,255,255,0.7); }
#nav.dark .nav-links a:hover { color: var(--white); }

.nav-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
#nav:not(.dark) .nav-btn { background: var(--navy); color: var(--white); opacity: 1 !important; }
#nav:not(.dark) .nav-btn:hover { background: var(--yellow); color: var(--white); }
#nav.dark .nav-btn { background: var(--yellow); color: var(--navy); opacity: 1 !important; }
#nav.dark .nav-btn:hover { background: var(--white); color: var(--navy); }

/* ─── HERO: LIGHT, CLEAN ─── */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,203,50,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,32,64,0.06);
  border: 1px solid rgba(26,32,64,0.1);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroUp 1s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.tag-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }
#hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.02;
  color: var(--navy);
  max-width: 900px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: heroUp 1s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
#hero h1 .accent { color: var(--yellow); display: inline; }
#hero h1 .line2 {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 68px);
  color: #4a5270;
  letter-spacing: -1px;
  margin-top: 4px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin: 0 auto 52px;
  font-weight: 400;
  opacity: 0;
  animation: heroUp 1s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
}
.hero-ctas {
  display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: heroUp 1s cubic-bezier(0.22,1,0.36,1) 0.8s forwards;
}
.cta-main {
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.cta-main:hover { background: var(--yellow); color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,203,50,0.4); }
.cta-ghost {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.cta-ghost:hover { opacity: 1; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: heroUp 1s cubic-bezier(0.22,1,0.36,1) 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  opacity: 0.2;
  animation: scrollPulse 2s ease infinite;
}
.scroll-label { font-size: 11px; color: var(--navy); opacity: 0.35; letter-spacing: 2px; text-transform: uppercase; }

/* hero dashboard preview */
.hero-screen {
  margin-top: 72px;
  width: min(900px, 90vw);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.08),
    0 40px 100px rgba(26,32,64,0.12);
  border: 1px solid rgba(26,32,64,0.07);
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  animation: screenIn 1.2s cubic-bezier(0.22,1,0.36,1) 1s forwards;
}
.screen-bar {
  background: #f2f2f4;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.screen-dot { width: 12px; height: 12px; border-radius: 50%; }
.screen-dots { display: flex; gap: 6px; }
.screen-address {
  flex: 1; margin: 0 12px;
  background: rgba(0,0,0,0.06);
  border-radius: 6px; height: 22px;
  display: flex; align-items: center;
  padding: 0 10px;
  font-size: 11px; color: rgba(0,0,0,0.35);
}
.screen-body {
  background: var(--navy);
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 320px;
}
.screen-sidebar {
  background: #111629;
  padding: 24px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 0 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
.sidebar-logo-mark { width: 28px; height: 28px; }
.sidebar-logo-text { font-size: 14px; font-weight: 700; color: var(--yellow); }
.sidebar-item {
  padding: 9px 12px; border-radius: 8px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.2s;
}
.sidebar-item.active { background: rgba(245,203,50,0.1); color: var(--yellow); }
.sidebar-icon { font-size: 14px; }
.screen-main { padding: 24px; }
.screen-greeting { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.screen-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.screen-kpis {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px;
}
.kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 14px;
}
.kpi.gold { border-color: rgba(245,203,50,0.2); background: rgba(245,203,50,0.05); }
.kpi-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 6px; letter-spacing: 0.3px; }
.kpi-value { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1; }
.kpi.gold .kpi-value { color: var(--yellow); }
.kpi-delta { font-size: 10px; color: #4ade80; margin-top: 4px; }
.screen-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chart-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px;
}
.chart-card-title { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.mini-bars {
  display: flex; align-items: flex-end; gap: 5px; height: 60px;
}
.mini-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(245,203,50,0.25);
  transition: background 0.3s;
}
.mini-bar:last-child { background: var(--yellow); }
.mini-bar:nth-last-child(2) { background: rgba(245,203,50,0.55); }
.mini-line {
  height: 60px; position: relative;
  display: flex; align-items: flex-end;
}
.mini-line svg { width: 100%; height: 60px; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes screenIn {
  from { opacity: 0; transform: translateY(50px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.2; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--navy);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(245,203,50,0.1);
  border-bottom: 1px solid rgba(245,203,50,0.1);
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-item span { color: var(--yellow); font-size: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── STICKY SCROLL SECTIONS (Apple-style) ─── */
.sticky-universe {
  position: relative;
}

/* Each sticky scene */
.sticky-scene {
  height: 300vh;
  position: relative;
}
.sticky-frame {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Scene 1: Identification */
.scene-id .sticky-frame {
  background: var(--white);
}
.scene-id-content {
  text-align: center;
  max-width: 780px;
  padding: 0 40px;
  will-change: transform, opacity;
}
.scene-id-content .big-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
  display: block;
}
.scene-id-content h2 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 28px;
}
.scene-id-content h2 em {
  font-style: normal;
  color: var(--purple);
}
.scene-id-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 400;
}

/* Scene 2: Pain reveal */
.scene-pain .sticky-frame {
  background: var(--navy);
}
.scene-pain-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(102,53,220,0.15), transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(245,203,50,0.06), transparent 50%);
}
.scene-pain-words {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}
.pain-word-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 16px;
}
.pw {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  transition: color 0.6s ease, transform 0.6s ease;
  letter-spacing: -0.5px;
  display: inline-block;
}
.pw.lit {
  color: var(--white);
}
.pw.lit.yellow { color: var(--yellow); }
.pw.lit.purple { color: #a78bfa; }

/* Scene 3: Turn-around */
.scene-turn .sticky-frame {
  background: var(--gray-soft);
}
.scene-turn-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  padding: 0 60px;
  width: 100%;
}
.turn-left h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.turn-left h2 span { color: var(--yellow); display: block; }
.turn-left p {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 32px;
}
.turn-steps { display: flex; flex-direction: column; gap: 16px; }
.tstep {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(26,32,64,0.07);
  will-change: transform, opacity;
}
.tstep-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.tstep-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.tstep-text span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.turn-right {
  position: relative;
}
.turn-device {
  background: var(--navy);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(26,32,64,0.25);
}
.device-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.ds { border-radius: 12px; padding: 18px; }
.ds.y { background: rgba(245,203,50,0.15); border: 1px solid rgba(245,203,50,0.2); }
.ds.d { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.ds-lbl { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; margin-bottom: 6px; }
.ds-val { font-size: 24px; font-weight: 800; }
.ds.y .ds-val { color: var(--yellow); }
.ds.d .ds-val { color: var(--white); }
.ds-chg { font-size: 10px; color: #4ade80; margin-top: 4px; }
.device-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px; padding: 16px;
}
.dc-label { font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.dc-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.dc-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(245,203,50,0.2);
}
.dc-bar:last-child { background: var(--yellow); }
.dc-bar:nth-last-child(2) { background: rgba(245,203,50,0.5); }

/* ─── PRODUCT SHOWCASE ─── */
.product-section {
  background: var(--white);
  padding: 120px 60px;
}
.product-section-inner { max-width: 1160px; margin: 0 auto; }
.product-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.section-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245,203,50,0.1);
  border: 1px solid rgba(245,203,50,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.product-header h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 18px;
}
.product-header h2 span { color: var(--purple); }
.product-header p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* Feature cards bento */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.bento-card {
  background: var(--gray-soft);
  border: 1px solid var(--gray-mid);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,32,64,0.1);
  border-color: rgba(245,203,50,0.3);
}
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-card.dark {
  background: var(--navy);
  border-color: rgba(255,255,255,0.06);
  color: var(--white);
}
.bento-card.accent {
  background: linear-gradient(135deg, #1a2040 0%, #2d1a6e 100%);
  border-color: rgba(102,53,220,0.3);
  color: var(--white);
}

.bento-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.bento-card:not(.dark):not(.accent) .bento-icon { background: rgba(26,32,64,0.06); }
.bento-card.dark .bento-icon { background: rgba(245,203,50,0.1); }
.bento-card.accent .bento-icon { background: rgba(255,255,255,0.1); }

.bento-card h3 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.bento-card:not(.dark):not(.accent) h3 { color: var(--navy); }
.bento-card.dark h3, .bento-card.accent h3 { color: var(--white); }

.bento-card p {
  font-size: 14px; line-height: 1.65;
}
.bento-card:not(.dark):not(.accent) p { color: var(--text-muted); }
.bento-card.dark p, .bento-card.accent p { color: rgba(255,255,255,0.55); }

.bento-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3px;
}
.bento-card:not(.dark):not(.accent) .bento-tag { color: var(--purple); }
.bento-card.dark .bento-tag { color: var(--yellow); }
.bento-card.accent .bento-tag { color: #c4b5fd; }

.bento-visual {
  margin-top: 24px;
}
.mini-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}
.mt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
}
.mt-row.head {
  background: rgba(255,255,255,0.06);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mt-row:last-child { border-bottom: none; }
.mt-row .highlight { color: var(--yellow); font-weight: 700; }
.mt-row .green { color: #4ade80; }

/* ─── TRANSFORMATION DARK ─── */
.transform-section {
  background: var(--navy);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.transform-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,203,50,0.06), transparent 70%);
  pointer-events: none;
}
.transform-inner { max-width: 1160px; margin: 0 auto; }
.transform-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.transform-top h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1.1;
  margin: 20px 0 18px;
}
.transform-top h2 span { color: var(--yellow); }
.transform-top p { font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.transform-nums {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
}
.tnum {
  background: var(--navy);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
  position: relative;
}
.tnum:hover { background: rgba(255,255,255,0.03); }
.tnum-val {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.tnum-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.tnum-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--gray-soft);
  padding: 120px 60px;
}
.testimonials-inner { max-width: 1160px; margin: 0 auto; }
.testimonials-top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.testimonials-top h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin: 16px 0 16px;
  line-height: 1.1;
}
.testimonials-top p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }
.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: var(--white);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--gray-mid);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(26,32,64,0.1);
  border-color: rgba(245,203,50,0.3);
}
.tcard.featured {
  background: var(--navy);
  border-color: transparent;
}
.tcard.featured .tcard-stars { color: var(--yellow); }
.tcard.featured .tcard-text {
  color: rgba(255,255,255,0.8);
}
.tcard.featured .tcard-name { color: var(--white); }
.tcard.featured .tcard-role { color: rgba(255,255,255,0.4); }
.tcard-stars { font-size: 14px; color: var(--yellow); letter-spacing: 2px; }
.tcard-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  flex: 1;
}
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 700; color: var(--navy); display: block; }
.tcard-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; display: block; }

/* ─── DIFFERENTIALS ─── */
.diff-section { background: var(--white); padding: 120px 60px; }
.diff-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.diff-left h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; letter-spacing: -1.5px;
  color: var(--navy); line-height: 1.1;
  margin: 16px 0 20px;
}
.diff-left h2 span { color: var(--purple); display: block; }
.diff-left p {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 36px;
}
.diff-pills {
  display: flex; flex-direction: column; gap: 12px;
}
.dpill {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--gray-mid);
  background: var(--gray-soft);
  transition: all 0.3s;
}
.dpill:hover {
  border-color: rgba(245,203,50,0.4);
  background: rgba(245,203,50,0.04);
  transform: translateX(4px);
}
.dpill-check {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--yellow);
  font-weight: 700;
}
.dpill-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.dpill-text span { font-size: 13px; color: var(--text-muted); }
.diff-right {
  display: flex; flex-direction: column; gap: 16px;
}
.years-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2860 100%);
  border-radius: 24px; padding: 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.years-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(245,203,50,0.08);
  border-radius: 50%;
}
.years-num {
  font-size: 96px; font-weight: 900;
  color: var(--yellow);
  letter-spacing: -5px;
  line-height: 1;
  position: relative;
}
.years-unit { font-size: 32px; font-weight: 300; opacity: 0.5; }
.years-label {
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.diff-stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
.dsg {
  background: var(--gray-soft);
  border: 1px solid var(--gray-mid);
  border-radius: 16px; padding: 24px;
  text-align: center; transition: all 0.3s;
}
.dsg:hover { border-color: rgba(245,203,50,0.3); background: rgba(245,203,50,0.04); }
.dsg strong {
  display: block;
  font-size: 36px; font-weight: 900;
  color: var(--navy); letter-spacing: -1.5px;
}
.dsg span { font-size: 13px; color: var(--text-muted); margin-top: 4px; display: block; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--navy);
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(102,53,220,0.15), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(245,203,50,0.08), transparent 50%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -2.5px;
  color: var(--white);
  line-height: 1.05;
  margin: 20px 0 24px;
}
.final-cta h2 span { color: var(--yellow); }
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 52px;
}
.final-ctas {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.fcta-main {
  background: var(--yellow);
  color: var(--navy);
  padding: 18px 44px;
  border-radius: 50px;
  font-weight: 800; font-size: 16px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  letter-spacing: -0.3px;
}
.fcta-main:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(245,203,50,0.4);
}
.fcta-sec {
  color: rgba(255,255,255,0.6);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  transition: all 0.3s;
}
.fcta-sec:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.final-note { font-size: 13px; color: rgba(255,255,255,0.3); }
.final-note span { color: rgba(255,255,255,0.55); }

/* ─── FOOTER ─── */
footer {
  background: #0d1120;
  padding: 64px 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 52px;
}
.footer-brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.35);
  line-height: 1.7; margin-top: 16px; max-width: 260px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.25); margin-bottom: 18px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.5);
  font-size: 14px; text-decoration: none;
  margin-bottom: 10px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom-bar {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-bar p { font-size: 13px; color: rgba(255,255,255,0.2); }
.footer-socials { display: flex; gap: 12px; }
.fsoc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 700;
}
.fsoc:hover { background: var(--yellow); color: var(--navy); transform: translateY(-2px); }

/* ─── FLOATING CTA ─── */
#float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 8888;
  background: var(--navy);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(26,32,64,0.35);
  display: flex; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  font-family: 'Poppins', sans-serif;
}
#float-cta.show { opacity: 1; transform: translateY(0); }
#float-cta:hover {
  background: var(--yellow); color: var(--navy);
  box-shadow: 0 12px 50px rgba(245,203,50,0.4);
}

/* ─── REVEAL ANIMATIONS ─── */
.r { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.r.on { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
.r.d4 { transition-delay: 0.4s; }
.r.d5 { transition-delay: 0.5s; }
.r.d6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  #nav { padding: 18px 32px; }
  #nav.dark, #nav.light { padding: 14px 32px; }
  .scene-turn-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .transform-nums { grid-template-columns: 1fr 1fr; }
  .tcard-grid { grid-template-columns: 1fr 1fr; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .product-section, .transform-section, .testimonials-section, .diff-section, .final-cta { padding: 80px 32px; }
}
@media (max-width: 640px) {
  #nav { padding: 16px 20px; }
  #nav.dark, #nav.light { padding: 12px 20px; }
  .nav-links { display: none; }
  #hero { padding: 110px 24px 60px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .transform-nums { grid-template-columns: 1fr 1fr; }
  .tcard-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-bar { flex-direction: column; gap: 16px; text-align: center; }
  .product-section, .transform-section, .testimonials-section, .diff-section, .final-cta { padding: 64px 20px; }
}

.nav-links .nav-btn,
nav.light .nav-btn,
nav.dark .nav-btn {
  color: #fff;
}

.nav-links .nav-btn:hover,
nav.light .nav-btn:hover,
nav.dark .nav-btn:hover {
  color: #fff;
}

#nav:not(.dark) .nav-links .nav-btn {
  background: var(--navy);
  color: var(--white);
  opacity: 1 !important;
}
#nav:not(.dark) .nav-links .nav-btn:hover {
  background: var(--yellow);
  color: var(--white);
}

#nav.dark .nav-links .nav-btn {
  background: var(--yellow);
  color: var(--navy);
  opacity: 1 !important;
}
#nav.dark .nav-links .nav-btn:hover {
  background: var(--white);
  color: var(--navy);
}