/* ═══════════════════════════════════════════════════════
   GO SOLUTION v2 — Dark Bento · Glassmorphism · Premium
   Navy Deep #050A30 · Electric Blue #0056FF · Cyan #00d4ff
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

/* ──── RESET ──── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  /* Palette from webgoa */
  --bg-color: #0a0e1a;
  --bg: #0a0e1a;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --accent-cyan: #00d4ff;
  --accent-blue: #0056FF;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --whatsapp-green: #25D366;
  --font-heading: 'Clash Display', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Retained palette for other sections */
  --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: #ffffff;
  --text-dim: #94a3b8;
  --text-dimmer: rgba(255, 255, 255, .3);
  --border: rgba(255, 255, 255, 0.08);
  --border-h: rgba(255, 255, 255, .15);
  
  /* Effects */
  --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: 'Plus Jakarta Sans', 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
}

/* ──── BACKGROUND EFFECTS ──── */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: 
    radial-gradient(circle at 15% 50%, rgba(0, 86, 255, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 212, 255, 0.1), transparent 25%);
  pointer-events: none;
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ──── TYPOGRAPHY ──── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
}
.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;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo svg {
  width: 28px;
  height: 28px;
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

/* Buttons */
.btn-primary {
  background: var(--accent-cyan);
  color: #000;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-primary:hover {
  background: #00b5d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--accent-cyan);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active, .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-green);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Chat Mockup */
.chat-mockup {
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chat-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-title {
  font-weight: 500;
}

.chat-status {
  font-size: 0.8rem;
  color: var(--accent-cyan);
}

.chat-body {
  padding: 1.5rem;
  height: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: hidden;
}

.message {
  max-width: 80%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  animation: messageFadeIn 0.5s forwards;
}

.message.user {
  background: var(--glass-bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.message.bot {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

@keyframes messageFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.5rem;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0% { opacity: 0.2; }
  20% { opacity: 1; }
  100% { opacity: 0.2; }
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    margin: 0 auto 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

/* ═══════════════════ 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);
}