/* ===== CHETSBETS.COM — FULL SITE STYLES ===== */

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --surface: #161616;
  --border: #2a2a2a;
  --gold: #f5c842;
  --gold-dark: #d4a017;
  --red: #e8392a;
  --green: #2ecc71;
  --blue: #3b82f6;
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 8px; --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 64px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.logo-chet { font-family: var(--font-display); font-size: 28px; color: var(--gold); letter-spacing: 2px; }
.logo-bets { font-family: var(--font-display); font-size: 28px; color: var(--text); letter-spacing: 2px; }
.logo-dot { color: var(--red); font-size: 10px; align-self: flex-start; margin-top: 6px; }
.nav-links { list-style: none; display: flex; gap: 4px; align-items: center; margin-left: auto; }
.nav-link { font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 1px; color: var(--text-muted); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); transition: all 0.2s; }
.nav-link:hover { color: var(--text); background: var(--bg3); }
.nav-link.highlight { color: var(--gold); }
.nav-link.cta-nav { background: var(--gold); color: #000; font-weight: 700; padding: 8px 16px; }
.nav-link.cta-nav:hover { background: var(--gold-dark); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; margin-left: auto; }
.mobile-nav { display: none; list-style: none; background: var(--bg2); border-top: 1px solid var(--border); padding: 16px 24px; flex-direction: column; gap: 8px; }
.mobile-nav a { font-family: var(--font-cond); font-size: 18px; font-weight: 600; color: var(--text); text-decoration: none; padding: 8px 0; display: block; border-bottom: 1px solid var(--border); }

/* ===== HERO - SPLIT LAYOUT WITH PHOTO ===== */
.hero {
  display: flex; flex-direction: column;
  min-height: 92vh; overflow: hidden;
  position: relative;
}

.hero-image-panel {
  position: absolute; right: 0; top: 0; bottom: 60px;
  width: 46%; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.1) 100%);
}
.hero-img-caption {
  position: absolute; bottom: 16px; right: 16px;
  font-family: var(--font-cond); font-size: 12px; font-style: italic;
  color: rgba(255,255,255,0.4); letter-spacing: 0.5px;
}

.hero-content-panel {
  position: relative; z-index: 1;
  width: 55%; padding: 80px 48px 60px 6%;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,57,42,0.15); border: 1px solid rgba(232,57,42,0.4);
  color: #ff6b5a; font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
  animation: pulse 2.5s ease-in-out infinite; width: fit-content;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,57,42,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(232,57,42,0); }
}

.hero-title { line-height: 0.82; margin-bottom: 20px; }
.hero-line1 { display: block; font-family: var(--font-display); font-size: clamp(72px, 10vw, 140px); color: var(--text); letter-spacing: 4px; }
.hero-line2 { display: block; font-family: var(--font-display); font-size: clamp(72px, 10vw, 140px); color: var(--gold); letter-spacing: 4px; -webkit-text-stroke: 1px var(--gold-dark); }

.hero-tagline { font-family: var(--font-cond); font-size: clamp(20px, 2.5vw, 28px); color: var(--text-muted); margin-bottom: 28px; line-height: 1.3; }
.hero-tagline em { color: var(--gold); font-style: normal; font-weight: 700; }

