/* ═══════════════════════════════════════════════════
   AAIQO — style.css
   Design: Deep navy + electric teal editorial SaaS
═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --navy-900: #040d1e;
  --navy-800: #071326;
  --navy-700: #0d1f3c;
  --navy-600: #142952;
  --navy-400: #2a4a7f;
  --teal-500: #0ea5e9;
  --teal-400: #38bdf8;
  --teal-300: #7dd3fc;
  --indigo: #6366f1;
  --green: #10b981;
  --amber: #f59e0b;
  --pink: #ec4899;
  --white: #ffffff;
  --text-primary: #e8f0fe;
  --text-secondary: #8ca8d4;
  --text-muted: #4d6a9a;
  --border: rgba(14, 165, 233, 0.18);
  --card-bg: rgba(13, 31, 60, 0.7);
  --card-border: rgba(14, 165, 233, 0.15);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-gap: 7rem;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

/* ── Utility ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-gap) 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--teal-400), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
em { font-style: normal; color: var(--teal-400); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  border-radius: 50px;
  padding: .55rem 1.4rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--indigo));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(14,165,233,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,165,233,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--teal-400); }
.btn-outline {
  background: transparent;
  color: var(--teal-400);
  border-color: var(--teal-500);
}
.btn-outline:hover {
  background: rgba(14,165,233,.1);
  transform: translateY(-2px);
}
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }

/* ── Section labels ── */
.section-label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 1rem;
  text-align: center;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}


/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(4,13,30,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo-mark {
  background: linear-gradient(135deg, var(--teal-400), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; gap: .75rem; align-items: center; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all .25s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(4,13,30,.97);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: .5rem; width: 100%; justify-content: center; }
.mobile-menu.open { display: flex; }


/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#mesh-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 4rem;
  row-gap: 1.5rem;
  align-items: center;
}
.hero-badge {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.25);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal-300);
  width: fit-content;
  animation: fadeUp .7s .1s both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-heading {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  animation: fadeUp .7s .2s both;
}
.hero-sub {
  grid-column: 1;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  animation: fadeUp .7s .3s both;
}
.hero-cta {
  grid-column: 1;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s both;
}
.hero-note {
  grid-column: 1;
  font-size: .78rem;
  color: var(--text-muted);
  animation: fadeUp .7s .5s both;
}
.hero-visual {
  grid-column: 2;
  grid-row: 1 / 7;
  position: relative;
  animation: fadeUp .9s .3s both;
}

/* Chat Mockup */
.chat-mockup {
  background: var(--navy-700);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(14,165,233,.05);
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--indigo));
  flex-shrink: 0;
}
.chat-name { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--white); }
.chat-status { display: flex; align-items: center; gap: .35rem; font-size: .72rem; color: var(--text-muted); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.chat-badge {
  margin-left: auto;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 50px;
  padding: .2rem .65rem;
}
.chat-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 200px;
}
.msg { display: flex; align-items: flex-start; gap: .6rem; }
.msg-in { flex-direction: row; }
.msg-out { flex-direction: row-reverse; }
.msg-source {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 700;
  flex-shrink: 0; margin-top: .1rem;
}
.msg-source.whatsapp { background: #25D366; color: #fff; }
.msg-source.messenger { background: linear-gradient(135deg,#0099ff,#a033ff); color: #fff; }
.msg-source.webchat { background: var(--teal-500); color: #fff; }
.msg-bubble {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .55rem .85rem;
  font-size: .82rem;
  color: var(--text-primary);
  max-width: 75%;
}
.msg-out .msg-bubble {
  background: linear-gradient(135deg, rgba(14,165,233,.25), rgba(99,102,241,.2));
  border-color: rgba(14,165,233,.25);
}
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-top: 1px solid var(--border);
}
.chat-fake-input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.chat-send-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: rgba(7,19,38,.9);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.card-notif { bottom: -1rem; left: -2rem; animation: float 4s ease-in-out infinite; }
.card-stat { top: 2rem; right: -2rem; flex-direction: column; align-items: flex-start; animation: float 4s 2s ease-in-out infinite; }
.notif-icon { font-size: 1.2rem; }
.notif-title { font-size: .8rem; font-weight: 600; color: var(--white); }
.notif-sub { font-size: .7rem; color: var(--text-muted); }
.stat-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--teal-400); line-height: 1; }
.stat-val span { font-size: .9rem; }
.stat-label { font-size: .72rem; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features { background: var(--navy-800); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  animation: fadeUp .6s var(--delay, 0s) both;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--indigo));
  opacity: 0;
  transition: opacity .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); border-color: rgba(14,165,233,.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .6rem;
}
.feature-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.feature-tags span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--teal-400);
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 50px;
  padding: .2rem .65rem;
}


