@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --background: hsl(220, 53%, 8%);
  --foreground: hsl(220, 14%, 91%);
  --card: hsl(222, 47%, 11%);
  --card-foreground: hsl(220, 14%, 91%);
  --primary: hsl(263, 84%, 58%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(222, 47%, 15%);
  --secondary-foreground: hsl(220, 14%, 91%);
  --muted: hsl(222, 30%, 18%);
  --muted-foreground: hsl(220, 14%, 65%);
  --accent: hsl(263, 84%, 58%);
  --accent-foreground: hsl(0, 0%, 100%);
  --cta: hsl(142, 71%, 45%);
  --cta-foreground: hsl(0, 0%, 100%);
  --border: hsl(222, 30%, 18%);
  --input: hsl(222, 30%, 18%);
  --ring: hsl(263, 84%, 58%);
  --radius: 0.75rem;
  --destructive: hsl(0, 84%, 60%);

  /* Derived */
  --primary-10: hsla(263, 84%, 58%, 0.1);
  --primary-20: hsla(263, 84%, 58%, 0.2);
  --primary-30: hsla(263, 84%, 58%, 0.3);
  --cta-10: hsla(142, 71%, 45%, 0.1);
  --cta-25: hsla(142, 71%, 45%, 0.25);
  --cta-30: hsla(142, 71%, 45%, 0.3);
  --cta-5: hsla(142, 71%, 45%, 0.05);
  --border-50: hsla(222, 30%, 18%, 0.5);
  --border-30: hsla(222, 30%, 18%, 0.3);
  --card-50: hsla(222, 47%, 11%, 0.5);
  --card-30: hsla(222, 47%, 11%, 0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
section { scroll-margin-top: 5rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Space Grotesk', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-1\\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-0\\.5 { gap: 0.125rem; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.min-h-screen { min-height: 100vh; }
.min-w-\\[120px\\] { min-width: 120px; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.self-start { align-self: flex-start; }
.col-span-2 { grid-column: span 2; }

/* ===== SPACING ===== */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-16 { padding-top: 4rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-3 { padding: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-0\\.5 { margin-top: 0.125rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mr-1 { margin-right: 0.25rem; }
.ml-auto { margin-left: auto; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ===== SIZING ===== */
.w-3 { width: 0.75rem; } .h-3 { height: 0.75rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; } .h-7 { height: 1.75rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-10 { width: 2.5rem; } .h-10 { height: 2.5rem; }
.w-12 { width: 3rem; } .h-12 { height: 3rem; }
.w-14 { width: 3.5rem; } .h-14 { height: 3.5rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }

/* ===== COLORS ===== */
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-secondary { background-color: var(--secondary); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-cta { background-color: var(--cta); }
.bg-card\/30 { background-color: var(--card-30); }
.bg-card\/50 { background-color: var(--card-50); }
.bg-primary\/5 { background-color: var(--primary-10); background-color: hsla(263,84%,58%,0.05); }
.bg-primary\/10 { background-color: var(--primary-10); }
.bg-primary\/20 { background-color: var(--primary-20); }
.bg-cta\/5 { background-color: var(--cta-5); }
.bg-cta\/10 { background-color: hsla(142,71%,45%,0.1); }
.bg-secondary\/50 { background-color: hsla(222,47%,15%,0.5); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-cta { color: var(--cta); }
.text-cta-foreground { color: var(--cta-foreground); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-yellow-400 { color: hsl(48,96%,53%); }
.fill-yellow-400 { fill: hsl(48,96%,53%); }
.text-border { color: var(--border); }

/* ===== BORDERS ===== */
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-l-4 { border-left: 4px solid; }
.border-border { border-color: var(--border); }
.border-border\/50 { border-color: hsla(222,30%,18%,0.5); }
.border-border\/30 { border-color: hsla(222,30%,18%,0.3); }
.border-primary { border-color: var(--primary); }
.border-primary\/30 { border-color: hsla(263,84%,58%,0.3); }
.border-primary\/50 { border-color: hsla(263,84%,58%,0.5); }
.border-cta { border-color: var(--cta); }
.border-cta\/30 { border-color: hsla(142,71%,45%,0.3); }

/* ===== ROUNDED ===== */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 0.25rem); }
.rounded-2xl { border-radius: calc(var(--radius) + 0.5rem); }
.rounded-full { border-radius: 9999px; }
.rounded-r-lg { border-top-right-radius: var(--radius); border-bottom-right-radius: var(--radius); }

/* ===== TYPOGRAPHY SIZES ===== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.list-decimal { list-style-type: decimal; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.pl-5 { padding-left: 1.25rem; }

/* ===== SHADOWS ===== */
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-cta\/25 { box-shadow: 0 10px 15px -3px hsla(142,71%,45%,0.25); }
.shadow-cta\/30 { box-shadow: 0 4px 15px hsla(142,71%,45%,0.3); }

/* ===== Z-INDEX ===== */
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ===== OPACITY ===== */
.opacity-50 { opacity: 0.5; }

/* ===== SR-ONLY ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ===== RING ===== */
.ring-1 { box-shadow: 0 0 0 1px; }
.ring-2 { box-shadow: 0 0 0 2px; }
.ring-primary\/30 { --ring-color: hsla(263,84%,58%,0.3); box-shadow: 0 0 0 2px var(--ring-color); }

/* ===== TRANSITIONS ===== */
.transition-colors { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }
.transition-transform { transition: transform 0.2s; }
.transition-all { transition: all 0.15s; }
.duration-200 { transition-duration: 0.2s; }

/* ===== HOVER ===== */
.hover\:text-primary:hover { color: var(--primary); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-primary\/10:hover { background-color: var(--primary-10); }
.hover\:bg-primary\/20:hover { background-color: var(--primary-20); }
.hover\:bg-cta\/90:hover { background-color: hsl(142,71%,40%); }
.hover\:bg-secondary\/80:hover { background-color: hsl(222,47%,12%); }
.hover\:border-primary\/30:hover { border-color: hsla(263,84%,58%,0.3); }
.hover\:border-primary\/50:hover { border-color: hsla(263,84%,58%,0.5); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* ===== FOCUS ===== */
.group-open\:rotate-90 { transform: rotate(0deg); }
details[open] summary .group-open\:rotate-90 { transform: rotate(90deg); }

/* ===== GRADIENTS ===== */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

/* ===== BACKDROP ===== */
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

/* ===== SCROLLBAR ===== */
.scroll-mt-20 { scroll-margin-top: 5rem; }
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ===== CURSOR ===== */
.cursor-pointer { cursor: pointer; }

/* ===== OUTLINE ===== */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ===== SITE-SPECIFIC COMPONENT STYLES ===== */

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid hsla(222,30%,18%,0.5);
  background-color: hsla(220,53%,8%,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
.site-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.site-logo span { color: var(--primary); }
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
  color: hsla(220,14%,91%,0.8);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--primary); }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: var(--cta);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  transition: background-color 0.15s;
}
.btn-cta:hover { background-color: hsl(142,71%,40%); }
.btn-cta-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: var(--cta);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 15px -3px hsla(142,71%,45%,0.25);
  transition: transform 0.2s;
}
.btn-cta-lg:hover { transform: scale(1.05); }
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid hsla(263,84%,58%,0.5);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  transition: background-color 0.15s;
}
.btn-primary-outline:hover { background-color: var(--primary-10); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid hsla(263,84%,58%,0.5);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: background-color 0.15s;
}
.btn-secondary:hover { background-color: var(--primary-10); }
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  color: var(--foreground);
}
.mobile-menu {
  display: none;
  border-top: 1px solid hsla(222,30%,18%,0.5);
  background-color: hsla(220,53%,8%,0.95);
  backdrop-filter: blur(24px);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}
.mobile-menu a {
  display: block;
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.15s;
  color: hsla(220,14%,91%,0.8);
}
.mobile-menu a:hover { background-color: var(--secondary); }
.mobile-menu a.active { color: var(--primary); background-color: var(--secondary); }
.mobile-menu .btn-cta-mobile {
  display: block;
  border-radius: var(--radius);
  background-color: var(--cta);
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-top: 0.5rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid hsla(222,30%,18%,0.5);
  background-color: var(--card);
  margin-top: auto;
}
.site-footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.footer-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-top: 0.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.footer-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-col a {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(222,30%,18%,0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--cta);
  padding: 0.875rem 1.25rem;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 20px hsla(142,71%,45%,0.3);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float span { display: none; font-size: 0.875rem; }

/* MAIN LAYOUT */
.site-layout { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; padding-top: 4rem; }

/* CARD */
.card {
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid hsla(222,30%,18%,0.5);
  background-color: var(--card);
  padding: 1.5rem;
}
.card-hover { transition: border-color 0.15s; }
.card-hover:hover { border-color: hsla(263,84%,58%,0.3); }

/* STAT BADGE */
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid hsla(263,84%,58%,0.3);
  background-color: hsla(263,84%,58%,0.1);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  color: var(--primary);
}

/* BREADCRUMB */
.breadcrumb-nav { padding: 0.75rem 0; }
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.375rem; }
.breadcrumb-list a { transition: color 0.15s; }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .current { color: var(--foreground); font-weight: 500; }

/* ICON CIRCLE */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) + 0.25rem);
  background-color: hsla(263,84%,58%,0.1);
  color: var(--primary);
}
.icon-circle-sm { width: 2.5rem; height: 2.5rem; }
.icon-circle-md { width: 3rem; height: 3rem; }
.icon-circle-lg { width: 3.5rem; height: 3.5rem; }
.icon-circle-cta { background-color: hsla(142,71%,45%,0.1); color: var(--cta); }

/* STEP NUMBER */
.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: hsla(263,84%,58%,0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.step-num-sm {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: hsla(263,84%,58%,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 1.25rem;
}

/* SECTION HEADINGS */
.section-tag {
  font-size: 3rem;
  font-weight: 700;
  color: hsla(222,30%,18%,0.8);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

/* PLAN CARDS */
.plan-card {
  border-radius: 1rem;
  border: 1px solid hsla(222,30%,18%,0.5);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: var(--card);
}
.plan-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsla(263,84%,58%,0.3);
  background-color: hsla(263,84%,58%,0.05);
}
.plan-badge {
  display: inline-block;
  align-self: flex-start;
  border-radius: 9999px;
  background-color: hsla(263,84%,58%,0.2);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* TABLE */
.data-table { font-size: 0.875rem; }
.data-table thead { background-color: var(--card); border-bottom: 1px solid hsla(222,30%,18%,0.5); }
.data-table th { padding: 1rem 1.5rem; text-align: left; font-weight: 600; }
.data-table th.center { text-align: center; }
.data-table td { padding: 0.75rem 1.5rem; color: var(--muted-foreground); }
.data-table td.center { text-align: center; }
.data-table tr { border-bottom: 1px solid hsla(222,30%,18%,0.3); }
.data-table tr:nth-child(even) { background-color: hsla(222,47%,11%,0.3); }
.data-table td.highlight { color: var(--cta); }
.data-table td.primary { color: var(--primary); }

/* FAQ ACCORDION */
.faq-item {
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid hsla(222,30%,18%,0.5);
  background-color: var(--card);
  overflow: hidden;
}
.faq-summary {
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--foreground);
  user-select: none;
  -webkit-user-select: none;
}
.faq-summary:hover { background-color: hsla(222,30%,18%,0.3); }
.faq-chevron { color: var(--muted-foreground); transition: transform 0.2s; flex-shrink: 0; }
details[open] .faq-chevron { transform: rotate(90deg); }
.faq-body { padding: 0 1.5rem 1rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }

/* HERO */
.hero-gradient { background-image: linear-gradient(to bottom right, hsla(263,84%,58%,0.1), transparent, hsla(142,71%,45%,0.05)); }
.hero-gradient-r { background-image: linear-gradient(to right, hsla(263,84%,58%,0.1), hsla(263,84%,58%,0.05), hsla(142,71%,45%,0.1)); }

/* SOCIAL PROOF BAR */
.proof-bar {
  border-top: 1px solid hsla(222,30%,18%,0.5);
  border-bottom: 1px solid hsla(222,30%,18%,0.5);
  background-color: hsla(222,47%,11%,0.5);
}

/* DEVICES GRID */
.devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid hsla(222,30%,18%,0.5);
  background-color: var(--card);
  padding: 1.5rem 2rem;
  min-width: 120px;
  transition: border-color 0.15s;
}
.device-card:hover { border-color: hsla(263,84%,58%,0.5); }

/* TESTIMONIAL */
.star-filled { color: hsl(48,96%,53%); fill: hsl(48,96%,53%); }
.star-empty { color: hsla(222,30%,18%,1); }

/* REVIEWS */
.review-card {
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid hsla(222,30%,18%,0.5);
  background-color: var(--card);
  padding: 1.5rem;
}
.review-date { font-size: 0.75rem; color: hsla(220,14%,65%,0.6); margin-top: 0.25rem; }

/* GLOSSARY */
.glossary-card {
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid hsla(222,30%,18%,0.5);
  background-color: var(--card);
  padding: 1rem;
}

/* HINT BOX */
.hint-box {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background-color: hsla(222,47%,15%,0.5);
  border-radius: var(--radius);
  padding: 0.75rem;
}

/* HIGHLIGHT BOX */
.highlight-box {
  border-left: 4px solid var(--cta);
  background-color: hsla(142,71%,45%,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem;
  margin-top: 1rem;
}

/* QUICK SUMMARY BOX */
.quick-summary {
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid hsla(263,84%,58%,0.3);
  background-color: hsla(263,84%,58%,0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

/* CONTACT CARD */
.contact-cta-card {
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid hsla(142,71%,45%,0.3);
  background-color: hsla(142,71%,45%,0.05);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* APPS TABLE */
.apps-table { font-size: 0.875rem; overflow-x: auto; }

/* LEGAL ARTICLE */
.legal-article { max-width: 48rem; }
.legal-article section { margin-bottom: 2rem; }
.legal-article h2 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; }
.legal-article p { color: var(--muted-foreground); line-height: 1.625; font-size: 0.875rem; }
.legal-article ul, .legal-article ol { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.legal-article li { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.legal-article strong { color: var(--foreground); }

/* CHECK ICON */
.check-icon { width: 1rem; height: 1rem; color: var(--cta); flex-shrink: 0; margin-top: 0.125rem; }
.check-icon-primary { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.check-icon-lg { width: 1.25rem; height: 1.25rem; color: var(--cta); flex-shrink: 0; margin-top: 0.125rem; }
.check-icon-lg-primary { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }

/* SVG ICONS */
svg { display: inline-block; vertical-align: middle; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .sm\:col-span-2 { grid-column: span 2; }
  .sm\:inline { display: inline; }
  .whatsapp-float span { display: inline; }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-header { flex-direction: row; align-items: center; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-buttons { flex-direction: row; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:hidden { display: none; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .btn-cta-header { display: block; }
  .mobile-toggle { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:col-span-1 { grid-column: span 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
@media (min-width: 1280px) {
  .footer-grid { grid-template-columns: repeat(9, 1fr); }
  .xl\:grid-cols-9 { grid-template-columns: repeat(9, 1fr); }
}

/* ACTIVE NAV LINK */
.nav-active { color: var(--primary) !important; }

/* NOT FOUND */
.not-found-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; text-align: center; padding: 2rem; }

/* ===== DYNAMIC PAGE STYLES ===== */
.dynamic-hero {
  padding: 3rem 0 2.5rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}
.category-badge {
  background: hsl(var(--primary) / 0.15);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
}
.reading-time, .hero-meta time {
  color: hsl(var(--muted-foreground));
}
.hero-text {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  max-width: 720px;
  margin: 1rem 0 1.75rem;
  line-height: 1.7;
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .page-sidebar {
    order: -1;
  }
}
.page-article .page-section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid hsl(var(--border));
}
.page-article .page-section:last-child {
  border-bottom: none;
}
.page-article h2 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
}
.section-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1rem;
}
.highlight-box {
  background: hsl(var(--primary) / 0.08);
  border-left: 4px solid hsl(var(--primary));
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p {
  margin: 0;
  color: hsl(var(--foreground));
  font-weight: 500;
  line-height: 1.6;
}
.steps-list, .items-list {
  padding-left: 0;
  margin: 1rem 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.steps-list li, .items-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
}
.steps-list li strong, .items-list li strong {
  color: hsl(var(--foreground));
  font-size: 0.95rem;
}
.steps-list li span, .items-list li span {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.model-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.model-emoji {
  font-size: 2rem;
}
.model-card strong {
  color: hsl(var(--foreground));
  font-size: 0.95rem;
}
.model-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
  line-height: 1.5;
}
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}
.resource-item {
  padding: 1rem 1.25rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
}
.resource-item strong {
  display: block;
  margin-bottom: 0.4rem;
  color: hsl(var(--foreground));
}
.resource-item p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}
.apps-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.apps-table th {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--foreground));
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid hsl(var(--border));
}
.apps-table td {
  padding: 0.65rem 1rem;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--border));
}
.apps-table tr:last-child td { border-bottom: none; }
.apps-table tr:hover td { background: hsl(var(--card)); }

/* Sidebar */
.page-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 1.5rem;
}
.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}
.sidebar-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}
.sidebar-card p {
  font-size: 0.88rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.6;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-links li a {
  font-size: 0.9rem;
  color: hsl(var(--primary));
  text-decoration: none;
}
.sidebar-links li a:hover { text-decoration: underline; }
.cta-card {
  border-color: hsl(var(--primary) / 0.3);
  background: hsl(var(--primary) / 0.05);
}
.btn-wa {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn-wa:hover { background: #1ebe59; color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* Breadcrumbs */
.breadcrumbs {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.75rem 0;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after { content: "›"; color: hsl(var(--muted-foreground)); }
.breadcrumbs a { color: hsl(var(--primary)); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: hsl(var(--muted-foreground)); }