.win-bar {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 24px; margin-bottom: 28px;
  width: fit-content;
}
.win-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.win-num { font-family: var(--font-display); font-size: 38px; letter-spacing: 1px; }
.win-gold { color: var(--gold); }
.win-red { color: var(--red); }
.win-muted { color: var(--text-muted); }
.win-label { font-family: var(--font-cond); font-size: 10px; letter-spacing: 2px; color: var(--text-muted); }
.win-sep { width: 1px; height: 36px; background: var(--border); }
.win-pct { display: flex; flex-direction: column; align-items: center; gap: 2px; background: rgba(245,200,66,0.1); border-radius: 8px; padding: 8px 16px; }
.win-pct-num { font-family: var(--font-display); font-size: 38px; color: var(--gold); letter-spacing: 1px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-disclaimer-small { font-family: var(--font-cond); font-size: 12px; color: var(--text-dim); letter-spacing: 1px; }

/* ===== TICKER ===== */
.hero-ticker {
  background: var(--gold); color: #000; padding: 10px 0;
  overflow: hidden; font-family: var(--font-cond); font-weight: 700;
  font-size: 14px; letter-spacing: 1px; position: relative; z-index: 2;
}
.ticker-track { display: flex; gap: 48px; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker-track span { flex-shrink: 0; padding-right: 48px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== CREDIBILITY BAR ===== */
.credibility-bar {
  background: #000; border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.cred-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--font-cond); font-size: 14px; letter-spacing: 0.5px; color: var(--text-muted);
}
.cred-item strong { color: var(--gold); }
.cred-div { color: var(--border); }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--gold); color: #000; font-family: var(--font-cond); font-size: 16px; font-weight: 700; letter-spacing: 1.5px; padding: 13px 26px; border-radius: var(--radius); text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,200,66,0.3); }
.btn-secondary { display: inline-block; background: transparent; color: var(--text); border: 1px solid var(--border); font-family: var(--font-cond); font-size: 16px; font-weight: 700; letter-spacing: 1.5px; padding: 13px 26px; border-radius: var(--radius); text-decoration: none; cursor: pointer; transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== SECTION HEADERS ===== */
.section-header { max-width: 1280px; margin: 0 auto 32px; padding: 0 24px; display: flex; align-items: baseline; gap: 16px; }
.section-label { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--gold); border-left: 3px solid var(--gold); padding-left: 8px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); color: var(--text); letter-spacing: 2px; }
.see-all { margin-left: auto; font-family: var(--font-cond); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--gold); text-decoration: none; }

/* ===== FEATURED SECTION ===== */
.featured-section { padding: 80px 0; background: var(--bg2); }

.featured-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 3fr 2fr; gap: 32px; align-items: start;
}

.featured-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden;
}
.featured-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.featured-card.parlay::before { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }
.featured-card.hockey::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.featured-card.wnba::before { background: linear-gradient(90deg, var(--red), #ff6b5a); }
.featured-card.stock::before { background: linear-gradient(90deg, var(--green), #4ade80); }

.featured-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.big-odds { font-family: var(--font-display); font-size: 52px; color: var(--gold); letter-spacing: 2px; }
.featured-title { font-family: var(--font-display); font-size: 34px; letter-spacing: 2px; margin-bottom: 8px; }
.featured-desc { font-family: var(--font-cond); font-size: 17px; color: var(--text-muted); margin-bottom: 20px; }

.parlay-legs { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.parlay-leg { background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.2); border-radius: var(--radius); padding: 8px 14px; font-family: var(--font-cond); font-size: 15px; color: var(--gold); font-weight: 600; }

.chets-take { background: var(--bg3); border-radius: var(--radius); padding: 20px; margin-bottom: 22px; }
.take-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.take-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--gold); }
.take-label { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--gold); }
.chets-take p { font-style: italic; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.featured-footer { display: flex; justify-content: space-between; align-items: center; }
.posted-time { font-family: var(--font-cond); font-size: 13px; color: var(--text-dim); }

.featured-aside { display: flex; flex-direction: column; gap: 16px; }
.aside-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 380px; }
.aside-caption { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; }
.aside-quote { font-family: var(--font-cond); font-size: 18px; font-style: italic; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.aside-sub { font-family: var(--font-cond); font-size: 13px; color: var(--gold); letter-spacing: 1px; }

/* ===== PICKS GRID ===== */
.picks-section { padding: 80px 0; }
.picks-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }

.pick-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.pick-card:hover { transform: translateY(-2px); }
.pick-card.result-win { border-color: rgba(46,204,113,0.3); }
.pick-card.result-loss { border-color: rgba(232,57,42,0.2); }

.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-title { font-family: var(--font-cond); font-size: 20px; font-weight: 700; letter-spacing: 1px; line-height: 1.2; }
.card-desc { font-size: 14px; color: var(--text-muted); }
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.pick-odds { font-family: var(--font-display); font-size: 28px; color: var(--gold); letter-spacing: 1px; }
.parlay-tag { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gold); background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.2); border-radius: 100px; padding: 3px 10px; }
.card-take-blur { font-size: 13px; color: var(--text-dim); font-style: italic; line-height: 1.5; flex: 1; filter: blur(3px); user-select: none; }
.card-cta { font-family: var(--font-cond); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--gold); text-decoration: none; padding: 8px 0; border-top: 1px solid var(--border); margin-top: 4px; transition: color 0.2s; }
.card-cta:hover { color: var(--gold-dark); }

