/* ═══════════════════════════════════════════════════════
   GO SOLUTION v2 — Dark Bento · Glassmorphism · Premium
   Navy Deep #050A30 · Electric Blue #0056FF · Cyan #00d4ff
   ═══════════════════════════════════════════════════════ */

/* ──── RESET ──── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  /* Palette */
  --bg: #050A30;
  --bg-card: rgba(255, 255, 255, .04);
  --bg-card-h: rgba(255, 255, 255, .08);
  --surface: #0a1045;
  --surface-2: #0e1555;
  --blue: #0056FF;
  --blue-light: #3d7eff;
  --cyan: #00d4ff;
  --purple: #7b61ff;
  --green: #34d399;
  --orange: #f97316;
  --yellow: #eab308;
  --white: #ffffff;
  --text: rgba(255, 255, 255, .85);
  --text-dim: rgba(255, 255, 255, .5);
  --text-dimmer: rgba(255, 255, 255, .3);
  --border: rgba(255, 255, 255, .08);
  --border-h: rgba(255, 255, 255, .15);
  /* Effects */
  --glass-bg: rgba(255, 255, 255, .05);
  --glass-blur: 20px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .4);
  --shadow-glow: 0 0 40px rgba(0, 86, 255, .25);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

strong {
  color: var(--white)
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

/* ──── AMBIENT ORBS ──── */
.ambient-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12
}

.orb--1 {
  width: 700px;
  height: 700px;
  background: var(--blue);
  top: -20%;
  left: -10%;
  animation: orbFloat 14s ease-in-out infinite
}

.orb--2 {
  width: 500px;
  height: 500px;
  background: var(--cyan);
  bottom: -10%;
  right: -8%;
  animation: orbFloat 18s ease-in-out infinite reverse
}

.orb--3 {
  width: 400px;
  height: 400px;
  background: var(--purple);
  top: 40%;
  left: 50%;
  animation: orbFloat 12s ease-in-out infinite 3s
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-40px) scale(1.05)
  }
}

/* ──── TYPOGRAPHY ──── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s ease infinite;
}

@keyframes gradShift {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  text-align: center
}

.section--alt {
  background: rgba(0, 0, 0, .2)
}

.section__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, .2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__heading {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 48px;
}

/* ──── GLASS UTILITY ──── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ──── BUTTONS ──── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn__ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.btn--glow {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(0, 86, 255, .4);
}

.btn--glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 86, 255, .55)
}

.btn--cyan {
  background: var(--cyan);
  color: var(--bg);
  padding: 10px 20px;
  font-weight: 700;
}

.btn--cyan:hover {
  background: var(--white);
  transform: translateY(-1px)
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-h);
  color: var(--text);
  padding: 14px 28px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--cyan);
  color: var(--cyan)
}

.btn--outline-light {
  background: transparent;
  border: 1px solid var(--border-h);
  color: var(--text);
  padding: 14px 28px;
  width: 100%;
}

.btn--outline-light:hover {
  border-color: var(--cyan);
  color: var(--cyan)
}

.btn--ghost-light {
  background: none;
  border: none;
  color: var(--cyan);
  cursor: pointer;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  padding: 0;
}

.btn--ghost-light:hover {
  text-decoration: underline
}

.btn--sm {
  padding: 8px 18px;
  font-size: .82rem
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem
}

.btn--block {
  width: 100%
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 10, 48, .6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar--solid {
  background: rgba(5, 10, 48, .92);
  box-shadow: var(--shadow)
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001
}

.logo__icon {
  width: 34px;
  height: 34px
}

.logo__icon--sm {
  width: 28px;
  height: 28px
}

.logo__svg {
  width: 100%;
  height: 100%
}

.logo__text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white)
}

.logo__accent {
  color: var(--cyan)
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition);
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition);
  border-radius: 2px
}

.nav-link:hover {
  color: var(--white)
}

.nav-link:hover::after {
  width: 100%
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition)
}

@media(max-width:768px) {
  .burger {
    display: flex
  }

  .navbar__nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 48, .97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .navbar__nav.open {
    opacity: 1;
    visibility: visible
  }

  .nav-link {
    font-size: 1.3rem
  }

  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .burger.open span:nth-child(2) {
    opacity: 0
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  text-align: left
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(0, 212, 255, .08);
  border: 1px solid rgba(0, 212, 255, .15);
  font-size: .8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0;
    transform: scale(1.6)
  }
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp .6s ease .1s both;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
  animation: fadeUp .6s ease .2s both;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .6s ease .3s both
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  animation: fadeUp .6s ease .4s both;
}

.stat {
  display: flex;
  flex-direction: column
}

.stat__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white)
}

.stat__label {
  font-size: .78rem;
  color: var(--text-dim);
  font-weight: 500
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-h)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Hero visual */
.hero__visual {
  animation: fadeUp .8s ease .3s both;
  position: relative
}

