/* ============================================================
   GROWTHEDGE DIGITAL — PREMIUM DESIGN SYSTEM
   Aesthetic: Dark Luxury / Executive
   Fonts: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,700;12..96,800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --bg-0: #020810;
  --bg-1: #05101C;
  --bg-2: #081526;
  --bg-3: #0C1A30;
  --bg-4: #111F38;
  --glass: rgba(255, 255, 255, 0.035);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.16);
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --amber-glow: rgba(245, 158, 11, 0.2);
  --orange: #F97316;
  --orange-bright: #FB923C;
  --orange-glow: rgba(249, 115, 22, 0.25);
  --green: #10B981;
  --green-dim: rgba(16, 185, 129, 0.12);
  --blue: #2563EB;
  --blue-light: #60A5FA;
  --blue-dim: rgba(37, 99, 235, 0.12);
  --red-dim: rgba(239, 68, 68, 0.12);
  --text-1: #F1F5F9;
  --text-2: #94A3B8;
  --text-3: #475569;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --glow-amber: 0 0 48px rgba(245, 158, 11, 0.18);
  --glow-orange: 0 0 48px rgba(249, 115, 22, 0.22);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --nav-h: 72px;
  --urgency-h: 44px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
  height: var(--urgency-h);
  background: linear-gradient(135deg, #1a0a00, #2d1500);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: var(--amber-light);
  padding: 0 20px;
  transition: transform 0.3s ease;
}
.urgency-bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.urgency-bar .close-bar {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 6px; cursor: pointer;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-2); transition: all 0.2s;
}
.urgency-bar .close-bar:hover { background: rgba(255,255,255,0.15); color: var(--text-1); }
.urgency-bar.hidden { transform: translateY(-100%); }
body.no-urgency { --urgency-h: 0px; }

/* ── NAVBAR ── */
nav {
  position: fixed; left: 0; right: 0; z-index: 1000;
  top: var(--urgency-h);
  height: var(--nav-h);
  background: rgba(5, 16, 28, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: top 0.3s ease, background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  padding: 0 24px; display: flex; align-items: center; gap: 40px;
}
.logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.4);
}
.logo span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 7px 14px; border-radius: 8px;
  transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text-1); background: var(--glass); }
.nav-links a.active { color: var(--text-1); background: var(--glass); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 9px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: white; font-size: 13.5px; font-weight: 700;
  box-shadow: 0 2px 16px var(--amber-glow);
  transition: all 0.25s; white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--amber-glow); filter: brightness(1.08); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; z-index: 999;
  top: calc(var(--urgency-h) + var(--nav-h)); left: 0; right: 0;
  background: rgba(5, 16, 28, 0.98); backdrop-filter: blur(24px);
  padding: 16px; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 13px 16px; border-radius: 10px;
  font-size: 15px; font-weight: 500; color: var(--text-2);
  transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text-1); background: var(--glass); }
.mobile-menu .m-cta {
  margin-top: 8px; padding: 14px 16px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: white; font-weight: 700; text-align: center;
}

/* ── PAGE WRAPPER ── */
.page-top { padding-top: calc(var(--urgency-h) + var(--nav-h)); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-2); }

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--amber-dim); color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.75; max-width: 560px;
}
.text-amber { color: var(--amber); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-gradient {
  background: linear-gradient(135deg, var(--amber-light), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.25s; border: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: white; box-shadow: 0 4px 20px var(--amber-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--orange-glow); filter: brightness(1.06); }

.btn-outline {
  background: transparent; color: var(--text-1);
  border: 1.5px solid var(--glass-border);
}
.btn-outline:hover { border-color: var(--glass-border-hover); background: var(--glass); }

.btn-wa {
  background: #1DB954; color: white;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(29, 185, 84, 0.4); filter: brightness(1.08); }

.btn-ghost { background: var(--glass); color: var(--text-2); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--glass-hover); color: var(--text-1); }

.btn-lg { padding: 16px 32px; font-size: 15.5px; border-radius: var(--radius); }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: var(--radius-xs); }
.btn-xl { padding: 18px 40px; font-size: 16px; border-radius: var(--radius); }

/* Shine animation */
.btn-shine::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite 1s;
}
@keyframes shine { 0%{left:-100%} 30%{left:150%} 100%{left:150%} }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 20px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
}
.badge-amber { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }
.badge-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.badge-blue { background: var(--blue-dim); color: var(--blue-light); border: 1px solid rgba(37,99,235,0.2); }
.badge-red { background: var(--red-dim); color: #F87171; border: 1px solid rgba(239,68,68,0.2); }

/* ── GLASS CARD ── */
.glass-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 158, 11, 0.08);
}

/* Amber top accent border */
.card-accent-top { position: relative; overflow: hidden; }
.card-accent-top::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange), transparent);
}

