/* ── SEO Content Pages — Enhanced Visual System ── */
/* Supplements city.css — loaded after */

/* ── HERO ──────────────────────────────────────────── */
.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.seo-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232,24,109,.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(200,151,58,.1) 0%, transparent 55%);
}
.seo-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.seo-eyebrow {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #E8186D;
  background: rgba(232,24,109,.1);
  border: 1px solid rgba(232,24,109,.25);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.seo-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: .88;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(232,24,109,.25);
}
.seo-h1 em {
  font-style: normal;
  color: #E8186D;
}
.seo-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  margin: 0 auto 28px;
}
.page-nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-nav-link {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  padding: 5px 13px;
  transition: border-color .18s, color .18s;
  text-decoration: none;
}
.page-nav-link:hover { border-color: rgba(255,255,255,.4); color: #fff; }

/* ── KICKER QUOTE ───────────────────────────────────── */
.kicker-quote {
  background: #0d0620;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kicker-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem;
  line-height: 1;
  color: rgba(232,24,109,.07);
  pointer-events: none;
  user-select: none;
}
.kicker-quote-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.kicker-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: .03em;
  color: #fff;
  margin-bottom: 18px;
}
.kicker-text em {
  font-style: normal;
  color: #E8186D;
}
.kicker-attr {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C8973A;
}
.kicker-stars {
  color: #F5D800;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

/* ── BODY ────────────────────────────────────────────── */
.seo-body {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── SECTION ─────────────────────────────────────────── */
.seo-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.seo-section:last-child { border-bottom: none; }

/* Section label + heading combo */
.sec-label {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #C8973A;
  margin-bottom: 4px;
  display: block;
}
.sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: .92;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 4px;
}
.sec-heading em {
  font-style: normal;
  color: #E8186D;
}

.seo-section p {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  max-width: 780px;
}
.seo-section p strong { color: #fff; font-weight: 700; }
.seo-section p a { color: #C8973A; text-decoration: none; border-bottom: 1px solid rgba(200,151,58,.3); transition: border-color .18s; }
.seo-section p a:hover { border-color: #C8973A; }

/* ── STAT ROW ────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
}
.stat-card {
  background: #0d0620;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.stat-card:nth-child(1)::before { background: #E8186D; }
.stat-card:nth-child(2)::before { background: #C8973A; }
.stat-card:nth-child(3)::before { background: #2DD36F; }
.stat-card:nth-child(4)::before { background: #2DD4BF; }
.stat-card:nth-child(5)::before { background: #818CF8; }
.stat-card:nth-child(6)::before { background: #E8186D; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-card:nth-child(1) .stat-num { color: #E8186D; }
.stat-card:nth-child(2) .stat-num { color: #C8973A; }
.stat-card:nth-child(3) .stat-num { color: #2DD36F; }
.stat-card:nth-child(4) .stat-num { color: #2DD4BF; }
.stat-card:nth-child(5) .stat-num { color: #818CF8; }
.stat-card:nth-child(6) .stat-num { color: #E8186D; }
.stat-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block;
}
@media(max-width:600px){
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-row .stat-card:nth-child(5),
  .stat-row .stat-card:nth-child(6) { display: none; }
}

/* ── QUOTE CARDS ─────────────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media(max-width:620px){ .quote-grid { grid-template-columns: 1fr; } }

.q-card {
  background: #0d0620;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.q-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(232,24,109,.2);
  position: absolute;
  top: 10px;
  left: 16px;
  pointer-events: none;
}
.q-text {
  font-size: .87rem;
  line-height: 1.72;
  color: rgba(255,255,255,.85);
  font-style: italic;
  flex: 1;
  margin-bottom: 14px;
  padding-top: 16px;
}
.q-stars {
  color: #F5D800;
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.q-attr {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C8973A;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 10px;
}

/* Hero quote variant */
.q-card-hero {
  background: rgba(232,24,109,.07);
  border-color: rgba(232,24,109,.2);
}
.q-card-hero::before { color: rgba(232,24,109,.35); }
.q-card-hero .q-text { font-size: 1.05rem; color: #fff; }

/* ── FULL-WIDTH COLOR STRIP ──────────────────────────── */
.strip-pink {
  background: #E8186D;
  padding: 52px 24px;
  text-align: center;
  margin: 0 -24px;
}
.strip-gold {
  background: #C8973A;
  padding: 52px 24px;
  text-align: center;
  margin: 0 -24px;
}
.strip-inner { max-width: 720px; margin: 0 auto; }
.strip-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
  display: block;
}
.strip-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: .95;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 8px;
}
.strip-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.strip-pink .btn-primary { background: #fff; color: #E8186D; margin-top: 24px; }
.strip-pink .btn-primary:hover { filter: brightness(.96); }

/* ── INFO GRID ───────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
}
.info-item {
  background: #0d0620;
  padding: 18px 20px;
}
.info-label {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
  display: block;
}
.info-val {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}
.info-val a { color: #C8973A; text-decoration: none; }
@media(max-width:520px){ .info-grid { grid-template-columns: 1fr; } }

/* ── PATTERN LIST (numbered) ─────────────────────────── */
.pattern-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
}
.pattern-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: #0d0620;
  transition: background .2s;
}
.pattern-item:hover { background: rgba(255,255,255,.025); }
.pattern-item:last-child { border-bottom: none; }
.pattern-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  min-width: 40px;
  flex-shrink: 0;
}
.pattern-item:nth-child(1) .pattern-num { color: #E8186D; }
.pattern-item:nth-child(2) .pattern-num { color: #C8973A; }
.pattern-item:nth-child(3) .pattern-num { color: #2DD36F; }
.pattern-item:nth-child(4) .pattern-num { color: #2DD4BF; }
.pattern-item:nth-child(5) .pattern-num { color: #818CF8; }
.pattern-item:nth-child(6) .pattern-num { color: #F5D800; }
.pattern-body { display: flex; flex-direction: column; gap: 4px; padding-top: 5px; }
.pattern-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .07em;
  color: #fff;
}
.pattern-desc {
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}

/* ── STEP LIST ───────────────────────────────────────── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: #0d0620;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  min-width: 36px;
  flex-shrink: 0;
}
.step-item:nth-child(1) .step-num { color: #E8186D; }
.step-item:nth-child(2) .step-num { color: #C8973A; }
.step-item:nth-child(3) .step-num { color: #2DD36F; }
.step-item:nth-child(4) .step-num { color: #2DD4BF; }
.step-item:nth-child(5) .step-num { color: #818CF8; }
.step-body { display: flex; flex-direction: column; gap: 4px; padding-top: 3px; }
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .06em;
  color: #fff;
}
.step-desc {
  font-size: .8rem;
  line-height: 1.58;
  color: rgba(255,255,255,.5);
}

/* ── SCORE CARDS ─────────────────────────────────────── */
.score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
}
.score-card {
  background: #0d0620;
  padding: 30px 20px;
  text-align: center;
}
.score-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: #E8186D;
  display: block;
  margin-bottom: 4px;
}
.score-card:nth-child(2) .score-num { color: #F5D800; }
.score-card:nth-child(3) .score-num { color: rgba(255,255,255,.25); }
.score-src {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: block;
  margin-bottom: 4px;
}
.score-desc { font-size: .72rem; color: rgba(255,255,255,.38); line-height: 1.4; }
@media(max-width:560px){ .score-row { grid-template-columns: 1fr; } }

/* ── TABLE ───────────────────────────────────────────── */
.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
}
.seo-table th {
  background: #0d0620;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.seo-table td {
  background: #080312;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: rgba(255,255,255,.65);
  vertical-align: top;
  line-height: 1.5;
}
.seo-table tr:last-child td { border-bottom: none; }
.seo-table td:first-child { font-weight: 700; color: #fff; }
.seo-table td:nth-child(3) { color: #E8186D; font-weight: 600; }
.comp-table td:nth-child(3) { color: #fff; font-weight: 700; }

/* ── CALLOUT BOXES ───────────────────────────────────── */
.callout-pink {
  background: rgba(232,24,109,.07);
  border: 1px solid rgba(232,24,109,.22);
  border-radius: 8px;
  padding: 28px 28px;
}
.callout-pink p { font-size: .9rem; line-height: 1.72; color: rgba(255,255,255,.78); }
.callout-pink strong { color: #E8186D; }

.callout-gold {
  background: rgba(200,151,58,.07);
  border: 1px solid rgba(200,151,58,.22);
  border-radius: 8px;
  padding: 28px 28px;
}
.callout-gold p { font-size: .9rem; line-height: 1.72; color: rgba(255,255,255,.78); }
.callout-gold strong { color: #C8973A; }

.callout-green {
  background: rgba(45,211,111,.06);
  border: 1px solid rgba(45,211,111,.2);
  border-radius: 8px;
  padding: 28px 28px;
}
.callout-green p { font-size: .9rem; line-height: 1.72; color: rgba(255,255,255,.78); }
.callout-green strong { color: #2DD36F; }

.callout-warn {
  background: rgba(255,100,100,.05);
  border: 1px solid rgba(255,100,100,.18);
  border-radius: 8px;
  padding: 24px 26px;
}
.callout-warn p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.7); }
.callout-warn strong { color: #ff9090; }

/* ── REJECTION QUOTE ─────────────────────────────────── */
.rejection-quote {
  border-left: 3px solid #E8186D;
  padding: 20px 24px;
  background: rgba(232,24,109,.05);
  border-radius: 0 6px 6px 0;
}
.rejection-quote p {
  font-size: .95rem;
  line-height: 1.72;
  color: rgba(255,255,255,.82);
  font-style: italic;
  margin-bottom: 10px !important;
}
.rejection-quote cite {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C8973A;
  font-style: normal;
}

.rejection-quote-gold {
  border-left: 3px solid #C8973A;
  background: rgba(200,151,58,.05);
}

/* ── CHECKLIST ───────────────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: .88rem;
  line-height: 1.58;
  color: rgba(255,255,255,.7);
  padding-left: 24px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2DD36F;
  font-weight: 800;
  font-size: .78rem;
}
.check-list li strong { color: #fff; }

/* ── CTA BLOCK ───────────────────────────────────────── */
.cta-block {
  background: #0d0620;
  border: 1px solid rgba(232,24,109,.22);
  border-radius: 10px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,24,109,.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-block h3 {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}
.cta-block p {
  position: relative;
  font-size: .9rem;
  color: rgba(255,255,255,.58);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-links {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.link-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .18s, color .18s;
}
.link-ghost:hover { border-color: rgba(255,255,255,.45); color: #fff; }

/* ── BIG ANSWER CARD ─────────────────────────────────── */
.answer-card {
  background: rgba(45,211,111,.07);
  border: 1px solid rgba(45,211,111,.22);
  border-radius: 8px;
  padding: 32px 28px;
}
.answer-card-label {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #2DD36F;
  margin-bottom: 10px;
  display: block;
}
.answer-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 12px;
}
.answer-card p {
  font-size: .93rem !important;
  line-height: 1.72 !important;
  color: rgba(255,255,255,.78) !important;
}

/* ── TOUR LEGS TABLE ─────────────────────────────────── */
.legs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  overflow: hidden;
}
.legs-table th {
  background: #0d0620;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.legs-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: rgba(255,255,255,.65);
  vertical-align: top;
  line-height: 1.5;
  background: #080312;
}
.legs-table tr:last-child td { border-bottom: none; }
.legs-table td:first-child { font-weight: 800; color: #fff; font-size: .88rem; }
.legs-table td:nth-child(2) { color: #C8973A; font-weight: 700; white-space: nowrap; }

/* ── FOOTER NAV EXTRA LINKS ──────────────────────────── */
.footer-nav a[href="/reviews"],
.footer-nav a[href="/where-to-watch"] {
  color: rgba(255,255,255,.55);
}

/* ── MOBILE ──────────────────────────────────────────── */
@media(max-width:768px) {
  .seo-hero { padding: 72px 20px 56px; }
  .kicker-quote { padding: 40px 20px; }
  .kicker-quote::before { font-size: 10rem; }
  .seo-section { padding: 44px 0; }
  .strip-pink, .strip-gold { margin: 0 -20px; padding: 40px 20px; }
  .cta-block { padding: 36px 24px; }
}
@media(max-width:480px) {
  .info-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}
