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

:root {
  --red:       #C8102E;
  --red-dark:  #9E0B23;
  --red-light: #F0E8EA;
  --gold:      #B8962E;
  --gold-light:#F5EDD3;
  --black:     #0F0F0F;
  --dark:      #1A1A1A;
  --mid:       #3A3A3A;
  --muted:     #6B6B6B;
  --border:    #D8D0D0;
  --bg:        #F9F7F7;
  --white:     #FFFFFF;
  --card-bg:   #FFFFFF;
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 32px rgba(0,0,0,0.13);
  --radius:    8px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--bg);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

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

h1, h2, h3 {
  font-family: Georgia, serif;
  font-weight: bold;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--red-dark);
  margin: 2.4rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red-light);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--black);
  margin: 1.6rem 0 0.5rem;
}

p { margin-bottom: 1.1rem; }

.cta-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(200,16,46,0.25);
}
.cta-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200,16,46,0.35);
  text-decoration: none;
}
.cta-btn:active { transform: translateY(0); }

.cta-large {
  font-size: 1.15rem;
  padding: 16px 38px;
  border-radius: 10px;
}

.bonus-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #E01535 100%);
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(200,16,46,0.4);
}

.mid-banner {
  position: static;
  margin: 40px 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D0A12 50%, #1A1A1A 100%);
}

.banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-label {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-family: Georgia, serif;
}

.banner-offer {
  color: var(--white);
  font-weight: bold;
  font-size: 1.05rem;
  font-family: Georgia, serif;
  flex: 1;
  text-align: center;
}

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 14px 0;
  position: sticky;
  top: 50px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo-mark {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: Georgia, serif;
  color: var(--red);
  letter-spacing: 0.08em;
  background: var(--red);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 5px;
}
.logo-sub {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: Georgia, serif;
}

.header-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.header-nav a {
  color: var(--dark);
  font-size: 0.92rem;
  padding: 5px 12px;
  border-radius: 5px;
  font-family: Georgia, serif;
  transition: background 0.15s, color 0.15s;
}
.header-nav a:hover {
  background: var(--red-light);
  color: var(--red);
  text-decoration: none;
}

.hero {
  background: linear-gradient(160deg, var(--black) 0%, #2B0009 60%, var(--red-dark) 100%);
  color: var(--white);
  padding: 56px 0 48px;
}

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.hero h1 { color: var(--white); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin: 8px 0 24px;
  font-style: italic;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.stars { display: flex; gap: 2px; }
.star { font-size: 1.5rem; }
.star.full { color: var(--gold); }
.star.half {
  color: var(--gold);
  opacity: 0.55;
}

.rating-num {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gold);
}
.rating-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.hero-quick-facts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.qf-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--white);
  backdrop-filter: blur(4px);
}

.intro-section {
  padding: 48px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.main-content { min-width: 0; }

.sidebar { position: sticky; top: 120px; }

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-card h3 {
  font-size: 1rem;
  color: var(--red);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-list {
  list-style: none;
  margin-bottom: 18px;
}
.summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.summary-list li:last-child { border-bottom: none; }
.check { color: #28a745; font-weight: bold; }
.cross { color: var(--red); font-weight: bold; }

.sidebar-cta { width: 100%; text-align: center; margin-top: 4px; }

.facts-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-size: 0.88rem;
}
.facts-list dt {
  font-weight: bold;
  color: var(--muted);
}
.facts-list dd { color: var(--dark); }

.bonus-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}
.info-table thead { background: var(--red); color: var(--white); }
.info-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-family: Georgia, serif;
  font-weight: bold;
}
.info-table tbody tr:nth-child(even) { background: var(--red-light); }
.info-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.info-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody td:first-child { font-weight: bold; }

.cards-section {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.info-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-card h3 {
  font-size: 1.05rem;
  color: var(--red-dark);
  margin: 0 0 10px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}

.how-to-section {
  padding: 48px 0;
}

.steps-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: Georgia, serif;
  box-shadow: 0 2px 8px rgba(200,16,46,0.3);
}

.step-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--black);
}
.step-body p { margin: 0; font-size: 0.95rem; }

.comparison-section {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.faq-section {
  padding: 48px 0;
  background: var(--bg);
}

.faq-list { margin-top: 24px; }

.faq-toggle { display: none; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.98rem;
  color: var(--dark);
  font-family: Georgia, serif;
  user-select: none;
  transition: background 0.15s;
  gap: 12px;
}
.faq-question:hover { background: var(--red-light); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.75rem;
  transition: transform 0.25s;
  display: inline-block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 20px;
}
.faq-answer p { font-size: 0.93rem; color: var(--mid); }

.faq-toggle:checked + .faq-question { background: var(--red-light); color: var(--red-dark); }
.faq-toggle:checked + .faq-question .faq-arrow { transform: rotate(180deg); }
.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 16px 20px 20px;
}

.closing-section {
  background: linear-gradient(135deg, var(--black) 0%, #1A0005 100%);
  padding: 56px 0;
  color: var(--white);
}
.closing-section h2 {
  color: var(--gold);
  border-bottom-color: rgba(184,150,46,0.3);
}
.closing-section p { color: rgba(255,255,255,0.82); }

.closing-cta {
  margin-top: 32px;
  text-align: center;
}
.disclaimer {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 36px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.footer-info p {
  font-size: 0.83rem;
  margin-bottom: 8px;
  max-width: 680px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
}

.footer-age {
  font-weight: bold;
  color: var(--gold);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-card { margin-bottom: 0; }
}

@media (max-width: 700px) {
  .bonus-banner { padding: 10px 14px; }
  .banner-inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .banner-offer { text-align: left; }
  .cta-btn { width: 100%; text-align: center; }

  .site-header { top: 0; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .header-nav { gap: 4px; }
  .header-nav a { font-size: 0.82rem; padding: 4px 8px; }

  .hero { padding: 36px 0 28px; }

  .hero-quick-facts { gap: 8px; }
  .qf-item { font-size: 0.8rem; padding: 5px 10px; }

  .cards-grid { grid-template-columns: 1fr; }

  .sidebar { grid-template-columns: 1fr; }

  .step { gap: 14px; }
  .step-num { width: 36px; height: 36px; font-size: 1rem; }

  .bonus-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .info-table { min-width: 480px; }
  .compare-table { min-width: 560px; }

  .faq-question { font-size: 0.92rem; padding: 14px 16px; }

  .closing-section { padding: 40px 0; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }

  .cta-large { font-size: 1rem; padding: 14px 24px; }

  .sidebar-card { padding: 18px; }
  .info-card { padding: 20px; }
  .step-body h3 { font-size: 0.98rem; }
}
