/* === Cactus Casino — Desert Night Theme === */
/* Palette: emerald-green + sand-gold on deep dark */
:root {
  --clr-accent: #10b981;
  --clr-accent-bright: #34d399;
  --clr-accent-dim: #059669;
  --clr-gold: #d4a843;
  --clr-gold-light: #e8c96a;
  --clr-grad: linear-gradient(135deg, #10b981 0%, #34d399 45%, #d4a843 100%);
  --clr-grad-soft: linear-gradient(135deg, rgba(16,185,129,0.10) 0%, rgba(212,168,67,0.05) 100%);
  --clr-grad-hero: linear-gradient(155deg, #0c1a12 0%, #0f2318 40%, #0a1510 100%);
  --clr-glow: 0 0 32px rgba(16,185,129,0.14);
  --clr-glow-strong: 0 0 56px rgba(16,185,129,0.22);
  --surface: #0c1a12;
  --surface-card: #132a1b;
  --surface-card-hover: #1a3825;
  --surface-alt: #0f2117;
  --surface-raised: #183524;
  --ink: #eef5f0;
  --ink-secondary: #9bbaa8;
  --ink-muted: #5e8570;
  --stroke: rgba(255,255,255,0.06);
  --stroke-accent: rgba(16,185,129,0.22);
  --shadow-base: 0 2px 22px rgba(0,0,0,0.35);
  --shadow-deep: 0 14px 44px rgba(0,0,0,0.45);
  --shadow-glow: 0 4px 28px rgba(16,185,129,0.10);
  --rds: 14px;
  --rds-sm: 8px;
  --rds-xs: 5px;
  --mw: 1140px;
  --ease: 0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--clr-accent-bright); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--clr-gold-light); }
img { max-width: 100%; height: auto; }

.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 22px; }

/* ===== TOPBAR ===== */
.ct-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  background: rgba(12,26,18,0.84);
  border-bottom: 1px solid var(--stroke);
}
.ct-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.ct-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--clr-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.ct-nav__list { display: flex; gap: 2px; list-style: none; align-items: center; }
.ct-nav__list a {
  display: block;
  padding: 8px 15px;
  border-radius: var(--rds-sm);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink-secondary);
  transition: all var(--ease);
}
.ct-nav__list a:hover {
  background: rgba(16,185,129,0.07);
  color: var(--clr-accent-bright);
}

/* ===== BUTTONS ===== */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.94rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  font-family: inherit;
}
.ct-btn--accent {
  background: var(--clr-grad);
  color: #0c1a12;
  box-shadow: 0 4px 22px rgba(16,185,129,0.28);
}
.ct-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(16,185,129,0.42);
  color: #0c1a12;
}
.ct-btn--outline {
  background: transparent;
  color: var(--clr-accent-bright);
  border: 2px solid rgba(16,185,129,0.30);
}
.ct-btn--outline:hover {
  background: rgba(16,185,129,0.07);
  border-color: var(--clr-accent);
  color: var(--clr-accent-bright);
}
.ct-btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--ink);
  border: 1px solid var(--stroke);
}
.ct-btn--ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.12);
  color: var(--ink);
}
.ct-btn--sm { padding: 9px 20px; font-size: 0.83rem; }

/* ===== HERO ===== */
.ct-hero {
  padding: 88px 0 68px;
  text-align: center;
  background: var(--clr-grad-hero);
  position: relative;
  overflow: hidden;
}
.ct-hero::before {
  content: '';
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.ct-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.28), transparent);
}
.ct-hero .wrap { position: relative; z-index: 1; }

.ct-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.81rem;
  font-weight: 600;
  background: rgba(16,185,129,0.09);
  color: var(--clr-accent-bright);
  border: 1px solid rgba(16,185,129,0.18);
  margin-bottom: 22px;
}
.ct-hero__icon { font-size: 3rem; margin-bottom: 14px; display: block; filter: drop-shadow(0 0 18px rgba(16,185,129,0.25)); }

