@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #1e1b4b;
  --primary-mid: #312e81;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-glow: #c4b5fd;
  --accent-pale: #ddd6fe;
  --bg: #ffffff;
  --bg-alt: #f5f3ff;
  --bg-dark: #1e1b4b;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-on-dark: #ede9fe;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --success: #10b981;
  --shadow-sm: 0 1px 2px rgba(30,27,75,.06);
  --shadow: 0 2px 8px rgba(30,27,75,.08);
  --shadow-md: 0 4px 16px rgba(30,27,75,.10);
  --shadow-lg: 0 8px 30px rgba(30,27,75,.13);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-pill: 999px;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-w: 1180px;
  --topbar-h: 38px;
  --header-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }

p + p { margin-top: 1rem; }

.x-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BAR ── */
.x-topbar {
  background: var(--primary);
  color: var(--text-on-dark);
  font-size: .8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.x-topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.x-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.x-topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

/* ── HEADER ── */
.x-header {
  background: var(--bg);
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow .3s;
}

.x-header.scrolled {
  box-shadow: var(--shadow-md);
}

.x-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.x-header__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}

.x-header__brand:hover { color: var(--accent); }

/* ── NAV ── */
.x-nav { display: none; }

.x-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.x-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}

.x-nav__item > a:hover,
.x-nav__item > a.is-active {
  background: var(--bg-alt);
  color: var(--accent);
}

.x-nav__item > a svg {
  width: 12px;
  height: 12px;
  transition: transform .2s;
}

.x-nav__item--has-dropdown { position: relative; }

.x-nav__dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.x-nav__item--has-dropdown:hover .x-nav__dropdown,
.x-nav__item--has-dropdown:focus-within .x-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.x-nav__item--has-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.x-nav__dropdown li a {
  display: block;
  padding: 8px 12px;
  font-size: .88rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}

.x-nav__dropdown li a:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

.x-header__phone {
  display: none;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 16px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-pill);
  transition: background .25s, color .25s;
}

.x-header__phone:hover {
  background: var(--accent);
  color: #fff;
}

/* ── BURGER ── */
.x-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.x-header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.x-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.x-header__burger.is-open span:nth-child(2) { opacity: 0; }
.x-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.x-mobile-menu {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 800;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.x-mobile-menu.is-open { transform: translateX(0); }

.x-mobile-menu__list {
  list-style: none;
}

.x-mobile-menu__list > li > a,
.x-mobile-menu__list > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  font-family: var(--font-body);
}

.x-mobile-menu__list > li > button svg {
  width: 16px;
  height: 16px;
  transition: transform .25s;
}

.x-mobile-menu__list > li > button.is-expanded svg {
  transform: rotate(180deg);
}

.x-mobile-menu__sub {
  list-style: none;
  display: none;
  padding-left: 16px;
}

.x-mobile-menu__sub.is-open { display: block; }

.x-mobile-menu__sub a {
  display: block;
  padding: 10px 0;
  font-size: .95rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}

.x-mobile-menu__sub a:hover { color: var(--accent); }

.x-mobile-menu__contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.x-mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--accent);
}

/* ── HERO ── */
.x-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, #4c1d95 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 0;
}

.x-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.x-hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-glow);
  background: rgba(124,58,237,.25);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.x-hero__title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  background: linear-gradient(135deg, #fff 0%, var(--accent-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.x-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--accent-pale);
  max-width: 620px;
  margin: 0 auto 32px;
}

.x-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.x-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  max-width: var(--max-w);
  margin: 0 auto;
}

.x-hero__stat {
  padding: 28px 16px;
  text-align: center;
  background: rgba(30,27,75,.5);
}

.x-hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.x-hero__stat-label {
  font-size: .82rem;
  color: var(--accent-pale);
  margin-top: 4px;
}

/* ── BUTTONS ── */
.x-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  text-align: center;
  line-height: 1.4;
}

.x-btn:hover { transform: translateY(-1px); }

.x-btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.x-btn--accent:hover {
  background: #6d28d9;
  border-color: #6d28d9;
  color: #fff;
}

.x-btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.x-btn--outline:hover {
  background: var(--accent);
  color: #fff;
}

.x-btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.x-btn--ghost:hover {
  background: rgba(255,255,255,.22);
}

.x-btn--white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.x-btn--white:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
}

