/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   insidesaudia.co — Дизайн-система Manus
   Цвета: ivory, deep gold, emerald, taupe, cream, terra
   Шрифты: Bodoni Moda, Crimson Pro, DM Sans
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  --ivory: #f5f0e8;
  --ivory-deep: #ede7d9;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --gold-soft: rgba(184, 134, 11, 0.12);
  --emerald: #1a4a3a;
  --emerald-deep: #0f1e19;
  --emerald-light: #2d6850;
  --taupe: #8b7355;
  --cream: #ede7d9;
  --terra: #7a3b2e;
  --text: #34322d;
  --text-muted: #858481;
  --text-light: #f5f0e8;
  --border-soft: rgba(184, 134, 11, 0.18);
  --border-light: rgba(255, 255, 255, 0.18);
  
  --font-serif: 'Bodoni Moda', Georgia, serif;
  --font-body: 'Crimson Pro', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  
  --container-max: 1280px;
  --section-padding: 6rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--ivory);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ━━━━━━━━━━ ISLAMIC GEOMETRIC PATTERN ━━━━━━━━━━ */
.geo-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23B8860B' stroke-width='0.4' opacity='0.18'%3E%3Cpolygon points='30,2 56,17 56,43 30,58 4,43 4,17'/%3E%3Cpolygon points='30,10 50,22 50,38 30,50 10,38 10,22'/%3E%3Cline x1='30' y1='2' x2='30' y2='10'/%3E%3Cline x1='56' y1='17' x2='50' y2='22'/%3E%3Cline x1='56' y1='43' x2='50' y2='38'/%3E%3Cline x1='30' y1='58' x2='30' y2='50'/%3E%3Cline x1='4' y1='43' x2='10' y2='38'/%3E%3Cline x1='4' y1='17' x2='10' y2='22'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.bg-pattern {
  position: absolute; inset: 0;
  opacity: 0.35;
  pointer-events: none;
}
.light-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%231a4a3a' stroke-width='0.4' opacity='0.12'%3E%3Cpolygon points='30,2 56,17 56,43 30,58 4,43 4,17'/%3E%3Cpolygon points='30,10 50,22 50,38 30,50 10,38 10,22'/%3E%3Cline x1='30' y1='2' x2='30' y2='10'/%3E%3Cline x1='56' y1='17' x2='50' y2='22'/%3E%3Cline x1='56' y1='43' x2='50' y2='38'/%3E%3Cline x1='30' y1='58' x2='30' y2='50'/%3E%3Cline x1='4' y1='43' x2='10' y2='38'/%3E%3Cline x1='4' y1='17' x2='10' y2='22'/%3E%3C/g%3E%3C/svg%3E");
}

/* ━━━━━━━━━━ GLASSMORPHISM ━━━━━━━━━━ */
.glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ━━━━━━━━━━ BUTTONS ━━━━━━━━━━ */
.btn-emerald, .btn-outline-gold, .btn-outline-emerald {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1.5px solid transparent;
}
.btn-emerald {
  background: var(--emerald);
  color: var(--ivory);
  border-color: var(--emerald);
}
.btn-emerald:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.55);
}
.btn-outline-gold {
  color: var(--ivory);
  background: transparent;
  border-color: rgba(212, 168, 67, 0.7);
}
.btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.55);
}
.btn-outline-emerald {
  color: var(--emerald);
  background: transparent;
  border-color: var(--emerald);
}
.btn-outline-emerald:hover {
  background: var(--emerald);
  color: var(--ivory);
}
.btn-full { width: 100%; }

/* ━━━━━━━━━━ ORNAMENTS ━━━━━━━━━━ */
.ornament {
  color: var(--gold);
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* ━━━━━━━━━━ HEADER ━━━━━━━━━━ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.header-meta {
  color: var(--gold);
}
.lang-switch {
  display: flex;
  gap: 1.25rem;
}
.lang-switch a { color: var(--text-muted); font-weight: 500; }
.lang-switch a.lang-active { color: var(--gold); font-weight: 700; }
.lang-switch a:hover { color: var(--gold); }
.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--emerald);
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-dot { color: var(--gold); }
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--gold); }
.nav .nav-cta {
  padding: 0.55rem 1.25rem;
  background: var(--emerald);
  color: var(--ivory);
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover {
  background: var(--gold);
  color: #fff;
}
.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--emerald);
  transition: all 0.3s;
}