.ct-hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.ct-hero h1 em {
  font-style: normal;
  background: var(--clr-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-hero__sub {
  font-size: 1.12rem;
  color: var(--ink-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.72;
}
.ct-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* hero metrics */
.ct-metrics {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--stroke);
}
.ct-metric { text-align: center; }
.ct-metric__val {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  background: var(--clr-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.ct-metric__lbl { font-size: 0.8rem; color: var(--ink-muted); margin-top: 3px; }

/* ===== RATING BAR ===== */
.ct-ratings {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--stroke);
  padding: 18px 0;
  overflow: hidden;
}
.ct-ratings__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.ct-ratings__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-secondary);
  white-space: nowrap;
}
.ct-ratings__item strong { font-weight: 700; color: var(--clr-accent-bright); }

/* ===== SECTIONS ===== */
.ct-section {
  padding: 68px 0;
  position: relative;
}
.ct-section--alt { background: var(--surface-alt); }

.ct-section__head {
  text-align: center;
  margin-bottom: 44px;
}
.ct-section__tag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(16,185,129,0.09);
  color: var(--clr-accent);
  margin-bottom: 12px;
}
.ct-section__head h2 {
  font-size: 1.95rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.ct-section__head p {
  color: var(--ink-secondary);
  font-size: 1.02rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== INFO TABLE ===== */
.ct-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0;
  border-radius: var(--rds);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--surface-card);
}
.ct-table th, .ct-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
  font-size: 0.94rem;
}
.ct-table th {
  background: var(--surface-raised);
  font-weight: 600;
  color: var(--ink);
  width: 38%;
}
.ct-table td { color: var(--ink-secondary); }
.ct-table tr:last-child th, .ct-table tr:last-child td { border-bottom: none; }
.ct-table tr:hover td { color: var(--ink); }

/* ===== CARDS ===== */
.ct-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

.ct-card {
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--rds);
  padding: 28px 24px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.ct-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--clr-grad);
  opacity: 0;
  transition: opacity var(--ease);
}
.ct-card:hover {
  background: var(--surface-card-hover);
  border-color: var(--stroke-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.ct-card:hover::after { opacity: 1; }

.ct-card__icon { font-size: 2.3rem; margin-bottom: 14px; display: block; filter: drop-shadow(0 0 8px rgba(16,185,129,0.18)); }
.ct-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.ct-card p { color: var(--ink-secondary); font-size: 0.89rem; line-height: 1.65; }

/* ===== FEATURE HIGHLIGHT ===== */
.ct-feature {
  grid-column: 1 / -1;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--rds);
  padding: 38px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all var(--ease);
}
.ct-feature:hover { border-color: var(--stroke-accent); background: var(--surface-card-hover); }
.ct-feature__icon { font-size: 3.4rem; flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(16,185,129,0.18)); }
.ct-feature h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 7px; }
.ct-feature p { color: var(--ink-secondary); font-size: 0.92rem; line-height: 1.65; }

/* ===== STEPS ===== */
.ct-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 18px; counter-reset: ctstep; }

.ct-step {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--rds);
  padding: 28px 22px 22px;
  counter-increment: ctstep;
  transition: all var(--ease);
}
.ct-step:hover { border-color: var(--stroke-accent); background: var(--surface-card-hover); }
.ct-step::before {
  content: counter(ctstep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--clr-grad);
  color: #0c1a12;
  font-weight: 800;
  font-size: 0.93rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(16,185,129,0.18);
}
.ct-step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.ct-step p { color: var(--ink-secondary); font-size: 0.88rem; }

/* ===== SCORE ===== */
.ct-score {
  display: flex;
  align-items: center;
  gap: 34px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--rds);
  padding: 34px;
  margin: 28px 0;
}
.ct-score__ring {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: conic-gradient(var(--clr-accent) 0% 88%, var(--stroke) 88% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 28px rgba(16,185,129,0.13);
}
.ct-score__ring-inner {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--surface-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ct-score__num {
  font-size: 1.55rem;
  font-weight: 800;
  background: var(--clr-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ct-score__of { font-size: 0.63rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ct-score__info { flex: 1; }
.ct-score__info h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 7px; }
.ct-score__info p { color: var(--ink-secondary); font-size: 0.88rem; margin-bottom: 10px; }
.ct-bars { display: flex; flex-direction: column; gap: 7px; }
.ct-bar { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; }
.ct-bar__lbl { width: 110px; color: var(--ink-secondary); flex-shrink: 0; }
.ct-bar__track { flex: 1; height: 5px; background: var(--stroke); border-radius: 3px; overflow: hidden; }
.ct-bar__fill { height: 100%; background: var(--clr-grad); border-radius: 3px; }
.ct-bar__val { width: 28px; text-align: right; color: var(--clr-accent-bright); font-weight: 600; }

/* ===== REVIEWS ===== */
.ct-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }

.ct-review {
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--rds);
  padding: 26px;
  transition: all var(--ease);
}
.ct-review:hover { border-color: var(--stroke-accent); background: var(--surface-card-hover); }
.ct-review__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ct-review__stars { color: #facc15; font-size: 0.95rem; letter-spacing: 2px; }
.ct-review__date { font-size: 0.76rem; color: var(--ink-muted); }
.ct-review__text { color: var(--ink-secondary); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.65; font-style: italic; }
.ct-review__author { display: flex; align-items: center; gap: 10px; }
.ct-review__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--clr-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #0c1a12;
}
.ct-review__name { font-weight: 600; font-size: 0.86rem; color: var(--ink); display: block; }
.ct-review__city { font-size: 0.76rem; color: var(--ink-muted); }

/* ===== FAQ ===== */
.ct-faq { max-width: 740px; margin: 0 auto; }
.ct-faq__block {
  border: 1px solid var(--stroke);
  border-radius: var(--rds);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--surface-card);
  transition: all var(--ease);
}
.ct-faq__block:hover { border-color: var(--stroke-accent); }
.ct-faq__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 0.96rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  transition: background var(--ease);
  font-family: inherit;
}
.ct-faq__trigger:hover { background: rgba(16,185,129,0.04); }
.ct-faq__trigger::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--clr-accent);
  transition: transform var(--ease);
  flex-shrink: 0;
  margin-left: 14px;
}
.ct-faq__block.is-expanded .ct-faq__trigger::after { transform: rotate(45deg); }
.ct-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.ct-faq__block.is-expanded .ct-faq__body { max-height: 420px; padding: 0 22px 18px; }
.ct-faq__body p { color: var(--ink-secondary); font-size: 0.9rem; line-height: 1.65; }