/* ── SECTIONS ── */
.x-section {
  padding: 72px 20px;
}

.x-section--alt { background: var(--bg-alt); }

.x-section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.x-section--dark h2,
.x-section--dark h3 { color: #fff; }

.x-section--dark p { color: var(--accent-pale); }

.x-section__header {
  max-width: 640px;
  margin-bottom: 48px;
}

.x-section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.x-section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--bg-alt);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.x-section--dark .x-section__label {
  background: rgba(124,58,237,.25);
  color: var(--accent-glow);
}

/* heading with left bar decoration */
.x-section__title {
  padding-left: 18px;
  border-left: 4px solid var(--accent);
}

.x-section__header--center .x-section__title {
  border-left: none;
  padding-left: 0;
}

.x-section--dark .x-section__title { border-color: var(--accent-light); }

.x-section__desc {
  margin-top: 12px;
  color: var(--text-light);
  max-width: 560px;
}

.x-section__header--center .x-section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── CARD GRID ── */
.x-grid { display: grid; gap: 24px; }
.x-grid--2 { grid-template-columns: 1fr; }
.x-grid--3 { grid-template-columns: 1fr; }
.x-grid--4 { grid-template-columns: 1fr; }

/* ── CARDS (colored header stripe + white body) ── */
.x-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.x-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.x-card__stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.x-card__body {
  padding: 28px 24px;
}

.x-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.x-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.x-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.x-card__text {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── STEPS ── */
.x-steps { counter-reset: stepcount; }

.x-step {
  counter-increment: stepcount;
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.x-step:last-child { border-bottom: none; }

.x-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-step__num::before { content: counter(stepcount); }

.x-step__content h3 { margin-bottom: 6px; }

.x-step__content p {
  font-size: .92rem;
  color: var(--text-light);
}

/* ── STATS BAR (standalone) ── */
.x-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.x-stat-item { text-align: center; }

.x-stat-item__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.x-stat-item__label {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── WHY CHOOSE (prose) ── */
.x-prose {
  max-width: 800px;
}

.x-prose h3 { margin: 24px 0 8px; }

.x-prose p {
  color: var(--text);
  margin-bottom: 16px;
}

.x-prose--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── TESTIMONIALS (dark bg) ── */
.x-testimonials-wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.x-testimonial {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.x-testimonial__quote {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--accent-pale);
  margin-bottom: 18px;
  font-style: italic;
}

.x-testimonial__quote::before {
  content: "\201C";
  font-size: 2rem;
  color: var(--accent-light);
  line-height: 0;
  vertical-align: -.3em;
  margin-right: 4px;
}

.x-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.x-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.x-testimonial__name {
  font-weight: 600;
  color: #fff;
  font-size: .9rem;
}

.x-testimonial__role {
  font-size: .8rem;
  color: var(--accent-pale);
}

/* ── FAQ ACCORDION ── */
.x-faq-list { max-width: 800px; }
.x-faq-list--center { margin: 0 auto; }

.x-faq-item {
  border-bottom: 1px solid var(--border);
}

.x-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  line-height: 1.4;
}

.x-faq-item__q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  transition: transform .25s;
}

.x-faq-item.is-open .x-faq-item__q svg { transform: rotate(180deg); }

.x-faq-item__a {
  display: none;
  padding-bottom: 18px;
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.x-faq-item.is-open .x-faq-item__a { display: block; }

.x-faq-item__a a { color: var(--accent); font-weight: 500; }

/* ── CTA SECTION ── */
.x-cta {
  text-align: center;
  padding: 72px 20px;
}

.x-cta::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.x-cta h2 { margin-bottom: 14px; }

.x-cta p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── NEWSLETTER ── */
.x-newsletter {
  max-width: 480px;
  margin: 0 auto;
}

.x-newsletter__form {
  display: flex;
  gap: 8px;
}

.x-newsletter__input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  font-size: .92rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: box-shadow .2s;
}

.x-newsletter__input:focus {
  box-shadow: 0 0 0 2px var(--accent-light);
}

.x-newsletter__input::placeholder { color: var(--text-light); }

/* ── FORMS (filled style) ── */
.x-form__row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.x-form__row--2 { grid-template-columns: 1fr; }

.x-form__field { display: flex; flex-direction: column; }

.x-form__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.x-form__input,
.x-form__select,
.x-form__textarea {
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, background .2s;
  min-height: 48px;
}

.x-form__input:focus,
.x-form__select:focus,
.x-form__textarea:focus {
  border-color: var(--accent-light);
  background: var(--bg);
}

.x-form__textarea { resize: vertical; min-height: 120px; }

.x-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M7 10l5 4 5-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ── BREADCRUMBS ── */
.x-breadcrumb {
  padding: 16px 0;
  font-size: .82rem;
  color: var(--text-light);
}

.x-breadcrumb a { color: var(--accent); font-weight: 500; }
.x-breadcrumb a:hover { color: var(--primary); }
.x-breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO (subpages) ── */
.x-page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  padding: 48px 20px 56px;
  text-align: center;
}

