/* fgdq IPTV Premium Dark Theme - Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --background: hsl(0, 0%, 5%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 8%);
  --card-foreground: hsl(0, 0%, 98%);
  --primary: hsl(217, 91%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 12%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 65%);
  --accent: hsl(0, 0%, 15%);
  --accent-foreground: hsl(0, 0%, 98%);
  --success: hsl(142, 71%, 45%);
  --success-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(0, 0%, 18%);
  --input: hsl(0, 0%, 15%);
  --ring: hsl(217, 91%, 60%);
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(217, 91%, 45%) 100%);
  --gradient-success: linear-gradient(135deg, hsl(142, 71%, 45%) 0%, hsl(142, 71%, 35%) 100%);
  --shadow-glow: 0 0 40px hsla(217, 91%, 60%, 0.3);
  --shadow-card: 0 4px 24px hsla(0, 0%, 0%, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
section[id], div[id] { scroll-margin-top: 100px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* Layout */
.section-container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .section-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .section-container { padding: 0 2rem; } }

/* Typography */
.text-gradient {
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-muted { color: var(--muted-foreground); }
.text-destructive { color: var(--destructive); }

/* Cards */
.card-premium {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.card-premium:hover {
  border-color: hsla(217, 91%, 60%, 0.5);
  box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: white;
  background: var(--gradient-success);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: inherit;
}
.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsla(142, 71%, 45%, 0.4);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: white;
  background: var(--gradient-primary);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: inherit;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}
.btn-w-full { width: 100%; }

/* Glass effect */
.glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: hsla(0, 0%, 5%, 0.8);
  border-color: hsla(0, 0%, 18%, 0.5);
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid hsla(0, 0%, 18%, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) { .header-inner { height: 5rem; } }
.logo { font-size: 1.5rem; font-weight: 700; }
@media (min-width: 1024px) { .logo { font-size: 1.875rem; } }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-cta-wrap { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .nav-cta-wrap { display: flex; } }
.menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.mobile-menu { display: none; padding: 1rem 0; border-top: 1px solid hsla(0, 0%, 18%, 0.5); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.5rem 0; font-size: 1rem; font-weight: 500; color: var(--muted-foreground); transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }
.mobile-menu .btn-cta { margin-top: 1rem; width: 100%; text-align: center; }

/* Main layout */
main { padding-top: 4rem; }
@media (min-width: 1024px) { main { padding-top: 5rem; } }

/* Footer */
footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-logo { font-size: 1.5rem; font-weight: 700; display: inline-block; margin-bottom: 1rem; }
.footer-desc { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1.5rem; }
.footer-heading { font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-copyright { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-disclaimer { font-size: 0.75rem; color: var(--muted-foreground); }

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-success);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px hsla(142, 71%, 45%, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-glow 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px hsla(142, 71%, 45%, 0.7); }
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; fill: white; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; padding: 1rem 0; font-size: 0.875rem; color: var(--muted-foreground); }
.breadcrumb a { color: var(--muted-foreground); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--muted-foreground); }
.breadcrumb-current { color: var(--foreground); }

/* Grid utilities */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-6 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 640px) {
  .grid-2-sm { grid-template-columns: repeat(2, 1fr); }
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Text sizes */
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }

/* Spacing */
.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-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-3 { padding: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Max widths */
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-full { max-width: 100%; }

/* Widths/heights */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.flex-shrink-0 { flex-shrink: 0; }

/* Border utilities */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: var(--radius); }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.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); }

/* Background utilities */
.bg-card { background-color: var(--card); }
.bg-card-50 { background-color: hsla(0, 0%, 8%, 0.5); }
.bg-primary-5 { background-color: hsla(217, 91%, 60%, 0.05); }
.bg-primary-10 { background-color: hsla(217, 91%, 60%, 0.1); }
.bg-primary-20 { background-color: hsla(217, 91%, 60%, 0.2); }
.bg-success-5 { background-color: hsla(142, 71%, 45%, 0.05); }
.bg-success-10 { background-color: hsla(142, 71%, 45%, 0.1); }
.bg-success-20 { background-color: hsla(142, 71%, 45%, 0.2); }
.bg-muted-50 { background-color: hsla(0, 0%, 15%, 0.5); }

/* Icon containers */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Table */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { text-align: left; padding: 1rem; font-weight: 600; border-bottom: 1px solid var(--border); }
.compare-table td { padding: 1rem; border-bottom: 1px solid hsla(0, 0%, 18%, 0.5); }
.compare-table th.col-iptv, .compare-table td.col-iptv { text-align: center; background-color: hsla(217, 91%, 60%, 0.05); }
.compare-table th.col-other, .compare-table td.col-other { text-align: center; color: var(--muted-foreground); font-size: 0.875rem; }

/* Details/Summary (FAQ) */
details.faq-item { cursor: pointer; }
details.faq-item summary { font-weight: 600; display: flex; align-items: center; justify-content: space-between; list-style: none; padding: 0.25rem 0; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary .arrow { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform 0.3s; }
details.faq-item[open] summary .arrow { transform: rotate(90deg); }
details.faq-item .faq-answer { margin-top: 1rem; color: var(--muted-foreground); }

/* Hero specific */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(217, 91%, 60%, 0.1), transparent);
  pointer-events: none;
}