/* ── ICON BOX ── */
.icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  background: var(--amber-dim); border: 1px solid rgba(245, 158, 11, 0.18);
}
.icon-box-blue { background: var(--blue-dim); border-color: rgba(37,99,235,0.18); }
.icon-box-green { background: var(--green-dim); border-color: rgba(16,185,129,0.18); }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── STAT CARD ── */
.stat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: 0.3s;
}
.stat-card:hover { border-color: rgba(245, 158, 11, 0.25); background: var(--glass-hover); }
.stat-num {
  font-family: var(--font-display); font-size: 42px; font-weight: 800;
  line-height: 1; background: linear-gradient(135deg, var(--amber-light), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 13.5px; color: var(--text-2); margin-top: 8px; }

/* ── CHECKLIST ── */
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-icon {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; margin-top: 2px;
  background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--green);
}
.check-item-text h5 { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.check-item-text p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

/* ── PROCESS STEP ── */
.process-item { display: flex; gap: 14px; align-items: flex-start; }
.process-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--amber-dim); border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--amber);
}
.process-item h5 { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.process-item p { font-size: 13.5px; color: var(--text-2); }

/* ── TESTIMONIAL ── */
.testi-card { padding: 28px; transition: 0.3s; }
.testi-card:hover { transform: translateY(-4px); }
.stars { color: #FBBF24; letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testi-text { color: var(--text-1); font-size: 15px; line-height: 1.75; margin-bottom: 22px; font-style: italic; opacity: 0.9; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 800; color: white; flex-shrink: 0;
}
.testi-author h5 { font-weight: 600; font-size: 14px; }
.testi-author p { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(249,115,22,0.08) 50%, rgba(37,99,235,0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--radius-xl); padding: 72px 48px; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 30% 50%, rgba(245,158,11,0.06) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(249,115,22,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; position: relative; }
.cta-banner p { font-size: 17px; color: var(--text-2); margin-bottom: 36px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.cta-note { margin-top: 18px; font-size: 13px; color: var(--text-3); display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-note span { display: flex; align-items: center; gap: 5px; }

/* ── GUARANTEE BADGE ── */
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius); padding: 14px 20px; margin-top: 28px;
}
.guarantee-badge .icon { font-size: 24px; }
.guarantee-badge p { font-size: 13.5px; color: var(--text-2); line-height: 1.5; }
.guarantee-badge strong { color: var(--green); }

/* ── FAQ ── */
.faq-item {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245, 158, 11, 0.25); }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 15px; gap: 16px;
  transition: color 0.2s;
}
.faq-item.open .faq-q { color: var(--amber); }
.faq-toggle { font-size: 20px; color: var(--amber); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
  font-size: 14.5px; color: var(--text-2); line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 24px 20px; }

/* ── FLOATING ELEMENTS ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1DB954; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.5);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float .pulse-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(29, 185, 84, 0.4);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  padding: 12px 16px; background: var(--bg-0);
  border-top: 1px solid var(--border);
  gap: 10px;
}
.mobile-sticky-cta .btn { flex: 1; justify-content: center; font-size: 14px; padding: 14px; }

/* Toast notifications */
#toast-container {
  position: fixed; bottom: 100px; left: 24px; z-index: 997;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast {
  background: rgba(5, 16, 28, 0.96); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); border-radius: var(--radius);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-1); max-width: 280px;
  box-shadow: var(--shadow);
  animation: toast-in 0.4s ease forwards;
  pointer-events: auto;
}
.toast .toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: blink 1.5s infinite; }
.toast.exit { animation: toast-out 0.3s ease forwards; }
@keyframes toast-in { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }
@keyframes toast-out { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(-20px)} }

/* ── BACKGROUND DECORATIONS ── */
.bg-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.bg-orb-amber { background: rgba(245, 158, 11, 0.06); }
.bg-orb-blue { background: rgba(37, 99, 235, 0.07); }
.bg-orb-orange { background: rgba(249, 115, 22, 0.05); }

/* Background grid pattern */
.bg-grid {
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── PRICING BOX ── */
.pricing-note {
  display: flex; align-items: center; gap: 12px;
  background: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius); padding: 18px 22px; margin-top: 28px;
}
.pricing-note .icon { font-size: 22px; flex-shrink: 0; }
.pricing-note p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.pricing-note strong { color: var(--amber); }

/* ── RESULT CARD ── */
.result-card { padding: 32px; }
.rc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.rc-biz { display: flex; align-items: center; gap: 12px; }
.rc-biz-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.rc-biz h4 { font-weight: 700; font-size: 15px; }
.rc-biz p { font-size: 12px; color: var(--text-2); }
.rc-metrics { display: flex; gap: 20px; }
.rc-m .num { font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1; }
.rc-m .lbl { font-size: 11px; color: var(--text-3); margin-top: 3px; }
.rc-quote { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text-2); line-height: 1.65; font-style: italic; }
.rc-win { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--green); }

/* ── FOOTER ── */
footer {
  background: var(--bg-0); border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  cursor: pointer; transition: all 0.2s;
}
.social-btn:hover { border-color: rgba(245, 158, 11, 0.3); background: var(--amber-dim); }
.footer-col h5 { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-2); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-3); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-badges { display: flex; gap: 8px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(245,158,11,0.15); }
  50% { box-shadow: 0 0 40px rgba(245,158,11,0.3); }
}
@keyframes spin { to{transform:rotate(360deg)} }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-banner { padding: 44px 24px; }
  .wa-float { bottom: 80px; right: 16px; width: 52px; height: 52px; font-size: 22px; }
  .mobile-sticky-cta { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(24px, 7vw, 34px); }
  .cta-actions { flex-direction: column; align-items: center; }
  #toast-container { left: 12px; right: 12px; bottom: 90px; }
  .toast { max-width: 100%; }
}