/* ━━━━━━━━━━ HERO ━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, rgba(15, 30, 25, 0.85) 0%, rgba(26, 74, 58, 0.75) 50%, rgba(15, 30, 25, 0.85) 100%),
    radial-gradient(at 20% 30%, rgba(184, 134, 11, 0.4) 0%, transparent 50%),
    radial-gradient(at 80% 70%, rgba(122, 59, 46, 0.3) 0%, transparent 50%),
    linear-gradient(180deg, #1a4a3a 0%, #0f1e19 100%);
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 30, 25, 0.4) 100%);
  z-index: 2;
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.4;
  z-index: 3;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 920px;
  padding: 0 2rem;
  color: var(--ivory);
}
.hero-ornament {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  margin-bottom: 1.5rem;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.88);
  margin-bottom: 2.75rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.25);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 0.5rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ━━━━━━━━━━ SECTION HEADS ━━━━━━━━━━ */
section { padding: var(--section-padding) 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--emerald);
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--ivory); }
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-title.light em { color: var(--gold-light); }
.section-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.section-lead.light { color: rgba(245, 240, 232, 0.82); }

/* ━━━━━━━━━━ ABOUT / FEATURES ━━━━━━━━━━ */
.about { background: var(--ivory); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.feature-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-soft);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.4s ease;
  border-radius: 2px;
}
.feature-card:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.12);
}
.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ━━━━━━━━━━ SECTION PHOTO BG ━━━━━━━━━━ */
.section-photo-bg {
  position: relative;
  overflow: hidden;
}
.section-photo-bg > .bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.section-photo-bg > .section-content {
  position: relative;
  z-index: 2;
}

/* ━━━━━━━━━━ SERVICES ━━━━━━━━━━ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.service-card {
  padding: 2.25rem;
  color: var(--ivory);
  transition: all 0.4s ease;
  border-radius: 2px;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-light);
}
.service-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.98rem;
  color: rgba(245, 240, 232, 0.82);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.service-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.service-link:hover { color: #fff; }

/* ━━━━━━━━━━ DESTINATIONS ━━━━━━━━━━ */
.destinations { background: var(--ivory-deep); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.dest-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 2px;
}
.dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-img { transform: scale(1.05); }
.dest-content {
  position: relative;
  padding: 2rem 1.75rem;
  color: var(--ivory);
}
.dest-meta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.dest-card h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.dest-card p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.5;
}

