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

/* ===== CSS Variables (Design Tokens) ===== */
:root {
  --background: 140 10% 98%;
  --foreground: 160 30% 10%;
  --card: 0 0% 100%;
  --card-foreground: 160 30% 10%;
  --primary: 152 55% 38%;
  --primary-foreground: 0 0% 100%;
  --secondary: 145 20% 94%;
  --secondary-foreground: 160 30% 15%;
  --muted: 140 12% 94%;
  --muted-foreground: 160 10% 45%;
  --accent: 152 55% 38%;
  --accent-foreground: 0 0% 100%;
  --border: 145 15% 90%;
  --ring: 152 55% 38%;
  --radius: 0.75rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== Container ===== */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background: hsla(140, 10%, 98%, 0.95);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 4rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; font-family: 'Space Grotesk', sans-serif; }
.logo img { height: 60px; width: 60px; }
.logo .accent { color: hsl(var(--primary)); }

.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a { font-size: 0.875rem; font-weight: 500; color: hsl(var(--muted-foreground)); transition: color 0.2s; }
.desktop-nav a:hover { color: hsl(var(--foreground)); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 0.875rem;
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
}
.btn-primary:hover { opacity: 0.9; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-outline {
  background: transparent; border: 1px solid hsl(var(--border)); color: hsl(var(--foreground));
}
.btn-outline:hover { background: hsl(var(--secondary)); }
.btn-ghost { background: transparent; color: hsl(var(--muted-foreground)); }
.btn-ghost:hover { color: hsl(var(--foreground)); background: hsl(var(--secondary)); }
.btn-full { width: 100%; }

/* ===== Mobile Menu ===== */
.burger-btn {
  display: none; background: none; border: none; padding: 0.5rem;
  color: hsl(var(--foreground));
}
.burger-btn svg { width: 20px; height: 20px; }
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 100;
}
.mobile-menu-overlay.active { display: block; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 75%; max-width: 320px;
  background: hsl(var(--card)); z-index: 101; padding: 2rem 1.5rem;
  transform: translateX(100%); transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.mobile-menu nav a { font-size: 1.125rem; font-weight: 500; padding: 0.5rem 0; }

/* ===== Badge ===== */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  border-radius: 9999px;
  background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
}
.badge-outline {
  background: transparent; border: 1px solid hsl(var(--border));
  font-size: 0.75rem; font-weight: 400; padding: 0.25rem 0.5rem;
  border-radius: 9999px; color: hsl(var(--foreground));
}
.badge svg, .badge-icon { width: 16px; height: 16px; color: hsl(var(--primary)); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; padding: 5rem 0 5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, hsla(152,55%,38%,0.05), transparent, hsla(152,55%,38%,0.03));
}
.hero .container { position: relative; text-align: center; }
.hero h1 { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.5rem; line-height: 1.15; }
.hero .subtitle { font-size: 1.125rem; color: hsl(var(--muted-foreground)); margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.hero .badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }

/* ===== Section ===== */
.section { padding: 4rem 0; }
.section-alt { background: hsla(145,20%,94%,0.3); }
.section-title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 0.75rem; }
.section-subtitle { color: hsl(var(--muted-foreground)); text-align: center; margin-bottom: 3rem; }

/* ===== Card ===== */
.card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.card-body { padding: 1.5rem; }

