/* ===================================================================
   Mahadev Book ID — Standalone Static Site Stylesheet
   Converted from Tailwind CSS v4 + oklch design tokens
   =================================================================== */

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

/* ---------- Design Tokens ---------- */
:root {
  --radius: 0.875rem;

  /* Deep navy/black backgrounds */
  --background: oklch(0.16 0.02 260);
  --background-deep: oklch(0.10 0.015 260);
  --foreground: oklch(0.97 0.005 90);

  --card: oklch(0.20 0.025 260);
  --card-foreground: oklch(0.97 0.005 90);

  --popover: oklch(0.18 0.02 260);
  --popover-foreground: oklch(0.97 0.005 90);

  /* Gold accent */
  --primary: oklch(0.82 0.15 85);
  --primary-foreground: oklch(0.16 0.02 260);
  --gold: oklch(0.82 0.15 85);
  --gold-soft: oklch(0.72 0.13 80);

  /* Green CTA */
  --secondary: oklch(0.68 0.18 145);
  --secondary-foreground: oklch(0.12 0.02 260);
  --success: oklch(0.68 0.18 145);
  --success-glow: oklch(0.78 0.18 145);

  --muted: oklch(0.24 0.02 260);
  --muted-foreground: oklch(0.70 0.02 260);

  --accent: oklch(0.82 0.15 85);
  --accent-foreground: oklch(0.16 0.02 260);

  --destructive: oklch(0.62 0.24 27);
  --destructive-foreground: oklch(0.97 0.005 90);

  --border: oklch(0.32 0.02 260 / 0.6);
  --input: oklch(0.28 0.02 260);
  --ring: oklch(0.82 0.15 85);

  /* Gradients & Shadows */
  --gradient-gold: linear-gradient(135deg, oklch(0.85 0.16 85), oklch(0.72 0.14 70));
  --gradient-hero: radial-gradient(ellipse at top, oklch(0.22 0.04 260) 0%, oklch(0.10 0.015 260) 60%, oklch(0.06 0.01 260) 100%);
  --gradient-green: linear-gradient(135deg, oklch(0.72 0.19 145), oklch(0.58 0.17 150));
  --shadow-gold: 0 10px 40px -10px oklch(0.82 0.15 85 / 0.45);
  --shadow-green: 0 10px 40px -10px oklch(0.68 0.18 145 / 0.55);
  --shadow-card: 0 20px 60px -20px oklch(0 0 0 / 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background-deep);
  color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--background);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Text Gradient ---------- */
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-green);
  color: oklch(0.12 0.02 260);
  box-shadow: var(--shadow-green);
  border-radius: 9999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-green:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: oklch(0.12 0.02 260);
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: oklch(0.20 0.025 260 / 0.5);
  color: var(--foreground);
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease;
}
.btn-outline:hover {
  border-color: oklch(0.82 0.15 85 / 0.5);
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: linear-gradient(135deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.01));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.glass-card:hover {
  border-color: oklch(0.82 0.15 85 / 0.5);
}

/* ---------- Grid Background ---------- */
.grid-bg {
  background-image:
    linear-gradient(oklch(1 0 0 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.82 0.15 85 / 0.6), transparent);
}

/* ---------- Keyframes ---------- */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 oklch(0.68 0.18 145 / 0.5); }
  50% { box-shadow: 0 0 0 18px oklch(0.68 0.18 145 / 0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-scale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes header-slide-down {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float-slow 9s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2.4s ease-out infinite; }
.animate-pulse-dot { animation: pulse-dot 1.5s ease-in-out infinite; }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  animation: header-slide-down 0.5s ease forwards;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: oklch(0.16 0.02 260 / 0.8);
  border-bottom-color: var(--border);
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header-nav { padding: 1rem 2rem; }
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-logo-bg {
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.375rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
}
.header-logo-bg img {
  height: 3rem;
  width: auto;
}
@media (min-width: 768px) {
  .header-logo-bg img { height: 3.5rem; }
}
.header-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header-links { display: flex; }
}
.header-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.header-links a:hover { color: var(--gold); }

.header-cta-wrap {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta-wrap { display: block; }
}
.header-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.mobile-toggle {
  display: block;
  padding: 0.5rem;
  color: var(--foreground);
  border-radius: 0.375rem;
}
@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: oklch(0.16 0.02 260 / 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu.open { display: block; }
.mobile-menu li { margin-bottom: 0.5rem; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--foreground);
}
.mobile-menu .btn-green {
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 0 6rem;
}
@media (min-width: 768px) {
  .hero { padding: 11rem 0 8rem; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, transparent 0%, var(--background-deep) 75%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-orb--gold {
  left: -5rem; top: 10rem;
  width: 18rem; height: 18rem;
  background: oklch(0.82 0.15 85 / 0.1);
}
.hero-orb--green {
  right: -5rem; bottom: 2.5rem;
  width: 20rem; height: 20rem;
  background: oklch(0.68 0.18 145 / 0.1);
  animation-delay: 2s;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.82 0.15 85 / 0.3);
  background: oklch(0.82 0.15 85 / 0.05);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
}
.hero-badge-dot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--success);
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
}
@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
}
.hero-subtitle {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.125rem; }
}

/* Hero buttons */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}
.hero-actions .btn-green {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.hero-actions .btn-outline {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Trust badges */
.hero-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) {
  .hero-trust { grid-template-columns: repeat(3, 1fr); }
}
.trust-card {
  padding: 1rem;
  text-align: left;
}
.trust-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: oklch(0.82 0.15 85 / 0.1);
  color: var(--gold);
  flex-shrink: 0;
}
.trust-icon svg { width: 1.25rem; height: 1.25rem; }
.trust-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.trust-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* =====================================================================
   SECTION COMMON
   ===================================================================== */