/* ━━━━━━━━━━ KNOWLEDGE / GUIDES ━━━━━━━━━━ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.guide-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 2rem 1.75rem;
  transition: all 0.4s ease;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.15);
}
.guide-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.guide-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.guide-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.guide-meta {
  display: flex;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}
.guide-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
}
.guide-link:hover { color: var(--gold); }

.guide-card-cta {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: var(--ivory);
  border: none;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.guide-card-cta h3 { color: var(--ivory); }
.guide-card-cta p { color: rgba(245, 240, 232, 0.82); }
.guide-icon { 
  font-size: 2.5rem; 
  color: var(--gold-light); 
  margin-bottom: 1rem; 
}
.guide-cta-btn { margin-top: 1rem; }

/* ━━━━━━━━━━ PRICING ━━━━━━━━━━ */
.pricing { background: var(--ivory); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 4rem;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 2.75rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border-radius: 2px;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(184, 134, 11, 0.15);
}
.price-card-featured {
  background: linear-gradient(180deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: var(--ivory);
  border-color: var(--gold);
  transform: scale(1.04);
}
.price-card-featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: 2px;
}
.price-tier {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.price-card-featured .price-tier { color: var(--gold-light); }
.price-amount {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.price-card-featured .price-amount { color: var(--ivory); }
.price-amount-text { font-size: 2rem; }
.price-currency {
  font-size: 2rem;
  vertical-align: top;
  color: var(--gold);
  margin-right: 0.15rem;
}
.price-card-featured .price-currency { color: var(--gold-light); }
.price-period {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.price-card-featured .price-period { color: rgba(245, 240, 232, 0.7); }
.price-lead {
  font-style: italic;
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.price-card-featured .price-lead { color: rgba(245, 240, 232, 0.92); }
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.25rem;
}
.price-features li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}
.price-features li:last-child { border-bottom: none; }
.price-card-featured .price-features li {
  color: rgba(245, 240, 232, 0.92);
  border-bottom-color: rgba(212, 168, 67, 0.2);
}

/* ━━━━━━━━━━ FAQ ━━━━━━━━━━ */
.faq { background: var(--ivory-deep); }
.faq-list { margin-top: 3rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  margin-bottom: 0.85rem;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.08);
}
.faq-item summary {
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--emerald);
  list-style: none;
  position: relative;
  padding-right: 3.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-content {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-content p { font-size: 1rem; }
.faq-content strong { color: var(--emerald); font-weight: 600; }

/* ━━━━━━━━━━ CONTACT FORM ━━━━━━━━━━ */
.contact-form {
  padding: 2.75rem;
  margin-top: 3rem;
  color: var(--ivory);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}
.form-field select option { color: var(--text); }
.form-field textarea { resize: vertical; }
.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 1.25rem;
}
.form-disclaimer a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ━━━━━━━━━━ FOOTER ━━━━━━━━━━ */
.footer {
  background: var(--emerald-deep);
  color: var(--ivory);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col-brand .logo-text { color: var(--ivory); font-size: 1.6rem; }
.footer-col-brand .logo-sub { color: rgba(245, 240, 232, 0.6); }
.footer-about {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.05em;
}

/* ━━━━━━━━━━ REVEAL ANIMATIONS ━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━ RESPONSIVE ━━━━━━━━━━ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-padding: 4rem; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .header-top { font-size: 0.62rem; padding: 0.5rem 0; }
  .header-meta-text { display: none; }
  .header-bottom { padding: 0.85rem 0; }
  .nav { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav.open { display: flex; }
  .burger { display: flex; }
  .logo-text { font-size: 1.5rem; }
  .logo-sub { font-size: 0.55rem; }
  
  .hero { min-height: 80vh; padding: 4rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
  .hero-scroll { display: none; }
  
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  
  .price-card-featured { transform: scale(1); }
  .price-card-featured:hover { transform: translateY(-6px); }
  
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { width: 100%; text-align: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ВНУТРЕННИЕ СТРАНИЦЫ (услуги, направления, гайды)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* PAGE HERO (компактный, не fullscreen) */
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,30,25,0.92) 0%, rgba(26,74,58,0.85) 50%, rgba(15,30,25,0.92) 100%),
              radial-gradient(at 20% 30%, rgba(184,134,11,0.35) 0%, transparent 50%),
              linear-gradient(180deg, #1a4a3a 0%, #0f1e19 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--ivory);
}
.breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.7);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(245,240,232,0.5); }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.page-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.page-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(245,240,232,0.88);
  max-width: 720px;
  margin: 0 auto;
}

/* PAGE CONTENT */
.page-content {
  background: var(--ivory);
  padding: 5rem 0 4rem;
}
.content-section {
  max-width: 880px;
  margin: 0 auto 3rem;
}
.content-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}
.content-section p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.content-section-highlight {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(212,168,67,0.08) 100%);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.25rem;
  border-radius: 2px;
}
.content-section-highlight h2 {
  font-size: 1.4rem;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto 3rem;
}
.content-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.content-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.1);
}
.content-num {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.content-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.content-card p { font-size: 0.98rem; line-height: 1.55; color: var(--text-muted); margin-bottom: 0.5rem; }
.content-card-meta {
  font-family: var(--font-sans);
  font-size: 0.85rem !important;
  color: var(--gold) !important;
  font-weight: 500;
  margin-top: 1rem !important;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-soft);
}

.content-list {
  list-style: none;
  margin: 1.25rem 0;
}
.content-list li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}
.content-list li:last-child { border-bottom: none; }
.content-list li::before {
  content: '⟢';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
}
.content-list li strong { color: var(--emerald); font-weight: 600; }