/* ===== Rating Cards ===== */
.rating-list { display: flex; flex-direction: column; gap: 1.25rem; }
.rating-card { display: flex; flex-direction: column; }
.rating-left {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  background: hsla(145,20%,94%,0.5);
}
.rating-rank { font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); }
.rating-logo { height: 40px; width: 40px; border-radius: 0.5rem; object-fit: contain; }
.rating-name { font-weight: 700; font-size: 1.125rem; }
.rating-stars { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.rating-star-icon { width: 14px; height: 14px; color: hsl(var(--primary)); fill: hsl(var(--primary)); }
.rating-right { flex: 1; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rating-bonus { font-weight: 600; color: hsl(var(--primary)); margin-bottom: 0.25rem; }
.rating-bonus-details { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.rating-advantages { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.rating-actions { display: flex; flex-direction: column; gap: 0.5rem; min-width: 160px; }
.promo-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.375rem;
  font-size: 0.75rem; color: hsl(var(--muted-foreground)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 0.375rem 0.75rem; background: transparent;
  transition: color 0.2s;
}
.promo-btn:hover { color: hsl(var(--foreground)); }
.copy-icon { width: 12px; height: 12px; }

/* ===== Steps Grid ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.step { position: relative; text-align: center; padding: 1.5rem; }
.step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3.5rem; width: 3.5rem; border-radius: 1rem;
  background: hsla(152,55%,38%,0.1); color: hsl(var(--primary)); margin-bottom: 1rem;
}
.step-icon svg { width: 24px; height: 24px; }
.step-number {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.875rem; font-weight: 700; color: hsla(152,55%,38%,0.1);
}
.step h3 { font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ===== Bonuses Grid ===== */
.bonuses-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.bonus-card .card-body { display: flex; flex-direction: column; gap: 0.75rem; }
.bonus-header { display: flex; align-items: flex-start; gap: 0.75rem; }
.bonus-icon {
  display: flex; align-items: center; justify-content: center;
  height: 2.5rem; width: 2.5rem; border-radius: 0.75rem;
  background: hsla(152,55%,38%,0.1); flex-shrink: 0;
}
.bonus-icon svg { width: 20px; height: 20px; color: hsl(var(--primary)); }
.bonus-room { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.bonus-title { font-weight: 700; font-size: 1.125rem; }
.bonus-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ===== Real Money Features ===== */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
.feature-card .card-body { display: flex; align-items: flex-start; gap: 0.75rem; }
.feature-icon {
  display: flex; align-items: center; justify-content: center;
  height: 2.5rem; width: 2.5rem; border-radius: 0.75rem;
  background: hsla(152,55%,38%,0.1); flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; color: hsl(var(--primary)); }
.feature-title { font-weight: 600; margin-bottom: 0.25rem; }
.feature-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
.prose { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.7; margin-bottom: 2.5rem; }
.prose p { margin-bottom: 1rem; }
.prose strong { color: hsl(var(--foreground)); }

/* ===== FAQ Accordion ===== */
.accordion { width: 100%; }
.accordion-item { border-bottom: 1px solid hsl(var(--border)); }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1rem 0; font-size: 1rem; font-weight: 500; text-align: left;
  background: none; border: none; color: hsl(var(--foreground));
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
}
.accordion-trigger:hover { text-decoration: underline; }
.accordion-icon {
  width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s ease;
  color: hsl(var(--muted-foreground));
}
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.accordion-content-inner {
  padding: 0 0 1rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7;
}

/* ===== Footer ===== */
.site-footer { border-top: 1px solid hsl(var(--border)); padding: 3rem 0; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.footer-logo img { height: 44px; width: 44px; }
.footer-logo p { font-weight: 600; font-size: 1.125rem; font-family: 'Space Grotesk', sans-serif; }
.footer-tagline { font-size: 0.875rem; color: hsl(var(--muted-foreground)); text-align: center; margin-bottom: 2rem; }
.footer-legal { text-align: center; font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.footer-legal p { margin-bottom: 0.75rem; }
.footer-legal .copyright { opacity: 0.6; }

/* ===== Tooltip ===== */
.tooltip-wrap { position: relative; display: inline-flex; align-items: center; cursor: help; }
.tooltip-wrap svg { width: 16px; height: 16px; color: hsl(var(--muted-foreground)); transition: color 0.2s; }
.tooltip-wrap:hover svg { color: hsl(var(--foreground)); }
.tooltip-box {
  display: none; position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); background: hsl(var(--foreground)); color: hsl(var(--background));
  font-size: 0.75rem; padding: 0.5rem 0.75rem; border-radius: 0.375rem;
  white-space: nowrap; z-index: 10;
}
.tooltip-wrap:hover .tooltip-box { display: block; }

/* ===== SVG icons inline ===== */
.icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .burger-btn { display: none; }
  .desktop-nav { display: flex; }
  .hero { padding: 7rem 0; }
  .hero h1 { font-size: 3rem; }
  .hero .subtitle { font-size: 1.25rem; }
  .section { padding: 6rem 0; }
  .section-title { font-size: 1.875rem; }
  .rating-card { flex-direction: row; align-items: stretch; }
  .rating-left { min-width: 200px; }
  .rating-right { flex-direction: row; align-items: center; }
}
@media (max-width: 767px) {
  .desktop-nav { display: none; }
  .burger-btn { display: block; }
}
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