.x-page-hero h1 { color: #fff; margin-bottom: 10px; }
.x-page-hero p { color: var(--accent-pale); max-width: 540px; margin: 0 auto; }

.x-page-hero .x-breadcrumb { color: var(--accent-pale); padding-bottom: 20px; }
.x-page-hero .x-breadcrumb a { color: var(--accent-glow); }

/* ── FOOTER (centered - style D) ── */
.x-footer {
  background: var(--primary);
  color: var(--text-on-dark);
  padding-top: 56px;
}

.x-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.x-footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

.x-footer__logo:hover { color: var(--accent-light); }

.x-footer__desc {
  font-size: .9rem;
  color: var(--accent-pale);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.x-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.x-footer__links a {
  font-size: .88rem;
  color: var(--text-on-dark);
  transition: color .2s;
}

.x-footer__links a:hover { color: var(--accent-light); }

.x-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 24px;
}

.x-footer__legal a {
  font-size: .8rem;
  color: var(--accent-pale);
}

.x-footer__legal a:hover { color: #fff; }

.x-footer__social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.x-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.x-footer__social a:hover { background: var(--accent); }

.x-footer__social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.x-footer__contact {
  font-size: .82rem;
  color: var(--accent-pale);
  margin-bottom: 24px;
  line-height: 1.8;
}

.x-footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.x-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.x-footer__bottom p + p { margin-top: 4px; }

/* ── COOKIE BANNER ── */
.x-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 16px 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .35s ease;
}

.x-cookie.shown { transform: translateY(0); }

.x-cookie__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.x-cookie__inner p {
  font-size: .88rem;
  color: var(--accent-pale);
  flex: 1;
  min-width: 200px;
}

.x-cookie__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ── BACK TO TOP ── */
.x-totop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, background .2s;
  z-index: 700;
  box-shadow: var(--shadow-md);
}

.x-totop.shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.x-totop:hover { background: var(--primary); }

.x-totop svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ── FADE IN ANIMATION ── */
.x-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.x-reveal.shown {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTACT SPLIT (Layout D: dark/light) ── */
.x-contact-split {
  display: grid;
  grid-template-columns: 1fr;
}

.x-contact-dark {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 48px 24px;
}

.x-contact-dark h2 { color: #fff; border-color: var(--accent-light); }
.x-contact-dark p { color: var(--accent-pale); }

.x-contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.x-contact-info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(124,58,237,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.x-contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 2;
}

.x-contact-info-item h4 {
  color: #fff;
  font-size: .88rem;
  margin-bottom: 2px;
}

.x-contact-info-item p {
  font-size: .85rem;
  color: var(--accent-pale);
}

.x-contact-light {
  padding: 48px 24px;
}

/* ── TIMELINE ── */
.x-timeline {
  position: relative;
  padding-left: 28px;
}

.x-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.x-timeline__item {
  position: relative;
  padding-bottom: 32px;
}

.x-timeline__item:last-child { padding-bottom: 0; }

.x-timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent-light);
}