.content-link-arrow {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.content-link-arrow:hover { color: var(--emerald); text-decoration: underline; }

/* TABLES */
.content-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}
.content-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
}
.content-table thead {
  background: var(--emerald);
  color: var(--ivory);
}
.content-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
  text-transform: uppercase;
}
.content-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  vertical-align: top;
}
.content-table tbody tr:last-child td { border-bottom: none; }
.content-table tbody tr:hover { background: rgba(184,134,11,0.04); }
.content-table tbody tr td strong { color: var(--emerald); }

/* STEPS */
.content-steps {
  margin: 1.5rem 0;
}
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  min-width: 60px;
}
.step > div {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}
.step strong { color: var(--emerald); font-weight: 600; }

/* STATS */
.content-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.stat-block {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(212,168,67,0.08) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
}
.stat-big {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* TOC (table of contents) */
.content-toc {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 2rem 2.25rem;
  border-radius: 2px;
  margin: 2rem 0;
}
.content-toc h3 {
  color: var(--gold);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.content-toc ol {
  padding-left: 1.5rem;
  counter-reset: toc;
  list-style: none;
}
.content-toc ol li {
  counter-increment: toc;
  padding: 0.45rem 0;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
}
.content-toc ol li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}

.content-callout {
  background: var(--emerald);
  color: var(--ivory);
  padding: 2rem;
  border-radius: 2px;
  margin: 1.5rem 0;
}
.content-callout p {
  color: var(--ivory) !important;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.content-callout p:last-child { margin-bottom: 0; }
.content-callout strong { color: var(--gold-light); }

/* GUIDE FORM */
.content-section-form {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: var(--ivory);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  margin-top: 4rem;
}
.content-section-form h2 {
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.content-section-form p {
  color: rgba(245,240,232,0.85);
  margin-bottom: 1.5rem;
}
.guide-form .form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.guide-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 2px;
}
.guide-form input::placeholder { color: rgba(245,240,232,0.5); }
.guide-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.form-disclaimer-light {
  font-size: 0.82rem !important;
  color: rgba(245,240,232,0.6) !important;
  margin-top: 0.75rem !important;
}
.form-disclaimer-light a { color: var(--gold-light); text-decoration: underline; }

/* LEGAL (для оферты) */
.content-section-legal h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: var(--emerald);
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.content-section-legal h2:first-child { margin-top: 0; }
.content-section-legal ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.content-section-legal li {
  padding: 0.3rem 0;
  font-size: 1.02rem;
  line-height: 1.6;
}
.content-section-legal p { font-size: 1.02rem; }

/* CTA section */
.page-cta {
  background: var(--ivory-deep);
  padding: 4rem 0;
}
.page-cta-box {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 2px;
}
.page-cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--emerald);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.page-cta-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-content { padding: 3rem 0 2rem; }
  .content-section { padding: 0 1.25rem; }
  .content-grid-2 { padding: 0 1.25rem; gap: 1rem; }
  .content-section-form { padding: 2rem 1.5rem; }
  .guide-form .form-row-inline {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .step { gap: 0.85rem; }
  .step-num { min-width: 50px; font-size: 1.2rem; }
  .content-section-legal { padding: 0 1.25rem; }
  .page-cta-box { padding: 2rem 1.5rem; }
}

/* ━━━━━━━━━━━━━━━━ ОТЕЛИ (бронирование) ━━━━━━━━━━━━━━━━ */
.hotels { background: var(--ivory); }
.hotels-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hotel-tab {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hotel-tab:hover { border-color: var(--gold); color: var(--gold); }
.hotel-tab.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--ivory);
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.hotel-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.hotel-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(184,134,11,0.15);
}
.hotel-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hotel-stars {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hotel-city-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(15,30,25,0.75);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.hotel-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.hotel-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.hotel-loc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.hotel-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.hotel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
}
.hotel-price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.hotel-price strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--emerald);
}
.hotel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.1rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.hotel-btn:hover {
  background: #1da851;
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}
.hotel-btn svg { flex-shrink: 0; }
.hotels-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.hotels-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}
.hotels-note a:hover { color: var(--emerald); }
.hotel-card.hidden { display: none; }