/* AI Terminal */
.ai-terminal {
  background: rgba(10, 16, 69, .7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
}

.ai-terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, .3);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.dot--red {
  background: #ff5f57
}

.dot--yellow {
  background: #febc2e
}

.dot--green {
  background: #28c840
}

.ai-terminal__title {
  margin-left: auto;
  font-size: .7rem;
  color: var(--text-dimmer);
  font-family: monospace
}

.ai-terminal__body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: .82rem;
  line-height: 2
}

.term-line {
  opacity: 0;
  animation: termIn .4s ease forwards
}

.term-line:nth-child(1) {
  animation-delay: .4s
}

.term-line:nth-child(2) {
  animation-delay: 1s
}

.term-line:nth-child(3) {
  animation-delay: 1.5s
}

.term-line:nth-child(4) {
  animation-delay: 2s
}

.term-line:nth-child(5) {
  animation-delay: 2.8s
}

.term-line:nth-child(6) {
  animation-delay: 3.5s
}

.term-line:nth-child(7) {
  animation-delay: 4.2s
}

.term-line--highlight {
  background: rgba(0, 212, 255, .06);
  margin: 4px -20px;
  padding: 4px 20px;
  border-left: 2px solid var(--cyan);
}

@keyframes termIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.t-cyan {
  color: var(--cyan)
}

.t-green {
  color: var(--green)
}

.t-yellow {
  color: var(--yellow)
}

.cursor-blink {
  animation: blink 1s step-end infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* Floating glass cards */
.ai-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  animation: floatCard 4s ease-in-out infinite;
}

.ai-float--1 {
  top: -16px;
  right: -24px;
  animation-delay: 0s
}

.ai-float--2 {
  bottom: 40px;
  left: -28px;
  animation-delay: 1.5s
}

.ai-float__icon {
  font-size: 1.4rem
}

.ai-float__val {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--white)
}

.ai-float__label {
  font-size: .7rem;
  color: var(--text-dim)
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

/* Hero responsive */
@media(max-width:900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center
  }

  .hero__content {
    text-align: center
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto
  }

  .hero__btns {
    justify-content: center
  }

  .hero__stats {
    justify-content: center
  }

  .hero__visual {
    order: -1
  }

  .ai-float--1 {
    right: 0;
    top: -12px
  }

  .ai-float--2 {
    left: 0;
    bottom: 20px
  }
}

/* ═══════════════════ BENTO GRID ═══════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.bento__card {
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento__card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
}

.bento__card--wide {
  grid-column: span 2
}

.bento__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .08;
  transition: opacity .4s;
  top: -40px;
  right: -40px;
}

.bento__card:hover .bento__glow {
  opacity: .18
}

.bento__glow--blue {
  background: var(--blue)
}

.bento__glow--cyan {
  background: var(--cyan)
}

.bento__glow--green {
  background: var(--green)
}

.bento__glow--purple {
  background: var(--purple)
}

.bento__glow--orange {
  background: var(--orange)
}

.bento__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.bento__icon-wrap {
  width: 44px;
  height: 44px
}

.bento__icon-wrap svg {
  width: 100%;
  height: 100%
}

.bento__badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 86, 255, .15);
  color: var(--blue-light);
}

.bento__badge--purple {
  background: rgba(123, 97, 255, .15);
  color: var(--purple)
}

.bento__badge--green {
  background: rgba(52, 211, 153, .12);
  color: var(--green)
}

.bento__badge--orange {
  background: rgba(249, 115, 22, .12);
  color: var(--orange)
}

.bento__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.bento__desc {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7
}

@media(max-width:768px) {
  .bento {
    grid-template-columns: 1fr
  }

  .bento__card--wide {
    grid-column: span 1
  }
}

/* ═══════════════════ TIMELINE ═══════════════════ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.timeline__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--blue), var(--purple));
  opacity: .25;
  border-radius: 2px;
}

.timeline__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}

.timeline__step:last-child {
  padding-bottom: 0
}

.timeline__marker {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px solid var(--border-h);
  border-radius: 50%;
  z-index: 1;
  font-weight: 800;
  font-size: .85rem;
  color: var(--cyan);
  transition: var(--transition);
}

.timeline__step:hover .timeline__marker {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, .2);
}

.timeline__card {
  padding: 24px;
  flex: 1;
  transition: var(--transition)
}

.timeline__card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h)
}

.timeline__icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: 12px
}

.timeline__icon svg {
  width: 100%;
  height: 100%
}

.timeline__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.timeline__card p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.7
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.price-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-h)
}

/* Pro shimmer border */
.price-card--pro {
  background: rgba(0, 86, 255, .06);
  border: 1px solid transparent;
  position: relative;
}

