/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --base:    #3B1220;
  --deep:    #250A14;
  --accent:  #E3B44B;
  --accent2: #C4566E;
  --surface: #F8F3F1;
  --ink:     #22121A;
  --muted:   #75606A;

  --radius:  0px;
  --max-w:   1200px;

  --font-heading: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:    system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--surface);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--base);
  line-height: 1.25;
}

h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.6rem;  margin-top: 2.25rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.2rem;  margin-top: 1.75rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

ul, ol { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background-color: var(--base);
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
}

/* ── Logo wordmark ── */
.logo,
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1;
  user-select: none;
}

.logo-ae {
  color: #ffffff;
  text-transform: lowercase;
}

.logo-num {
  color: var(--accent);
}

/* ── Nav ── */
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem;
}

.main-nav a {
  display: block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.7rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

.main-nav a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 55%, #5a1a30 100%);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(227,180,75,0.04) 20px,
    rgba(227,180,75,0.04) 40px
  );
  pointer-events: none;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.banner-label {
  display: inline-block;
  background-color: var(--accent2);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0;
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.banner-sub {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0;
}

.accent-text {
  color: var(--accent);
  font-weight: 800;
}

/* ── Offer box ── */
.banner-offer-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin: 0.5rem 0;
}

.offer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 1.25rem;
  background: rgba(0,0,0,0.25);
}

.offer-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.offer-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
}

.offer-divider {
  height: 1px;
  background-color: var(--accent);
  opacity: 0.45;
}

.banner-terms {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ============================================================
   CTA BUTTON
   ============================================================ */
.cta-btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-transform: capitalize;
  box-shadow: 0 4px 16px rgba(227,180,75,0.35);
}

.cta-btn:hover {
  background-color: #f0c45e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,180,75,0.5);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.main-content {
  padding: 2.5rem 0;
}

.lead {
  font-size: 1.07rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.75;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead tr {
  background-color: var(--base);
  color: #ffffff;
}

.data-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.data-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.data-table tbody tr:nth-child(even) {
  background-color: #f0e8e5;
}

.data-table tbody tr:hover {
  background-color: #e8d8d4;
  transition: background-color 0.15s;
}

.data-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  color: var(--ink);
  border-bottom: 1px solid rgba(117,96,106,0.15);
  vertical-align: top;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   FAQ ACCORDION (CSS-only, hidden checkbox technique)
   ============================================================ */
.faq-section {
  background-color: #ffffff;
  padding: 3rem 0;
  border-top: 3px solid var(--base);
}

.faq-section > .container > h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--base);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
}

/* hide the native checkbox */
.faq-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.faq-item {
  border-bottom: 1px solid rgba(117,96,106,0.25);
  background-color: #ffffff;
}

.faq-item:last-child {
  border-bottom: none;
}

/* question label = clickable header */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--base);
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.18s, color 0.18s;
  user-select: none;
}

.faq-question:hover {
  background-color: var(--surface);
  color: var(--accent2);
}

.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

/* plus/minus icon drawn entirely in CSS */
.faq-question::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  border: 2px solid var(--accent2);
  border-radius: 50%;
  background-image:
    /* horizontal bar */
    linear-gradient(var(--accent2), var(--accent2)),
    /* vertical bar */
    linear-gradient(var(--accent2), var(--accent2));
  background-size: 10px 2px, 2px 10px;
  background-repeat: no-repeat;
  background-position: center center, center center;
  transition: background-image 0.2s, transform 0.25s;
}

/* when checked: hide vertical bar (show minus) */
.faq-toggle:checked ~ .faq-question::after {
  background-image:
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(transparent, transparent);
  border-color: var(--accent);
  transform: rotate(0deg);
}

.faq-toggle:checked ~ .faq-question {
  background-color: var(--surface);
  color: var(--base);
  border-bottom: 1px solid rgba(117,96,106,0.2);
}

/* answer panel — collapsed by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.25rem;
  background-color: var(--surface);
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* expand when checkbox is checked */
.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
  padding: 1rem 1.25rem;
}

/* ============================================================
   CARDS SECTION
   ============================================================ */
.cards-section {
  padding: 3rem 0;
  background-color: var(--surface);
  border-top: 3px solid var(--muted);
}

.cards-section > .container > h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--base);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.card {
  background-color: #ffffff;
  border: 1px solid var(--muted);
  border-top: 3px solid var(--accent2);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s;
}

.card:hover {
  border-top-color: var(--accent);
  border-color: var(--muted);
}

.card-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.7rem;
  color: var(--accent);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  border-top: 3px solid var(--accent);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.footer-logo {
  font-size: 1.6rem;
}

.footer-logo .logo-ae {
  color: #ffffff;
}

.footer-logo .logo-num {
  color: var(--accent);
}

.footer-text {
  flex: 1;
}

.footer-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-responsible {
  color: rgba(255,255,255,0.5) !important;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-nav a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.footer-copy {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.35) !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.75rem;
  margin-bottom: 0 !important;
}

/* ============================================================
   640px BREAKPOINT
   ============================================================ */
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 2.2rem;
  }

  .main-nav a {
    font-size: 0.88rem;
    padding: 0.5rem 0.85rem;
  }

  .banner-headline {
    font-size: 2rem;
  }

  .banner-offer-box {
    flex-direction: row;
    align-items: stretch;
  }

  .offer-item {
    flex: 1;
    padding: 1.1rem 0.75rem;
  }

  .offer-divider {
    width: 1px;
    height: auto;
    background-color: var(--accent);
    opacity: 0.45;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-logo {
    min-width: 120px;
  }
}

/* ============================================================
   1024px BREAKPOINT
   ============================================================ */
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .banner-headline {
    font-size: 2.4rem;
  }

  .banner-sub {
    font-size: 1rem;
  }

  .offer-value {
    font-size: 1.9rem;
  }

  .main-content {
    padding: 3rem 0;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.1rem 1.5rem;
  }

  .faq-toggle:checked ~ .faq-answer {
    padding: 1.25rem 1.5rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 1.75rem 1.5rem;
  }

  .data-table {
    font-size: 0.95rem;
  }

  .data-table thead th {
    padding: 0.85rem 1.1rem;
    font-size: 0.85rem;
  }

  .data-table td {
    padding: 0.75rem 1.1rem;
  }

  .bonus-banner {
    padding: 4rem 0;
  }

  .faq-section {
    padding: 4rem 0;
  }

  .cards-section {
    padding: 4rem 0;
  }
}