@media (max-width: 768px) {
  .hotels-grid { grid-template-columns: 1fr; }
  .hotel-foot { flex-direction: column; align-items: stretch; gap: 0.85rem; }
  .hotel-btn { justify-content: center; }
  .hotels-filter { gap: 0.5rem; }
  .hotel-tab { padding: 0.5rem 1.1rem; font-size: 0.76rem; }
}


/* ━━━━━━━━━━━━━━━━ КВИЗ-АНКЕТА ━━━━━━━━━━━━━━━━ */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,30,25,0.88);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.quiz-overlay.open { display: flex; }
.quiz-modal {
  background: linear-gradient(160deg, #1a4a3a 0%, #0f1e19 100%);
  border: 1px solid rgba(212,168,67,0.35);
  border-radius: 4px;
  max-width: 620px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 3rem 2.5rem;
  position: relative;
  color: var(--ivory);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.quiz-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none;
  color: var(--gold-light); font-size: 2rem; line-height: 1;
  cursor: pointer; transition: all .3s;
}
.quiz-close:hover { color: #fff; transform: rotate(90deg); }
.quiz-screen { text-align: center; }
.quiz-screen.hidden { display: none; }
.quiz-ornament { color: var(--gold); font-size: 1.3rem; letter-spacing: .5em; margin-bottom: 1.25rem; }
.quiz-modal h2 {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 500;
  margin-bottom: 1rem; line-height: 1.25;
}
.quiz-modal p { color: rgba(245,240,232,.85); line-height: 1.6; margin-bottom: 1.5rem; }
.quiz-progress {
  height: 3px; background: rgba(212,168,67,.2);
  border-radius: 2px; margin-bottom: 1.5rem; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .4s ease;
}
.quiz-step {
  font-family: var(--font-sans); font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: .85rem;
}
.quiz-options { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.75rem; }
.quiz-opt {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,168,67,.28);
  color: var(--ivory);
  font-family: var(--font-body); font-size: 1.02rem;
  padding: .95rem 1.25rem; border-radius: 2px;
  cursor: pointer; text-align: left; transition: all .28s;
}
.quiz-opt:hover {
  background: var(--gold); border-color: var(--gold);
  color: #fff; transform: translateX(4px);
}
.quiz-price-note {
  background: rgba(212,168,67,.12);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem; text-align: left;
  margin: 1.5rem 0; border-radius: 2px;
}
.quiz-price-note p { margin-bottom: .5rem; font-size: .98rem; }
.quiz-price-note p:last-child { margin-bottom: 0; }
.quiz-price-note strong { color: var(--gold-light); }
.quiz-hint { font-size: .9rem !important; color: rgba(245,240,232,.65) !important; }
.quiz-wa { display: inline-flex; margin-top: .5rem; }
@media (max-width: 768px) {
  .quiz-modal { padding: 2.5rem 1.5rem; }
  .quiz-modal h2 { font-size: 1.5rem; }
}

/* ━━━ Секторы ━━━ */
.sectors { background: var(--ivory-deep); }
.sectors-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem;
}
.sector-card {
  background: #fff; border: 1px solid var(--border-soft);
  padding: 1.75rem 1.5rem; border-radius: 2px; transition: all .35s;
}
.sector-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(184,134,11,.12);
}
.sector-icon { font-size: 1.9rem; margin-bottom: .85rem; }
.sector-card h3 {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500;
  color: var(--emerald); margin-bottom: .5rem; line-height: 1.25;
}
.sector-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.5; }

/* ━━━ ОЭЗ / RHQ ━━━ */
.rhq-highlight {
  display: flex; align-items: center; gap: 2rem;
  padding: 2.25rem; margin-bottom: 2.5rem; color: var(--ivory);
  border-radius: 3px;
}
.rhq-num {
  font-family: var(--font-serif); font-size: 5rem; font-weight: 500;
  color: var(--gold-light); line-height: 1; flex-shrink: 0;
}
.rhq-text h3 {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500;
  margin-bottom: .65rem; color: var(--ivory);
}
.rhq-text p { font-size: 1rem; color: rgba(245,240,232,.82); line-height: 1.6; }
.sez-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem;
}
.sez-card { padding: 1.75rem; color: var(--ivory); border-radius: 2px; transition: all .35s; }
.sez-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.16); border-color: var(--gold-light); }
.sez-tag {
  font-family: var(--font-sans); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: .6rem;
}
.sez-card h3 { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; margin-bottom: .6rem; }
.sez-card p { font-size: .95rem; color: rgba(245,240,232,.8); line-height: 1.5; }