.price-card--pro::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple), var(--cyan));
  background-size: 300% 300%;
  animation: shimmerBorder 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 0;
}

@keyframes shimmerBorder {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.price-card--pro>* {
  position: relative;
  z-index: 1
}

.price-card__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, .04), transparent);
  animation: shimmerSweep 3s ease infinite;
  z-index: 0;
}

@keyframes shimmerSweep {
  0% {
    left: -100%
  }

  100% {
    left: 100%
  }
}

.price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  z-index: 2;
}

.price-card__head {
  margin-bottom: 24px
}

.price-card__name {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white)
}

.price-card__for {
  font-size: .82rem;
  color: var(--text-dim)
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px
}

.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text)
}

.ck {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--cyan);
  margin-top: 3px
}

@media(max-width:640px) {
  .pricing {
    grid-template-columns: 1fr;
    max-width: 400px
  }
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left
}

.faq-item {
  overflow: hidden;
  transition: var(--transition)
}

.faq-item:hover {
  border-color: var(--border-h)
}

.faq-item.active {
  border-color: rgba(0, 212, 255, .2)
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .93rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: var(--transition);
}

.faq-item__q:hover {
  color: var(--cyan)
}

.faq-item__plus {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
  border-radius: 2px;
  transition: var(--transition);
}

.faq-item__plus::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px
}

.faq-item__plus::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px
}

.faq-item.active .faq-item__plus::after {
  transform: rotate(90deg);
  opacity: 0
}

.faq-item.active .faq-item__plus::before {
  background: var(--cyan)
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1)
}

.faq-item__a p {
  padding: 0 24px 20px;
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.8
}

/* ═══════════════════ PRIVACY ═══════════════════ */
.privacy {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px;
  text-align: left;
}

.privacy__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0
}

.privacy__icon svg {
  width: 100%;
  height: 100%
}

.privacy__body h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px
}

.privacy__intro {
  font-size: .92rem;
  color: var(--text-dim);
  margin-bottom: 20px
}

.privacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 22px;
}

.privacy__item {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.privacy__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700
}

@media(max-width:768px) {
  .privacy {
    flex-direction: column;
    padding: 28px
  }

  .privacy__grid {
    grid-template-columns: 1fr
  }
}

/* ═══════════════════ CTA FINAL ═══════════════════ */
.cta-final {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 86, 255, .06), transparent);
}

.cta-final__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center
}

.footer__links a {
  font-size: .85rem;
  color: var(--text-dim);
  transition: var(--transition)
}

.footer__links a:hover {
  color: var(--cyan)
}

.footer__legals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 600px;
}

.footer__legals-title {
  font-size: .85rem;
  color: var(--text-dim);
  font-weight: 600;
}

.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: .85rem;
  font-family: var(--font);
  color: var(--text-dim);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: var(--transition);
}

.footer__legal-btn:hover {
  color: var(--cyan);
  text-decoration-color: var(--cyan);
}

.footer__copy {
  font-size: .78rem;
  color: var(--text-dimmer)
}

/* ═══════════════════ MODAL ═══════════════════ */
.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 24px;
}

.modal-wrap.show {
  opacity: 1;
  visibility: visible
}

.modal {
  max-width: 620px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.modal-wrap.show .modal {
  transform: translateY(0) scale(1)
}

.modal__x {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-dim);
  transition: var(--transition);
}

.modal__x:hover {
  color: var(--white)
}

.modal__heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-right: 32px
}

.modal__content h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 18px 0 6px
}

.modal__content h3:first-child {
  margin-top: 0
}

.modal__content p {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.8
}

/* custom scrollbar in modal */
.modal::-webkit-scrollbar {
  width: 5px
}

.modal::-webkit-scrollbar-track {
  background: transparent
}

.modal::-webkit-scrollbar-thumb {
  background: var(--border-h);
  border-radius: 4px
}

/* ═══════════════════ WHATSAPP FAB ═══════════════════ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
  transition: var(--transition);
  opacity: 0;
  transform: scale(.5);
}

.wa-fab.show {
  opacity: 1;
  transform: scale(1)
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5)
}

.wa-fab svg {
  width: 28px;
  height: 28px
}

.wa-fab__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.3);
    opacity: 0
  }
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.reveal-el {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──── GLOBAL SCROLLBAR ──── */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-h);
  border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-dimmer);
}