/* ===== ARTICLE ===== */
.ct-article { max-width: 780px; margin: 0 auto; }
.ct-article h2 { font-size: 1.55rem; font-weight: 800; margin: 38px 0 12px; letter-spacing: -0.01em; color: var(--ink); }
.ct-article h3 { font-size: 1.2rem; font-weight: 700; margin: 30px 0 9px; color: var(--ink); }
.ct-article p { margin-bottom: 14px; color: var(--ink-secondary); line-height: 1.75; }
.ct-article ul, .ct-article ol { margin: 0 0 14px 22px; color: var(--ink-secondary); }
.ct-article li { margin-bottom: 7px; }

/* ===== CTA BANNER ===== */
.ct-cta {
  background: var(--surface-card);
  border: 1px solid var(--stroke-accent);
  border-radius: var(--rds);
  padding: 48px 40px;
  text-align: center;
  color: var(--ink);
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}
.ct-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-grad);
}
.ct-cta::after {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 58%);
  pointer-events: none;
}
.ct-cta h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.ct-cta p { color: var(--ink-secondary); margin-bottom: 26px; font-size: 1.02rem; position: relative; z-index: 1; }
.ct-cta .ct-btn { position: relative; z-index: 1; }

/* ===== BREADCRUMBS ===== */
.ct-crumbs { padding: 14px 0; font-size: 0.84rem; }
.ct-crumbs a { color: var(--ink-muted); }
.ct-crumbs a:hover { color: var(--clr-accent-bright); }
.ct-crumbs span { color: var(--ink-secondary); }

/* ===== PAGE HERO ===== */
.ct-page-hero {
  padding: 48px 0 36px;
  background: var(--clr-grad-hero);
  border-bottom: 1px solid var(--stroke);
  text-align: center;
  position: relative;
}
.ct-page-hero::before {
  content: '';
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 68%);
  pointer-events: none;
}
.ct-page-hero h1 { font-size: 2.1rem; font-weight: 800; margin-bottom: 10px; position: relative; }
.ct-page-hero p { color: var(--ink-secondary); font-size: 1.02rem; max-width: 540px; margin: 0 auto; position: relative; }

/* ===== PAGE CONTENT ===== */
.ct-page-body { padding: 44px 0 68px; }
.ct-page-body .ct-content { max-width: 780px; margin: 0 auto; }
.ct-page-body h2 { font-size: 1.45rem; font-weight: 700; margin: 34px 0 12px; color: var(--ink); }
.ct-page-body h3 { font-size: 1.15rem; font-weight: 600; margin: 26px 0 9px; color: var(--ink); }
.ct-page-body p { margin-bottom: 12px; color: var(--ink-secondary); line-height: 1.72; }
.ct-page-body ul, .ct-page-body ol { margin: 0 0 12px 22px; color: var(--ink-secondary); }
.ct-page-body li { margin-bottom: 7px; }