/* Section backgrounds */
.section-alt { background-color: hsla(0, 0%, 8%, 0.3); }
.section-gradient { background: linear-gradient(to right, hsla(217, 91%, 60%, 0.1), hsla(142, 71%, 45%, 0.1), hsla(217, 91%, 60%, 0.1)); }
.section-gradient-success { background: linear-gradient(to bottom, hsla(142, 71%, 45%, 0.05), transparent); }

/* Pill/tag for plan most popular */
.tag-popular {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.tag-most-wanted {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
}
.plan-highlight { border-color: var(--primary); box-shadow: 0 0 0 2px hsla(217, 91%, 60%, 0.2); }
.plan-success-highlight { border-color: var(--success); box-shadow: 0 0 0 2px hsla(142, 71%, 45%, 0.2); }

/* Pill badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Icon inline helpers */
.icon-inline { display: inline-block; vertical-align: middle; width: 1em; height: 1em; }

/* Steps/numbered circles */
.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsla(217, 91%, 60%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.step-number-sm {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: hsla(217, 91%, 60%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

/* Social proof row */
.social-proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .social-proof-grid { grid-template-columns: repeat(4, 1fr); } }
.social-proof-num { font-size: 1.875rem; font-weight: 700; color: var(--primary); }
@media (min-width: 768px) { .social-proof-num { font-size: 2.25rem; } }

/* Responsive hero */
.hero-section { position: relative; padding: 5rem 0; overflow: hidden; }
@media (min-width: 1024px) { .hero-section { padding: 8rem 0; } }
.hero-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-subtitle { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2rem; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

/* Section title */
.section-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-subtitle { color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }

/* CTA row */
.cta-row { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .cta-row { flex-direction: row; } }
.cta-row-center { justify-content: center; }

/* Inline link */
.link-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  transition: text-decoration 0.2s;
}
.link-primary:hover { text-decoration: underline; }

/* Check/x item */
.check-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.check-item-md { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon { flex-shrink: 0; margin-top: 0.125rem; }
.x-icon { flex-shrink: 0; margin-top: 0.125rem; color: var(--muted-foreground); }

/* Tablet / mobile responsive */
@media (min-width: 640px) {
  .sm-flex-row { flex-direction: row; }
  .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .md-col-span-2 { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .lg-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-6 { grid-template-columns: repeat(6, 1fr); }
  .lg-py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg-py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg-col-span-1 { grid-column: span 1; }
}

/* Overflow x auto for table */
.overflow-x-auto { overflow-x: auto; }

/* Animations */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsla(142, 71%, 45%, 0.4); }
  50% { box-shadow: 0 0 40px hsla(142, 71%, 45%, 0.6); }
}
@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  .whatsapp-float { animation: none; }
}

/* SVG icon size helpers */
svg.icon-xs { width: 0.75rem; height: 0.75rem; }
svg.icon-sm { width: 1rem; height: 1rem; }
svg.icon-md { width: 1.25rem; height: 1.25rem; }
svg.icon-lg { width: 1.5rem; height: 1.5rem; }
svg.icon-xl { width: 2rem; height: 2rem; }
svg.icon-2xl { width: 2.5rem; height: 2.5rem; }
svg.icon-3xl { width: 3rem; height: 3rem; }
svg.icon-4xl { width: 4rem; height: 4rem; }
svg { display: inline-block; vertical-align: middle; }

/* Colors for icons */
.stroke-primary { stroke: var(--primary); }
.stroke-success { stroke: var(--success); }
.stroke-muted { stroke: var(--muted-foreground); }
.stroke-destructive { stroke: var(--destructive); }
.stroke-foreground { stroke: var(--foreground); }

/* Sticky stuff */
.relative { position: relative; }
.absolute { position: absolute; }

/* Misc */
.hidden { display: none; }
@media (min-width: 1024px) { .lg-block { display: block; } }

/* Definition list for glossary */
dl.glossary-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { dl.glossary-grid { grid-template-columns: repeat(2, 1fr); } }
dl.glossary-grid dt { font-weight: 600; color: var(--primary); margin-bottom: 0.25rem; }
dl.glossary-grid dd { color: var(--muted-foreground); font-size: 0.875rem; }

/* Star rating */
.stars { display: flex; gap: 0.25rem; }
.star { width: 1rem; height: 1rem; color: #f59e0b; fill: #f59e0b; }

/* Muted text and spacing helpers */
.text-foreground { color: var(--foreground); }

/* Plan success highlight */
.plan-success-highlight {
  border: 1px solid hsla(142,71%,45%,0.4) !important;
  background: hsla(142,71%,45%,0.05) !important;
}
.tag-most-wanted {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: var(--background);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: 0.05em;
}

/* Step number small */
.step-number-sm {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background: hsla(217,91%,60%,0.15);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* X icon for plan features */
.x-icon { display: flex; }

/* Icon sizes */
.icon-xs { width: 0.75rem; height: 0.75rem; }
.icon-4xl { width: 4rem; height: 4rem; }

/* Link primary */
.link-primary {
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}
.link-primary:hover { text-decoration: underline; }

/* CTA row center */
.cta-row-center { justify-content: center; }

/* Plan highlight (Pro) */
.plan-highlight {
  border: 1px solid hsla(217,91%,60%,0.4) !important;
  background: hsla(217,91%,60%,0.05) !important;
}

/* Grid 2 cols */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

/* Stroke muted for x marks */
.stroke-muted { stroke: var(--muted-foreground); }
.stroke-destructive { stroke: var(--destructive, hsl(0,62%,50%)); }

/* pill badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}