/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.how { background: var(--navy-900); }
.steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}
.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--teal-500);
  opacity: .6;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.step-content p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step-visual { display: flex; flex-direction: column; gap: .5rem; }

/* Code block */
.step-code pre {
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .75rem;
  line-height: 1.6;
  overflow-x: auto;
}
.code-tag { color: #60a5fa; }
.code-attr { color: #a5f3fc; }
.code-str { color: #86efac; }

/* Channel pills */
.step-channels { flex-direction: row; flex-wrap: wrap; }
.channel-pill {
  display: flex; align-items: center; gap: .4rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: .35rem .85rem;
  font-size: .8rem;
  color: var(--text-primary);
}
.ch-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700;
}
.ch-icon.wa { background: #25D366; color: #fff; }
.ch-icon.fb { background: #0866FF; color: #fff; }
.ch-icon.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.add-more { color: var(--text-muted); border-style: dashed; }

/* Ready badge */
.ready-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 50px;
  padding: .5rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
}
.ready-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

/* Divider */
.step-divider {
  width: 2px;
  height: 60px;
  margin-left: 1.5rem;
}
.step-divider svg { width: 2px; height: 60px; }


/* ═══════════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════════ */
.benefits { background: var(--navy-800); }
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.benefits-text .section-heading { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color .25s, transform .25s;
}
.benefit-card:hover { border-color: rgba(14,165,233,.3); transform: translateX(4px); }
.benefit-metric {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-400);
  flex-shrink: 0;
  min-width: 4rem;
  line-height: 1;
  padding-top: .1rem;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}
.benefit-card p { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; }


/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing { background: var(--navy-900); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.plan-featured {
  border-color: var(--teal-500);
  background: linear-gradient(160deg, rgba(14,165,233,.1), rgba(99,102,241,.07));
  box-shadow: 0 0 0 1px rgba(14,165,233,.25), 0 20px 50px rgba(14,165,233,.12);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-500), var(--indigo));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .25rem .85rem;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.plan-price {
  margin-bottom: .5rem;
  display: flex;
  align-items: baseline;
  gap: .25rem;
}
.plan-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.plan-period { font-size: .9rem; color: var(--text-muted); }
.plan-desc { font-size: .85rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  color: var(--text-secondary);
}
.plan-features li.muted { color: var(--text-muted); }
.check { color: var(--teal-400); font-weight: 700; flex-shrink: 0; }
.plan-btn { width: 100%; justify-content: center; margin-top: auto; }


/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact { background: var(--navy-800); }
.contact-inner { text-align: center; }
.contact-options {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  text-decoration: none;
  transition: border-color .25s, transform .25s;
}
.contact-card:hover { border-color: rgba(14,165,233,.3); transform: translateY(-2px); }
.contact-icon {
  font-size: 1.5rem;
  width: 46px; height: 46px;
  background: rgba(14,165,233,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-title { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: .95rem; }
.contact-detail { font-size: .82rem; color: var(--text-secondary); margin-top: .1rem; }


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: var(--navy-900); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
  padding: 4rem 0 3rem;
}
.footer-brand .logo { display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-top: .5rem; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.footer-col a {
  font-size: .85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--teal-400); }


/* ═══════════════════════════════════════════════════
   SCROLL REVEAL (JS hook)
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-gap: 5rem; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 7rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badge, .hero-heading, .hero-sub, .hero-cta, .hero-note { grid-column: 1; }
  .hero-visual {
    grid-column: 1;
    grid-row: auto;
    margin-top: 2rem;
  }
  .card-notif { left: 0; bottom: -1.5rem; }
  .card-stat { right: 0; top: 1rem; }

  /* Benefits */
  .benefits-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .benefits-text { text-align: center; }
  .benefits-text .section-heading,
  .benefits-text .section-sub,
  .benefits-text .btn { margin-left: auto; margin-right: auto; text-align: center; }
  .benefits-text .section-heading { text-align: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Steps */
  .step { grid-template-columns: 3rem 1fr; }
  .step-visual { grid-column: 1 / -1; grid-row: auto; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-heading { font-size: 2.2rem; }
  .section-heading { font-size: 1.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .step { grid-template-columns: 1fr; gap: 1rem; }
  .step-number { font-size: 1.5rem; }
}