/* Badges */
.badge { display: inline-block; font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; padding: 3px 10px; border-radius: 100px; }
.badge-hockey { background: rgba(59,130,246,0.2); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.badge-wnba { background: rgba(232,57,42,0.2); color: #ff6b5a; border: 1px solid rgba(232,57,42,0.3); }
.badge-stock { background: rgba(46,204,113,0.2); color: #4ade80; border: 1px solid rgba(46,204,113,0.3); }
.badge-parlay { background: rgba(245,200,66,0.2); color: var(--gold); border: 1px solid rgba(245,200,66,0.3); }
.badge-hot { background: rgba(147,51,234,0.2); color: #c084fc; border: 1px solid rgba(147,51,234,0.3); }

.result-badge { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; }
.result-badge.win { background: rgba(46,204,113,0.2); color: #4ade80; }
.result-badge.loss { background: rgba(232,57,42,0.2); color: #ff6b5a; }

/* ===== ABOUT CHET ===== */
.about-chet { padding: 80px 0; background: var(--bg2); }
.about-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 3fr; gap: 60px; align-items: center;
}
.about-photos { position: relative; }
.about-photo { border-radius: var(--radius-lg); object-fit: cover; }
.photo-main { width: 100%; max-height: 480px; }
.photo-secondary { width: 55%; position: absolute; bottom: -20px; right: -20px; border: 3px solid var(--bg2); max-height: 200px; }
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); letter-spacing: 2px; }
.about-p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.about-bold { font-size: 18px !important; color: var(--text) !important; font-weight: 600; border-left: 3px solid var(--gold); padding-left: 14px; }
.x-follow-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--text); text-decoration: none; font-family: var(--font-cond); font-size: 16px; font-weight: 700; letter-spacing: 1px; padding: 12px 24px; border-radius: var(--radius); transition: all 0.2s; width: fit-content; }
.x-follow-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ===== WHY SECTION ===== */
.why-section { padding: 80px 0; }
.why-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-card h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 10px; color: var(--gold); }
.why-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: var(--bg2); }
.cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 3fr; gap: 48px; align-items: center;
}
.cta-photo { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 400px; object-position: top; }
.cta-text { display: flex; flex-direction: column; gap: 24px; }
.cta-text h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); letter-spacing: 2px; line-height: 0.9; background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-text > p { font-size: 17px; color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing-cards { display: flex; gap: 16px; flex-wrap: wrap; align-items: stretch; }
.price-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; flex: 1; min-width: 180px; max-width: 240px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.price-card.featured-price { border-color: var(--gold); background: linear-gradient(135deg, var(--bg3) 0%, rgba(245,200,66,0.06) 100%); transform: scale(1.03); }
.best-value { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; padding: 3px 12px; border-radius: 100px; white-space: nowrap; }
.savings-badge { background: var(--green) !important; }
.price-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; }
.price { font-family: var(--font-display); font-size: 40px; color: var(--gold); line-height: 1; }
.price span { font-family: var(--font-cond); font-size: 16px; color: var(--text-muted); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.price-card ul li { font-size: 13px; color: var(--text-muted); }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); padding: 80px 24px 60px; text-align: center; }
.subscribe-hero { background: radial-gradient(ellipse at 50% 100%, rgba(245,200,66,0.1) 0%, var(--bg2) 60%); }
.page-hero-content { max-width: 800px; margin: 0 auto; }
.page-title { font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px); letter-spacing: 3px; margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: var(--text-muted); }