/* ===== PROS / CONS ===== */
.ct-versus { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.ct-pros, .ct-cons {
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--rds);
  padding: 26px;
  transition: all var(--ease);
}
.ct-pros:hover, .ct-cons:hover { border-color: var(--stroke-accent); }
.ct-pros h3, .ct-cons h3 { font-size: 1.02rem; margin-bottom: 12px; color: var(--ink); }
.ct-pros ul, .ct-cons ul { list-style: none; margin: 0; }
.ct-pros li::before { content: '✅ '; }
.ct-cons li::before { content: '⚠️ '; }
.ct-pros li, .ct-cons li { margin-bottom: 9px; font-size: 0.89rem; color: var(--ink-secondary); }

/* ===== HIGHLIGHT ===== */
.ct-highlight {
  background: rgba(16,185,129,0.05);
  border-left: 3px solid var(--clr-accent);
  border-radius: 0 var(--rds-sm) var(--rds-sm) 0;
  padding: 20px 24px;
  margin: 22px 0;
}
.ct-highlight p { color: var(--ink-secondary); margin: 0; }
.ct-highlight strong { color: var(--clr-accent-bright); }

/* ===== PAYMENT METHODS ===== */
.ct-payments { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 22px 0; }
.ct-pay {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  background: var(--surface-card);
  border: 1px solid var(--stroke);
  border-radius: var(--rds-sm);
  font-size: 0.84rem;
  color: var(--ink-secondary);
  transition: all var(--ease);
}
.ct-pay:hover { border-color: var(--stroke-accent); color: var(--ink); }

/* ===== BADGE ===== */
.ct-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  background: rgba(16,185,129,0.09);
  color: var(--clr-accent);
  border: 1px solid rgba(16,185,129,0.14);
}
.ct-date { font-size: 0.79rem; color: var(--ink-muted); margin-top: 8px; }

/* ===== DIVIDER ===== */
.ct-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stroke-accent), transparent);
  margin: 0;
  border: none;
}

/* ===== FOOTER ===== */
.ct-footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--stroke);
  padding: 52px 0 32px;
}
.ct-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 32px;
}
.ct-footer__about p { color: var(--ink-muted); font-size: 0.86rem; margin-top: 10px; line-height: 1.65; }
.ct-footer__col h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 14px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
.ct-footer__col ul { list-style: none; }
.ct-footer__col li { margin-bottom: 9px; }
.ct-footer__col a { color: var(--ink-muted); font-size: 0.86rem; transition: color var(--ease); }
.ct-footer__col a:hover { color: var(--clr-accent-bright); }
.ct-footer__bottom {
  border-top: 1px solid var(--stroke);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ct-footer__bottom p { color: var(--ink-muted); font-size: 0.78rem; }

/* ===== HAMBURGER ===== */
.ct-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
}
.ct-burger span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--ease);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ct-hero h1 { font-size: 1.95rem; }
  .ct-hero { padding: 56px 0 46px; }
  .ct-metrics { gap: 22px; flex-wrap: wrap; }
  .ct-metric__val { font-size: 1.45rem; }
  .ct-section { padding: 44px 0; }
  .ct-section__head h2 { font-size: 1.45rem; }
  .ct-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .ct-topbar__inner { height: 56px; }
  .ct-score { flex-direction: column; text-align: center; }
  .ct-bars { width: 100%; }
  .ct-bar__lbl { width: 95px; }
  .ct-ratings__row { gap: 18px; }
  .ct-burger { display: block; }
  .ct-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: var(--surface-card);
    border-bottom: 1px solid var(--stroke);
    padding: 10px 18px;
    box-shadow: var(--shadow-deep);
  }
  .ct-nav.is-open { display: block; }
  .ct-nav__list { flex-direction: column; }
  .ct-versus { grid-template-columns: 1fr; }
  .ct-cta { padding: 32px 22px; }
  .ct-cta h2 { font-size: 1.35rem; }
  .ct-page-hero h1 { font-size: 1.65rem; }
  .ct-feature { flex-direction: column; text-align: center; padding: 26px; }
}

@media (max-width: 480px) {
  .ct-hero h1 { font-size: 1.55rem; }
  .ct-hero__sub { font-size: 0.96rem; }
  .ct-btn { padding: 10px 22px; font-size: 0.87rem; }
  .ct-grid { grid-template-columns: 1fr; }
  .ct-metrics { gap: 14px; }
  .ct-ratings__row { gap: 10px; font-size: 0.78rem; }
}

/* ===== UTILITIES ===== */
.u-center { text-align: center; }
.u-mt-s { margin-top: 18px; }
.u-mb-s { margin-bottom: 18px; }
.u-mt-m { margin-top: 36px; }
.u-mb-m { margin-bottom: 36px; }
