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

:root {
  --ad-red: #C8102E;
  --ad-dark: #1a1a2e;
  --ad-gold: #F0A500;
  --ad-light: #f8f5f0;
  --ad-gray: #6b7280;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #f0ede8;
  color: var(--ad-dark);
}

/* ── LANGUAGE SELECTOR ── */
.lang-selector {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  display: flex;
  gap: 4px;
  background: var(--ad-dark);
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: white;
}

.lang-btn.active {
  background: var(--ad-red);
  color: white;
}

.page {
  width: 210mm;
  min-height: 297mm;
  background: #fff;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  page-break-after: always;
}

/* ── COVER ── */
.cover {
  background: var(--ad-dark);
  display: flex;
  flex-direction: column;
  min-height: 297mm;
}

.cover-top {
  background: #c8102e8c;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cover-top img.header-logo {
  height: 44px;
  object-fit: contain;
}

.cover-tag {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cover-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  position: relative;
}

.cover-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(200, 16, 46, 0.2);
  top: -100px;
  right: -120px;
}

.cover-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(240, 165, 0, 0.15);
  bottom: 60px;
  left: -60px;
}

.cover-eyebrow {
  font-size: 11px;
  color: var(--ad-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 900;
  color: white;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 18px;
  z-index: 1;
}

.cover-title span {
  color: var(--ad-red);
}

.cover-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 44px;
  z-index: 1;
}

.cover-stats {
  display: flex;
  gap: 14px;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.cover-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}

.cover-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ad-gold);
  display: block;
}

.cover-stat .lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.cover-footer {
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cover-footer .year {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
}

.cover-footer .domains {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── INNER PAGE HEADER ── */
.page-header {
  background: #000000;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header img.header-logo {
  height: 36px;
  object-fit: contain;
}

.page-header .section-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ── GENERAL ── */
.page-body {
  padding: 32px 40px;
}

.accent-line {
  width: 48px;
  height: 3px;
  background: var(--ad-red);
  margin-bottom: 16px;
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-title span {
  color: var(--ad-red);
}

.section-intro {
  font-size: 13px;
  color: var(--ad-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

/* ── PAGE 2: STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--ad-light);
  border-radius: 10px;
  padding: 18px 14px;
  border-left: 4px solid var(--ad-red);
}

.stat-card .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ad-red);
  line-height: 1;
  margin-bottom: 3px;
}

.stat-card .stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.stat-card .stat-desc {
  font-size: 10px;
  color: var(--ad-gray);
  line-height: 1.5;
}

.highlight-box {
  background: var(--ad-dark);
  border-radius: 12px;
  padding: 20px 24px;
  color: white;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.highlight-box .hl-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--ad-gold);
}

.highlight-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Audience + stat images row */
.audience-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.stat-img-card {
  background: var(--ad-light);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.stat-img-card img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 6px;
}

.stat-img-card .img-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--ad-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.audience-item {
  display: flex;
  gap: 10px;
  background: var(--ad-light);
  border-radius: 10px;
  padding: 12px;
}

.audience-item .icon {
  font-size: 20px;
  flex-shrink: 0;
}

.audience-item h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.audience-item p {
  font-size: 10px;
  color: var(--ad-gray);
  line-height: 1.5;
}

.vacancy-img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  max-height: 44px;
  margin-top: 4px;
}

/* ── PAGE 3: OPTIONS ── */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.option-row {
  display: flex;
  gap: 14px;
  background: var(--ad-light);
  border-radius: 10px;
  padding: 12px 14px;
}

.option-icon {
  width: 36px;
  height: 36px;
  background: var(--ad-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.option-content {
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: center;
}

.option-text {
  flex: 3;
  min-width: 0;
}

.option-text h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.option-text p {
  font-size: 11px;
  color: var(--ad-gray);
  line-height: 1.5;
}

.option-text ul {
  margin-top: 3px;
  padding-left: 14px;
  font-size: 10.5px;
  color: var(--ad-gray);
  line-height: 1.6;
}

.option-thumb {
  flex: 1;
  flex-shrink: 0;
  min-width: 0;
}

.option-thumb img {
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
  max-height: 80px;
  background: #fff;
  padding: 2px;
}

.cross-promo {
  background: linear-gradient(135deg, var(--ad-red), #8b0d1e);
  border-radius: 12px;
  padding: 20px 24px;
  color: white;
}

.cross-promo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin-bottom: 7px;
  color: var(--ad-gold);
}

.cross-promo p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 10px;
}

.promo-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.promo-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  color: white;
}

/* Social image */
.social-banner {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  max-height: 90px;
  margin-top: 8px;
  background: var(--ad-light);
}

/* ── PAGE 4: PRICING ── */
.price-section {
  margin-bottom: 18px;
}

.price-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ad-red);
  margin-bottom: 7px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e7eb;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr:nth-child(even) td {
  background: var(--ad-light);
}

.price-table td {
  padding: 7px 10px;
  font-size: 11.5px;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--ad-red);
  white-space: nowrap;
}

.price-table .dim {
  font-size: 0.75em;
  color: #888;
  font-weight: 400;
}

.price-img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
  max-height: 320px;
  margin-top: 8px;
  background: var(--ad-light);
  padding: 6px;
}

.ad-sizes {
  max-height: 400px;
}

.price-note {
  font-size: 10px;
  color: var(--ad-gray);
  font-style: italic;
  margin-top: 4px;
}

.price-highlight {
  background: var(--ad-dark);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.price-highlight p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.price-highlight strong {
  color: var(--ad-gold);
}

/* Price page 2-col layout */
.price-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── BACK PAGE ── */
.back-page {
  background: var(--ad-dark);
  min-height: 297mm;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  position: relative;
}

.back-page::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 16, 46, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.back-logo-img {
  height: 70px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.back-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 44px;
}

.back-cta {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--ad-gold);
  margin-bottom: 12px;
}

.back-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.contact-item .contact-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.contact-item .contact-value {
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.back-divider {
  width: 40px;
  height: 2px;
  background: var(--ad-red);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.back-footer {
  position: absolute;
  bottom: 22px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 1px;
}

.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.social-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

@media print {
  body {
    background: white;
  }

  .page {
    margin: 0;
    box-shadow: none;
  }

  .lang-selector,
  .no-print {
    display: none !important;
  }
}
