@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #132338;
  --navy-light: #1C3250;
  --gold: #F5C542;
  --gold-dark: #D4A017;
  --gold-light: #FFE08A;
  --white: #FFFFFF;
  --off-white: #F0EDE6;
  --text-muted: #A8B8CC;
  --green: #27AE60;
  --red: #E74C3C;
  --card-bg: #162842;
  --border: rgba(245,197,66,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 32px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--off-white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }

img { display: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── LOGO ── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

/* ── TOP BANNER ── */
.top-banner {
  background: linear-gradient(90deg, #1a2e4a 0%, #0f2035 40%, #1a2e4a 100%);
  border-bottom: 2px solid var(--gold);
  padding: 0;
}
.top-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.top-banner-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
}
.top-banner-offer {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.top-banner-offer em {
  color: var(--gold);
  font-style: normal;
}
.top-banner-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA BUTTON ── */
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(245,197,66,0.5);
  animation: pulse-gold 2.4s infinite;
}
.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,197,66,0.4);
  animation: none;
}
.cta-btn::after {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite 1.2s;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,66,0.45); }
  50% { box-shadow: 0 0 0 10px rgba(245,197,66,0); }
}
@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 150%; }
}

.cta-btn-lg {
  font-size: 1.05rem;
  padding: 15px 38px;
}

/* ── HEADER / NAV ── */
.site-header {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ── MAIN LAYOUT ── */
.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HERO SECTION ── */
.hero {
  padding: 56px 0 40px;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,197,66,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 30px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── RATING BADGE ── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  margin-top: 24px;
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.rating-count { font-size: 0.78rem; color: var(--text-muted); }

/* ── ARTICLE PROSE ── */
.article-body {
  padding: 40px 0 20px;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  line-height: 1.25;
}
.article-body h2 .gold { color: var(--gold); }
.article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 28px 0 10px;
}
.article-body p {
  margin-bottom: 16px;
  color: var(--off-white);
  font-size: 0.97rem;
}
.article-body ul, .article-body ol {
  margin: 14px 0 20px 22px;
  color: var(--off-white);
  font-size: 0.97rem;
}
.article-body li { margin-bottom: 7px; }
.article-body strong { color: var(--white); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--card-bg);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: var(--off-white); }

/* ── INFO TABLE ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }
table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
thead th {
  background: var(--navy-light);
  color: var(--gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--off-white);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(245,197,66,0.04); }
.td-label { font-weight: 600; color: var(--white); }
.td-check { color: var(--green); font-weight: 700; }
.td-cross { color: var(--red); font-weight: 700; }

/* ── MID BANNER ── */
.mid-banner {
  background: linear-gradient(135deg, #1a3a5c 0%, #0f2035 50%, #1a3a5c 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,66,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.mid-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,66,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.mid-banner-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.mid-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 8px !important;
  border: none !important;
  padding: 0 !important;
}
.mid-banner h2 em {
  color: var(--gold);
  font-style: normal;
}
.mid-banner-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 22px !important;
}
.mid-banner-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px !important;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(245,197,66,0.45);
  transform: translateY(-3px);
}
.card-icon {
  width: 46px; height: 46px;
  background: rgba(245,197,66,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px !important;
}
.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 !important;
}

/* ── PRO/CON ── */
.procon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.procon-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.procon-title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.procon-title.pros { color: var(--green); }
.procon-title.cons { color: var(--red); }
.procon-box ul {
  list-style: none;
  margin: 0; padding: 0;
}
.procon-box ul li {
  font-size: 0.875rem;
  color: var(--off-white);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.procon-box ul li:last-child { border-bottom: none; }
.procon-box ul li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
  font-size: 0.85rem;
}
.procon-box.pros ul li::before { content: '✓'; color: var(--green); }
.procon-box.cons ul li::before { content: '✕'; color: var(--red); }

/* ── FAQ ACCORDION (pure CSS) ── */
.faq-section { margin: 48px 0; }
.faq-section > h2 { margin-top: 0 !important; }

.faq-item { margin-bottom: 10px; }
.faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: background 0.18s, border-color 0.18s;
  user-select: none;
}
.faq-label:hover { border-color: rgba(245,197,66,0.4); background: var(--navy-light); }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(245,197,66,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  transition: transform 0.28s;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.28s;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0 20px;
}
.faq-answer p { padding: 16px 0; margin: 0; font-size: 0.9rem; color: var(--off-white); }

.faq-item input:checked ~ .faq-label { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-color: rgba(245,197,66,0.4); }
.faq-item input:checked ~ .faq-label .faq-chevron { transform: rotate(180deg); }
.faq-item input:checked ~ .faq-answer { max-height: 400px; }

/* ── PAYMENT ICONS ── */
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.pay-icon {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.03em;
}

/* ── PROVIDER PILLS ── */
.provider-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.provider-pill {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 36px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.footer-18plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.footer-responsible {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-responsible-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom p { margin-bottom: 8px; }
.footer-bottom p:last-child { margin-bottom: 0; }
.footer-copy { color: var(--text-muted); font-size: 0.78rem; margin-top: 16px; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .top-banner-inner { flex-direction: column; align-items: flex-start; }
  .top-banner-offer { font-size: 1.1rem; }
  .hero { padding: 36px 0 28px; }
  .hero-stats { gap: 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .procon-grid { grid-template-columns: 1fr; }
  .mid-banner { padding: 28px 20px; }
  .header-badge { display: none; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 440px) {
  .stat-num { font-size: 1.5rem; }
  .hero h1 { font-size: 1.9rem; }
  .cta-btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
