/* ============================================================
   ArtefactHunt VR Hub — style.css
   Main stylesheet for index.html + shared header/footer
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-primary:   #07091a;
  --bg-secondary: #0d1333;
  --bg-card:      #111830;
  --bg-card-hover:#152044;

  /* Borders */
  --border:       #1e2d5a;
  --border-light: #243660;

  /* Brand colors */
  --primary:      #00d4ff;
  --primary-dark: #009dc0;
  --accent:       #ff6b35;
  --accent-dark:  #e05520;

  /* Text */
  --text-white:   #ffffff;
  --text-body:    #cdd6f4;
  --text-muted:   #6b7b99;

  /* Typography */
  --font-heading: 'Exo 2', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-py:    80px;

  /* Radius */
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--text-white);
}

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

ul, ol {
  list-style: none;
}

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

/* ============================================================
   Container
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

.section-header {
  margin-bottom: 52px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* Image placeholder */
.img-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-body);
}

.img-placeholder svg {
  opacity: 0.4;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--border-light);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-white);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 26, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 42px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.brand-name em {
  font-style: normal;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  padding: 80px 0 80px;
  background-image:
    linear-gradient(to bottom, rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(to right, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-col {
  position: relative;
}

.hero-placeholder {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION 2 — CONCEPT (Що таке ArtefactHunt?)
   ============================================================ */
.concept {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}

.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.concept-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.concept-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.concept-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.concept-highlight-icon svg {
  color: var(--primary);
}

.concept-highlight-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.concept-highlight-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.concept-image-wrap {
  position: relative;
}

.concept-placeholder {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.concept-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION 3 — HOW IT WORKS (Як це працює)
   ============================================================ */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0,212,255,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SECTION 4 — ATTRACTIONS / PRODUCTS (Наші атракціони)
   ============================================================ */
.attractions {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.attraction-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

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

.attraction-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.attraction-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,212,255,0.1);
  flex-shrink: 0;
}

.attraction-card--accent .attraction-icon {
  background: rgba(255,107,53,0.1);
}

.attraction-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
}

.attraction-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,212,255,0.08);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.attraction-card--accent .attraction-tag {
  color: var(--accent);
  background: rgba(255,107,53,0.08);
}

.attraction-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.attraction-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.attraction-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.attraction-meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.attraction-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ============================================================
   SECTION 5 — ADVANTAGES (Чому обирають нас)
   ============================================================ */
.advantages {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.advantage-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SECTION 6 — AUDIENCE (Для кого підходить)
   ============================================================ */
.audience {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}

.audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.audience-segments {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.audience-segment {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.audience-segment-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.audience-segment-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.audience-segment-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.audience-placeholder {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.audience-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION 7 — STATS (ArtefactHunt у цифрах)
   ============================================================ */
.stats {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* ============================================================
   SECTION 8 — FAQ (Питання та відповіді)
   ============================================================ */
.faq {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}

.faq-question:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-item.open .faq-icon {
  background: rgba(0,212,255,0.2);
}

/* ============================================================
   SECTION 9 — CONTACTS (Контакти)
   ============================================================ */
.contacts {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item-body h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-item-body a,
.contact-item-body p {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-body a:hover {
  color: var(--primary);
}

.contact-hours {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.attraction-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0 16px;
}

.contact-hours h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row strong {
  color: var(--text-white);
  font-weight: 600;
}

.contacts-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contacts-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contacts-cta {
  background: var(--bg-card);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.contacts-cta h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contacts-cta p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contacts-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 36px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-img {
  width: 36px;
  height: 32px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.footer-brand em {
  font-style: normal;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }

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

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

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

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 52px;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-placeholder {
    height: 260px;
  }

  /* Concept */
  .concept-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .concept-placeholder {
    height: 260px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Attractions */
  .attractions-grid {
    grid-template-columns: 1fr;
  }

  /* Advantages */
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  /* Audience */
  .audience-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-placeholder {
    height: 260px;
    order: -1;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contacts */
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

/* ============================================================
   CENTER ALIGNMENT FOR MAIN CONTENT SECTIONS
   ============================================================ */
.section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 640px;
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Center-align specific sections (not hero, contacts, footer) */
.concept,
.how-it-works,
.attractions,
.stats,
.audience,
.faq {
  text-align: center;
}

.concept-inner,
.concept-text {
  text-align: center;
  margin: 0 auto;
}

.concept-highlights {
  justify-content: center;
}

.steps-grid {
  margin: 0 auto;
}

.attractions-grid {
  margin: 0 auto;
}

.stats-grid {
  margin: 0 auto;
}

.audience-content {
  text-align: center;
  margin: 0 auto;
}

.faq-items {
  margin: 0 auto;
  max-width: 800px;
}