/* ━━━ Трудоустройство ━━━ */
.jobs { background: var(--ivory); }
.subsection-title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500;
  color: var(--emerald); margin: 2.5rem 0 1.5rem; text-align: center;
}
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem;
}
.spec-card {
  background: #fff; border: 1px solid var(--border-soft);
  padding: 1.5rem; border-radius: 2px; transition: all .3s;
}
.spec-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.spec-icon { font-size: 1.6rem; margin-bottom: .6rem; }
.spec-card h4 {
  font-family: var(--font-serif); font-size: 1.08rem; font-weight: 500;
  color: var(--emerald); margin-bottom: .4rem;
}
.spec-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.45; }
.jobs-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2rem;
}
.salary-val {
  font-family: var(--font-serif); color: var(--gold) !important;
  font-weight: 600; white-space: nowrap;
}
.jobs-note {
  font-size: .85rem; color: var(--text-muted);
  text-align: right; margin-top: .5rem; font-style: italic;
}
.jobs-benefits { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.benefit {
  display: flex; align-items: center; gap: .85rem;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(212,168,67,.08) 100%);
  border: 1px solid var(--border-soft);
  padding: .85rem 1.25rem; border-radius: 2px;
  font-size: .98rem; color: var(--text);
}
.benefit span {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--gold); font-weight: 600; min-width: 2rem;
}
.jobs-cta {
  text-align: center; margin-top: 3rem; padding: 2.5rem;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  border-radius: 3px; color: var(--ivory);
}
.jobs-cta h3 {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; margin-bottom: .6rem;
}
.jobs-cta p { color: rgba(245,240,232,.85); margin-bottom: 1.5rem; }

/* ━━━ Госорганы ━━━ */
.gov-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem;
}
.gov-card { padding: 1.75rem; color: var(--ivory); border-radius: 2px; transition: all .35s; }
.gov-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.16); border-color: var(--gold-light); }
.gov-abbr {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600;
  color: var(--gold-light); line-height: 1; margin-bottom: .3rem;
}
.gov-full {
  font-family: var(--font-sans); font-size: .72rem; letter-spacing: .05em;
  color: var(--ivory); opacity: .75; margin-bottom: .85rem;
}
.gov-card p { font-size: .9rem; color: rgba(245,240,232,.82); line-height: 1.55; }

/* ━━━ Отзывы ━━━ */
.testimonials { background: var(--ivory-deep); }
.tst-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.tst-card {
  background: #fff; border: 1px solid var(--border-soft);
  padding: 2rem 1.75rem; border-radius: 2px;
  display: flex; flex-direction: column; transition: all .35s; position: relative;
}
.tst-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(184,134,11,.12);
}
.tst-quote-mark {
  font-size: 2.5rem; color: var(--gold); opacity: .35;
  line-height: 1; margin-bottom: .5rem; font-family: var(--font-serif);
}
.tst-quote {
  font-size: 1rem; line-height: 1.65; color: var(--text);
  font-style: italic; margin-bottom: 1.5rem; flex-grow: 1;
}
.tst-author {
  display: flex; align-items: center; gap: .85rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border-soft);
}
.tst-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: .85rem; font-weight: 600; letter-spacing: .05em;
}
.tst-name {
  font-family: var(--font-serif); font-size: 1.05rem;
  color: var(--emerald); font-weight: 500;
}
.tst-role { font-family: var(--font-sans); font-size: .8rem; color: var(--text-muted); }

/* ━━━ Заметка к тарифам ━━━ */
.pricing-note {
  text-align: center; margin-top: 2.5rem; font-size: .95rem;
  color: var(--text-muted); max-width: 720px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .jobs-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .rhq-highlight { flex-direction: column; text-align: center; gap: 1rem; padding: 1.75rem; }
  .rhq-num { font-size: 3.5rem; }
  .jobs-cta { padding: 1.75rem 1.25rem; }
}