.section {
  position: relative;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}
.section-header {
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}
.section-subtitle {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

/* =====================================================================
   FEATURES
   ===================================================================== */
.features-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-glow {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: oklch(0.82 0.15 85 / 0.05);
  filter: blur(30px);
  transition: opacity 0.3s;
}
.feature-card:hover .feature-glow { opacity: 1; }
.feature-body { position: relative; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: oklch(0.82 0.15 85 / 0.1);
  color: var(--gold);
}
.feature-icon svg { width: 1.5rem; height: 1.5rem; }
.feature-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}
.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* =====================================================================
   SPORTS
   ===================================================================== */
.sports-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
}
.sport-card { padding: 1.5rem; }
.sport-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sport-emoji { font-size: 3rem; line-height: 1; }
.sport-live {
  border-radius: 9999px;
  border: 1px solid oklch(0.68 0.18 145 / 0.3);
  background: oklch(0.68 0.18 145 / 0.1);
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
}
.sport-card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}
.sport-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.sport-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s;
}
.sport-link:hover { color: var(--gold-soft); }
.sport-link svg {
  width: 1rem; height: 1rem;
  transition: transform 0.2s;
}
.sport-card:hover .sport-link svg {
  transform: translateX(4px);
}

/* =====================================================================
   WHY CHOOSE US
   ===================================================================== */
.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
.why-checklist {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .why-checklist { grid-template-columns: repeat(2, 1fr); }
}
.why-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: oklch(0.20 0.025 260 / 0.4);
  padding: 0.75rem 1rem;
}
.why-check-icon {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: oklch(0.68 0.18 145 / 0.2);
  color: var(--success);
  flex-shrink: 0;
}
.why-check-icon svg { width: 0.875rem; height: 0.875rem; }
.why-check span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  padding: 1.5rem;
  text-align: center;
}
.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .stat-value { font-size: 3rem; }
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.steps-grid {
  position: relative;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.steps-line {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.82 0.15 85 / 0.4), transparent);
}
@media (min-width: 768px) {
  .steps-line { display: block; }
}
.step { position: relative; text-align: center; }
.step-circle-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}
.step-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: oklch(0.82 0.15 85 / 0.1);
  filter: blur(20px);
}
.step-circle {
  position: relative;
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid oklch(0.82 0.15 85 / 0.4);
  background: var(--background);
  color: var(--gold);
}
.step-circle svg { width: 2rem; height: 2rem; }
.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}
.step h3 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}
.step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials-wrap {
  max-width: 56rem;
  margin: 0 auto;
}
.testimonial-card {
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .testimonial-card { padding: 3rem; }
}
.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
  color: var(--gold);
}
.testimonial-stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.testimonial-text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .testimonial-text { font-size: 1.25rem; }
}
.testimonial-name {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* Carousel controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  transition: color 0.2s;
}
.carousel-btn:hover { color: var(--gold); }
.carousel-btn svg { width: 1.25rem; height: 1.25rem; }
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.carousel-dot {
  height: 0.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: var(--border);
  width: 0.5rem;
}
.carousel-dot.active {
  width: 2rem;
  background: var(--gold);
}

/* Testimonial slide transition */
.testimonial-slide {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.testimonial-slide.entering {
  opacity: 0;
  transform: translateY(20px);
}
.testimonial-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   FAQ / ACCORDION
   ===================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  overflow: hidden;
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-trigger:hover { text-decoration: none; }
.faq-chevron {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-content {
  max-height: 300px;
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid oklch(0.82 0.15 85 / 0.3);
  background: linear-gradient(to bottom right, var(--card), var(--background));
  padding: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-banner { padding: 4rem; }
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-orb--gold {
  top: -6rem; left: 50%;
  transform: translateX(-50%);
  width: 18rem; height: 18rem;
  background: oklch(0.82 0.15 85 / 0.2);
}
.cta-orb--green {
  bottom: -6rem; right: -2.5rem;
  width: 18rem; height: 18rem;
  background: oklch(0.68 0.18 145 / 0.15);
}
.cta-inner { position: relative; }
.cta-banner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .cta-banner h2 { font-size: 3.75rem; }
}
.cta-banner p {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .cta-banner p { font-size: 1.125rem; }
}
.cta-banner .btn-green {
  margin-top: 2.5rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: var(--background-deep);
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand-logo-bg {
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
}
.footer-brand-logo-bg img {
  height: 3.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .footer-brand-logo-bg img { height: 4rem; }
}
.footer-brand p {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.footer-brand .btn-green {
  margin-top: 1.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.footer-col ul {
  margin-top: 1rem;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .gold-link {
  color: var(--gold);
}
.footer-col .gold-link:hover {
  color: var(--gold-soft);
}
.footer-legal-title {
  margin-top: 1.5rem;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; }
}
.footer-inner {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .footer-inner { padding: 4rem 2rem; }
}

/* =====================================================================
   FLOATING WHATSAPP
   ===================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .floating-whatsapp { width: 4rem; height: 4rem; }
}
.floating-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}
@media (min-width: 768px) {
  .floating-whatsapp svg { width: 2rem; height: 2rem; }
}

/* =====================================================================
   ICON SIZE HELPERS
   ===================================================================== */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
