:root {
  --bg: #07070a;
  --panel: #101018;
  --panel-soft: #171722;
  --text: #f7f7fb;
  --muted: #b8b8c8;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ff2f92;
  --cyan: #22d3ee;
  --blue: #4f7cff;
  --gold: #f7c948;
  --green: #2dd4bf;
  --max: 1180px;
  color-scheme: dark;
}

body.theme-luxury {
  --bg: #060607;
  --panel: #10100e;
  --panel-soft: #181712;
  --text: #fffaf0;
  --muted: #c9c0a8;
  --pink: #d8a928;
  --cyan: #f7c948;
  --blue: #6ee7f9;
  --gold: #f7c948;
}

body.theme-editorial {
  --bg: #08090b;
  --panel: #111318;
  --panel-soft: #171b22;
  --text: #f5f7fb;
  --muted: #aeb7c4;
  --pink: #e44875;
  --cyan: #7dd3fc;
  --blue: #38bdf8;
  --gold: #f0b95a;
}

body.theme-vivid {
  --bg: #05030a;
  --panel: #11081a;
  --panel-soft: #1a1026;
  --text: #fff7ff;
  --muted: #cbb8d6;
  --pink: #ff2f92;
  --cyan: #00e5ff;
  --blue: #8b5cf6;
  --gold: #ffe66d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.preview-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 10, 0.82);
  backdrop-filter: blur(14px);
}

.preview-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.preview-switcher a[aria-current="page"] {
  border-color: var(--cyan);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 10, 0.86);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand span:first-child {
  font-size: 1.05rem;
}

.brand span:last-child {
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  border: 1px solid var(--line);
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(255, 47, 146, 0.28);
}

.btn.secondary {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.btn.cyan {
  background: var(--cyan);
  color: #051013;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.2);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero.small {
  min-height: 360px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.9), rgba(7, 7, 10, 0.36) 50%, rgba(7, 7, 10, 0.78)),
    linear-gradient(0deg, rgba(7, 7, 10, 0.96), rgba(7, 7, 10, 0.12) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 72px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero.small h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: #e7e7ee;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.section {
  padding: 82px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section.alt {
  background: var(--panel);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--line);
  background: var(--panel-soft);
  overflow: hidden;
}

.card-media {
  aspect-ratio: 4 / 3;
  background: #20202a;
}

.card-media.wide {
  aspect-ratio: 16 / 10;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.pill {
  border: 1px solid var(--line);
  padding: 6px 9px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split-media {
  min-height: 420px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.copy p,
.text-page p,
.text-page li {
  color: var(--muted);
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.list li {
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
}

.pricing-card {
  display: grid;
  gap: 16px;
}

.price {
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.quote {
  min-height: 100%;
  padding: 24px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.map-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.voice-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 47, 146, 0.16), transparent 36%),
    linear-gradient(45deg, rgba(34, 211, 238, 0.12), transparent 54%),
    var(--panel-soft);
  padding: 30px;
}

.voice-orb {
  aspect-ratio: 1;
  min-height: 240px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.42), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(255, 47, 146, 0.28), transparent 50%),
    #08080d;
  display: grid;
  place-items: center;
}

.voice-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.26);
}

.voice-content h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.voice-content p {
  color: var(--muted);
}

.language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.map-box {
  min-height: 360px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.2), transparent 45%),
    linear-gradient(45deg, rgba(255, 47, 146, 0.18), transparent 50%),
    #12121b;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--panel-soft);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 47, 146, 0.18), rgba(34, 211, 238, 0.1)),
    #0d0d14;
}

.cta-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.cta-inner p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 32px;
  background: #050507;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--text);
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--cyan);
}

.text-page {
  max-width: 860px;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

@media (max-width: 920px) {
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    background: #09090e;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .lang {
    display: none;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .split,
  .map-band,
  .voice-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-inner {
    display: grid;
    align-items: start;
  }

  .hero {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-content,
  .container,
  .cta-inner {
    width: min(var(--max), calc(100% - 24px));
  }

  h1 {
    font-size: clamp(2.6rem, 18vw, 4.4rem);
  }

  .section {
    padding: 58px 0;
  }

  .card-body {
    padding: 18px;
  }

  .preview-switcher {
    left: 12px;
    right: 12px;
    justify-content: center;
  }
}