.x-timeline__year {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.x-timeline__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.x-timeline__text {
  font-size: .9rem;
  color: var(--text-light);
}

/* ── TEAM GRID ── */
.x-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.x-team-member { text-align: center; }

.x-team-member__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.x-team-member__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.x-team-member__title {
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.x-team-member__bio {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── VALUE CARDS (About page) ── */
.x-value-card {
  display: flex;
  gap: 16px;
}

.x-value-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.x-value-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.x-value-card h3 { font-size: 1rem; margin-bottom: 6px; }

.x-value-card p {
  font-size: .9rem;
  color: var(--text-light);
}

/* ── LEGAL PAGES ── */
.x-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.x-legal h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}

.x-legal h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.x-legal p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: .94rem;
  line-height: 1.75;
}

.x-legal ul, .x-legal ol {
  margin: 12px 0 16px 20px;
  font-size: .94rem;
  color: var(--text);
  line-height: 1.75;
}

.x-legal li { margin-bottom: 4px; }

.x-legal .x-legal__updated {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ── THANK YOU ── */
.x-thankyou {
  text-align: center;
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}

.x-thankyou__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.x-thankyou__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.x-thankyou h1 { margin-bottom: 14px; }

.x-thankyou p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.x-thankyou__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── 404 ── */
.x-error-page {
  text-align: center;
  padding: 100px 20px;
}

.x-error-page__code {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.x-error-page h1 {
  margin: 16px 0 12px;
}

.x-error-page p {
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ── PARTNER LOGOS (trust) ── */
.x-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.x-partner-badge {
  width: 110px;
  height: 48px;
  background: var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ── FAQ CATEGORIES ── */
.x-faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.x-faq-cat-btn {
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  transition: background .2s, border-color .2s, color .2s;
}

.x-faq-cat-btn:hover,
.x-faq-cat-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── SEASONAL CARDS ── */
.x-season-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}

.x-season-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.x-season-card__header {
  padding: 24px;
  color: #fff;
}

.x-season-card__header--spring { background: linear-gradient(135deg, #059669, #34d399); }
.x-season-card__header--summer { background: linear-gradient(135deg, #d97706, #fbbf24); }
.x-season-card__header--fall { background: linear-gradient(135deg, #b45309, #f97316); }
.x-season-card__header--winter { background: linear-gradient(135deg, #1e40af, #3b82f6); }

.x-season-card__header h3 { color: #fff; margin-bottom: 4px; }
.x-season-card__header p { font-size: .85rem; opacity: .9; }

.x-season-card__body {
  padding: 24px;
}

.x-season-card__dest {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text);
}

.x-season-card__dest svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── HERO WITH BG IMAGE ── */
.x-hero--photo {
  background-size: cover;
  background-position: center;
}

.x-page-hero--photo {
  background-size: cover;
  background-position: center;
  padding: 56px 20px 64px;
}

/* ── DESTINATION SHOWCASE ── */
.x-dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.x-dest-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.x-dest-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.x-dest-item:hover img {
  transform: scale(1.08);
}

.x-dest-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  pointer-events: none;
}

.x-dest-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.x-dest-item__region {
  font-size: .78rem;
  opacity: .8;
}

/* ── IMAGE CARDS ── */
.x-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ── PHOTO BAND (full-width image strip) ── */
.x-photo-band {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ── SEASONAL CARD IMAGES ── */
.x-season-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .x-hero__stats { grid-template-columns: repeat(4, 1fr); }
  .x-stats-bar { grid-template-columns: repeat(4, 1fr); }
  .x-form__row--2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .x-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .x-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .x-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .x-testimonials-wrap { grid-template-columns: repeat(2, 1fr); }
  .x-team-grid { grid-template-columns: repeat(2, 1fr); }
  .x-contact-split { grid-template-columns: 1fr 1fr; }
  .x-section { padding: 88px 20px; }
  .x-hero { padding: 100px 20px 0; }
  .x-hero__inner { padding-bottom: 72px; }
  .x-dest-grid { grid-template-columns: repeat(3, 1fr); }
  .x-dest-item img { height: 240px; }
  .x-card__image { height: 200px; }
  .x-photo-band { height: 400px; }
  .x-season-card__image { height: 200px; }
}

@media (min-width: 1024px) {
  .x-nav { display: flex; }
  .x-header__phone { display: inline-flex; }
  .x-header__burger { display: none; }
  .x-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .x-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .x-testimonials-wrap { grid-template-columns: repeat(3, 1fr); }
  .x-team-grid { grid-template-columns: repeat(4, 1fr); }
  .x-contact-dark, .x-contact-light { padding: 56px 40px; }
  .x-topbar__item:nth-child(3) { margin-left: auto; }
}

@media (min-width: 1200px) {
  .x-section { padding: 96px 20px; }
}

@media print {
  .x-topbar, .x-header, .x-cookie, .x-totop, .x-footer__social, .x-mobile-menu { display: none !important; }
  .x-hero { background: #333 !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .x-section--dark { background: #eee !important; color: #000 !important; }
}