/* ===== PICKS PAGE ===== */
.picks-page { max-width: 1280px; margin: 0 auto; padding: 48px 24px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); font-family: var(--font-cond); font-size: 14px; font-weight: 700; letter-spacing: 1px; padding: 8px 20px; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #000; }
.picks-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; }

.pick-card-full { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden; }
.pick-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.parlay-legs.compact .parlay-leg { padding: 6px 10px; font-size: 13px; }
.blur-take { position: relative; }
.take-preview { font-size: 14px; color: var(--text-dim); font-style: italic; filter: blur(3px); pointer-events: none; user-select: none; line-height: 1.5; }
.blur-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, transparent, rgba(22,22,22,0.85) 40%); }
.card-meta { font-family: var(--font-cond); font-size: 12px; color: var(--text-dim); }
.inline-subscribe-cta { text-align: center; padding: 80px 24px; background: var(--bg2); border-top: 1px solid var(--border); }
.inline-subscribe-cta h2 { font-family: var(--font-display); font-size: 48px; letter-spacing: 2px; margin-bottom: 12px; }
.inline-subscribe-cta p { color: var(--text-muted); margin-bottom: 24px; font-size: 16px; }

/* ===== SUBSCRIBE PAGE ===== */
.subscribe-page { max-width: 1100px; margin: 0 auto; padding: 60px 24px; }
.subscribe-intro { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 60px; }
.intro-stat { text-align: center; }
.stat-big { display: block; font-family: var(--font-display); font-size: 56px; color: var(--gold); letter-spacing: 2px; }
.stat-label { font-family: var(--font-cond); font-size: 13px; color: var(--text-muted); letter-spacing: 1px; }
.subscribe-pricing { margin-bottom: 80px; }
.subscribe-pricing .pricing-cards { justify-content: center; max-width: 900px; margin: 0 auto; }
.subscribe-pricing .price-card { max-width: 280px; }

.subscribe-form-section { max-width: 560px; margin: 0 auto 80px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.subscribe-form-section h2 { font-family: var(--font-display); font-size: 32px; letter-spacing: 2px; margin-bottom: 28px; text-align: center; }
.subscribe-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); }
.form-group input, .form-group select { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 12px 16px; font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg); }
.form-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.5; text-align: center; }
.btn-full { width: 100%; text-align: center; font-size: 18px; padding: 16px; }

.testimonials-section { text-align: center; }
.testimonials-section h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: 2px; margin-bottom: 32px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: left; }
.testimonial p { font-style: italic; font-size: 15px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.testimonial span { font-family: var(--font-cond); font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; }
.footer-brand {}
.footer-tagline { font-size: 14px; color: var(--text-muted); margin: 8px 0 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 4px; }
.footer-links a { font-size: 14px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.6; border-left: 2px solid var(--border); padding-left: 16px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 24px; text-align: center; font-family: var(--font-cond); font-size: 13px; color: var(--text-dim); letter-spacing: 1px; }
.x-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); text-decoration: none; font-family: var(--font-cond); font-size: 15px; font-weight: 600; transition: color 0.2s; }
.x-link:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-image-panel { width: 42%; }
  .hero-content-panel { width: 60%; padding: 60px 24px 60px 5%; }
  .featured-wrap { grid-template-columns: 1fr; }
  .featured-aside { flex-direction: row; }
  .aside-img { width: 50%; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photos { max-width: 400px; }
  .photo-secondary { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-photo-stack { max-width: 300px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-image-panel { position: relative; width: 100%; height: 300px; }
  .hero-img-overlay { background: linear-gradient(180deg, transparent 40%, var(--bg) 100%); }
  .hero-content-panel { width: 100%; padding: 32px 24px; }
  .win-bar { gap: 12px; padding: 12px 16px; }
  .win-num { font-size: 28px; }
  .featured-aside { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .picks-grid, .picks-full-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-line1, .hero-line2 { font-size: 72px; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .price-card.featured-price { transform: none; }
  .cred-inner { flex-direction: column; gap: 8px; text-align: center; }
  .cred-div { display: none; }
}
