﻿:root {
  --navy-900: #0f1421;
  --navy-850: #141b2a;
  --navy-800: #1a2334;
  --navy-700: #222c40;
  --gold-500: #d7b56d;
  --gold-450: #caa25c;
  --gold-400: #c6a256;
  --white: #ffffff;
  --muted: #cfd7ea;
  --muted-2: #9fb2d4;
  --border: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.05);
  --card-bg: linear-gradient(155deg, rgba(18, 24, 36, 0.96), rgba(12, 17, 28, 0.86));
  --card-bg-alt: linear-gradient(150deg, rgba(20, 26, 38, 0.96), rgba(12, 18, 30, 0.86));
  --card-glow: radial-gradient(circle at 18% 10%, rgba(215, 181, 109, 0.28), transparent 58%);
  --card-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 70px rgba(6, 10, 20, 0.55);
  --panel-bg: var(--card-bg);
  --panel-bg-alt: var(--card-bg-alt);
  --panel-highlight: var(--card-glow);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --font-sans: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-serif: "Merriweather", "Times New Roman", serif;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 18px;
  --space-lg: 28px;
  --space-xl: 48px;
  --transition: 180ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }

body.page {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 181, 109, 0.08), transparent 38%),
    radial-gradient(circle at 82% 16%, rgba(255, 214, 153, 0.06), transparent 38%),
    linear-gradient(150deg, #0f1421, #151c2b, #1a2334);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body.mobile-menu-open {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-500); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }

p { color: var(--muted); }

.container { width: min(1320px, 94%); margin: 0 auto; }

.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: start; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-12 { grid-column: span 12; }

.section { padding: clamp(36px, 5vw, 64px) 0; scroll-margin-top: 120px; }

.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(18px); background: linear-gradient(180deg, rgba(15, 20, 33, 0.92), rgba(15, 20, 33, 0.82)); border-bottom: 1px solid rgba(255, 255, 255, 0.06); padding: 8px 0; transition: transform 220ms ease, opacity 220ms ease; }
.site-header--hidden { transform: translateY(-110%); opacity: 0; }

.mobile-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 70;
  padding: 12px 0;
  background:
    radial-gradient(circle at 12% -20%, rgba(215, 181, 109, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(12, 18, 30, 0.98), rgba(10, 15, 24, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, opacity 220ms ease;
}
.mobile-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.mobile-header__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-header__title {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f4f6fb;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.mobile-header__subtitle {
  font-weight: 700;
  color: #f0dca2;
  font-size: 0.95rem;
}
.brand-mark--compact {
  width: 44px;
  height: 44px;
}
.mobile-header--hidden {
  transform: translateY(-110%);
  opacity: 0;
}
.site-header.transparent { background: transparent; border-bottom-color: transparent; }
.site-header.solid { background: rgba(7, 15, 31, 0.9); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.topbar-single { justify-content: flex-start; }
.topbar-meta { color: var(--muted-2); font-size: 0.95rem; }
.contact-cta { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; font-weight: 700; }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(215, 181, 109, 0.16); color: var(--gold-500); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.01em; border: 1px solid rgba(215, 181, 109, 0.3); }
.topbar-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: #0b1626;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: 0 12px 32px rgba(215, 181, 109, 0.35);
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}
.topbar-primary:hover { color: #0b1626; transform: translateY(-1px); box-shadow: 0 16px 40px rgba(215, 181, 109, 0.45); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); opacity: 0.7; }

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 30px 0;
  position: relative;
}
.nav-links { display: flex; gap: 32px; justify-content: center; font-weight: 700; color: #e3eaf9; flex-wrap: wrap; }
.nav-links a { padding: 12px 18px; border-radius: var(--radius-pill); font-size: 1.05rem; transition: color var(--transition), background var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-500); background: rgba(215, 181, 109, 0.18); position: relative; }
.nav-links a.active::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 36px; height: 3px; background: var(--gold-500); border-radius: 999px; transform: translateX(-50%); }
.lang-ru .nav {
  gap: 24px;
}
.lang-ru .nav-links {
  gap: 16px;
}
.lang-ru .nav-links a {
  font-size: 1.05rem;
  padding: 12px 18px;
}
.lang-ru .nav-actions {
  gap: 8px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.nav-actions .btn { white-space: nowrap; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.95rem; color: #e3eaf9; }
.lang-switch a { opacity: 0.6; transition: color var(--transition), opacity var(--transition); }
.lang-switch a:hover { color: var(--gold-500); opacity: 1; }
.lang-switch a.active { color: var(--gold-500); opacity: 1; }
.lang-switch span { opacity: 0.4; font-weight: 600; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: transform var(--transition), box-shadow var(--transition); border: 1px solid transparent; position: relative; overflow: hidden; }
.brand-mark::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: radial-gradient(circle, rgba(215, 181, 109, 0.25), transparent 60%); opacity: 0; transition: opacity var(--transition); }
.brand-mark:hover, .brand-mark:focus-visible { transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 30px rgba(215, 181, 109, 0.4); border-color: rgba(215, 181, 109, 0.45); outline: none; }
.brand-mark:hover::after, .brand-mark:focus-visible::after { opacity: 1; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 12px 28px rgba(12, 28, 52, 0.28); position: relative; z-index: 1; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name { font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; }

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  font-weight: 800;
  position: relative;
  padding-left: 0;
}
.eyebrow::before {
  content: none;
}


.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; letter-spacing: 0.01em; padding: 12px 22px; border-radius: var(--radius-pill); border: 1px solid transparent; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition); color: var(--white); background: rgba(255, 255, 255, 0.05); }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 3px;
}
.btn-primary { background: linear-gradient(135deg, #e0c17a, var(--gold-400)); color: #0b1626; box-shadow: 0 22px 46px rgba(215, 181, 109, 0.4); }
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #0b1626;
}
.btn-outline,
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(22, 27, 40, 0.7), rgba(18, 22, 34, 0.5));
  color: #f7f3ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 20px rgba(0, 0, 0, 0.35);
}
.btn-text { padding: 10px 8px; color: var(--gold-500); background: transparent; border: none; }
.btn.small { padding: 8px 12px; font-size: 0.9rem; }
.btn.full { width: 100%; }
.btn-static,
.btn:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.95;
}
.btn-primary.is-loading {
  position: relative;
  color: rgba(11, 22, 38, 0.8);
}
.btn-primary.is-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(11, 22, 38, 0.35);
  border-top-color: rgba(11, 22, 38, 0.85);
  animation: spin 0.8s linear infinite;
}

.link-inline { color: var(--gold-500); font-weight: 700; }
.link-inline:hover { text-decoration: underline; }

.nav-toggle { display: none; width: 42px; height: 42px; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border); border-radius: 12px; align-items: center; justify-content: center; gap: 6px; flex-direction: column; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); }

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 20, 33, 0.94) 0%, rgba(15, 20, 33, 0.5) 45%, rgba(15, 20, 33, 0.92) 100%),
    url("assets/hero-justice.jpg") center/cover no-repeat;
  filter: saturate(1.08);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 181, 109, 0.28), transparent 38%),
    radial-gradient(circle at 70% 78%, rgba(15, 20, 33, 0.7), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.9;
  z-index: 1;
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1380px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(280px, 4fr);
  gap: 32px;
}
.hero-main {
  padding: 44px;
  display: grid;
  gap: 18px;
}
.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-highlights li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  line-height: 1.5;
}
.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 181, 109, 0.15), var(--gold-500));
  box-shadow: 0 0 8px rgba(215, 181, 109, 0.35);
}
.hero-subline {
  color: var(--muted);
  max-width: 620px;
}
.hero-actions {
  margin-top: 8px;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-stats-panel,
.hero-side-panel {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.hero-stats-panel h3 { font-size: 1.6rem; }
.check-list { list-style: none; display: grid; gap: 10px; color: var(--muted); }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.4;
}
.check-list li span {
  display: none;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 181, 109, 0.15), var(--gold-500));
  box-shadow: 0 0 8px rgba(215, 181, 109, 0.35);
}
 
.process-steps { display: grid; gap: 14px; }
.process-steps > div { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.process-steps span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(215, 181, 109, 0.22);
  border: 1px solid rgba(215, 181, 109, 0.45);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold-500);
}
.page-hero h1, .hero h1 { font-size: clamp(2.6rem, 4vw, 4rem); margin: 10px 0 16px; }
.lede { color: #e6ecf7; max-width: 760px; margin-bottom: 14px; }

.surface.stack {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
}

.preloader {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 31, 0.9);
  display: grid;
  place-items: center;
  z-index: 200;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.sticky-cta {
  display: none !important;
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: #0b1626;
  font-weight: 800;
  border: none;
  box-shadow: 0 15px 40px rgba(215, 181, 109, 0.4);
  cursor: pointer;
  z-index: 50;
}

.sticky-cta:hover { transform: translateY(-1px); }

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 14, 30, 0.9);
  color: #f6f1e6;
  font-size: 1.2rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, background 160ms ease;
  z-index: 60;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));        
  color: #0a1326;
}

.mobile-menu-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 16, 32, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}
.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6);
}
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 6, 12, 0.75);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease;
  z-index: 80;
  padding: 24px;
}

.mobile-menu__panel {
  width: min(380px, 100%);
  background: rgba(8, 16, 32, 0.98);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(2, 4, 12, 0.62);
  padding: 30px;
  display: grid;
  gap: 14px;
}
.mobile-menu__panel a {
  display: block;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: #f6f1e6;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.mobile-menu__panel a:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.45);
  color: #fff;
}
.mobile-menu__panel a.active {
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.28), rgba(215, 181, 109, 0.16));
  color: #0b1424;
  border-color: rgba(215, 181, 109, 0.4);
  box-shadow: 0 12px 30px rgba(215, 181, 109, 0.35);
}
.mobile-lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(215, 181, 109, 0.35);
  background: rgba(12, 17, 28, 0.85);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.mobile-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
  color: #e8edf9;
  border: none;
  background: transparent;
  box-shadow: none;
}
.mobile-lang-switch a.active {
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.35), rgba(215, 181, 109, 0.2));
  color: #0b1424;
}
.mobile-lang-switch span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}
.mobile-lang-floating {
  position: absolute;
  right: 12px;
  top: 78px;
  z-index: 85;
}
@media (max-width: 768px) {
  .mobile-lang-floating {
    display: inline-flex;
  }
}
@media (min-width: 769px) {
  .mobile-lang-floating {
    display: none;
  }
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .sticky-cta {
    display: none;
  }
  .scroll-top {
    bottom: 14px;
    right: 10px;
  }
}

.slider { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255, 255, 255, 0.03); box-shadow: var(--shadow); padding: 18px; min-height: 190px; }
.slide { opacity: 0; pointer-events: none; transition: opacity 220ms ease; display: grid; gap: 12px; position: absolute; inset: 0; padding: 18px; }
.slide.active { opacity: 1; pointer-events: auto; }
.quote { font-size: 1.05rem; color: #f2f4fb; }
.author { display: flex; gap: 10px; align-items: center; color: #e6ecf7; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(215, 181, 109, 0.2); color: var(--gold-500); display: grid; place-items: center; font-weight: 800; }
.slider-controls { display: flex; gap: 8px; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 320ms ease, transform 320ms ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .fade-in {
    transform: translateY(18px);
    transition: opacity 420ms ease, transform 420ms ease;
  }
  .fade-in.visible {
    transform: translateY(0);
  }
  .service-card p,
  .faq-card p {
    transition: max-height 260ms ease, opacity 260ms ease;
  }
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 6px 0 8px; }

.usp-badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; margin: 6px 0 16px; }
.badge { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); padding: 10px 14px; border-radius: var(--radius-pill); font-weight: 700; color: #edf2fb; }

.hero-stats, .stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.hero-stat { position: relative; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius); padding: 18px; overflow: hidden; }
.hero-stat::before { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(255, 255, 255, 0.08); opacity: 0; transition: opacity var(--transition); }
.hero-stat::after { content: ""; position: absolute; left: 18px; top: 18px; width: 26px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(215, 181, 109, 0), var(--gold-500)); }
.hero-stat:hover::before { opacity: 1; }
.hero-stat .stat-number { font-size: 1.8rem; font-weight: 700; color: var(--gold-500); margin: 0 0 10px; }
.hero-stat .stat-label { color: rgba(255, 255, 255, 0.8); font-weight: 600; letter-spacing: 0.01em; margin: 0; }
.hero-card {
  padding: 26px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--card-border);
  background:
    var(--card-glow),
    var(--card-bg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card .mini-title {
  color: var(--gold-500);
  letter-spacing: 0.24em;
}
.hero-card h3 {
  margin: 0;
  color: #fff;
}
.hero-card p {
  color: #dfe6f7;
}
.stat-card {
  padding: 20px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--card-border);
  background:
    var(--card-glow),
    var(--card-bg-alt);
  box-shadow: var(--shadow);
}
.stat-number { font-size: 1.7rem; font-weight: 800; color: var(--gold-500); }   
.stat-label { color: rgba(255, 255, 255, 0.82); font-weight: 700; letter-spacing: 0.02em; }

.adv-card,
.stat-card,
.service-card,
.home-booking__info,
.home-booking__form,
.surface {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.adv-card::after,
.stat-card::after,
.service-card::after,
.home-booking__info::after,
.home-booking__form::after,
.surface::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 70%;
  background: radial-gradient(circle at 40% 40%, rgba(215, 181, 109, 0.18), transparent 60%);
  opacity: 0.08;
  pointer-events: none;
  transition: opacity 220ms ease;
  animation: card-ambient 12s ease-in-out infinite;
}
.adv-card:hover,
.stat-card:hover,
.service-card:hover,
.home-booking__info:hover,
.home-booking__form:hover,
.surface:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(6, 10, 20, 0.55);
  border-color: rgba(255, 255, 255, 0.16);
}
.adv-card:hover::after,
.stat-card:hover::after,
.service-card:hover::after,
.home-booking__info:hover::after,
.home-booking__form:hover::after,
.surface:hover::after {
  opacity: 0.18;
}
.adv-card .icon-circle {
  animation: icon-float 6s ease-in-out infinite;
}
@keyframes card-ambient {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.surface {
  position: relative;
  background:
    var(--card-glow),
    var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(215, 181, 109, 0.12), transparent 62%);
  z-index: 0;
  pointer-events: none;
}
.surface > * {
  position: relative;
  z-index: 1;
}
.glass {
  background:
    linear-gradient(140deg, rgba(12, 18, 30, 0.78), rgba(8, 13, 24, 0.68));
}
.stack { display: grid; gap: 16px; padding: 18px; }
.about-note {
  padding: 10px;
}
.about-note .stack {
  padding: 22px 26px;
}
.about-note p {
  color: #e0e6f5;
}
.about-card h3 {
  margin: 0;
  font-size: 1.2rem;
}
.about-card .mini-title {
  margin-bottom: 4px;
}
.card.block {
  padding: 22px;
  border-radius: calc(var(--radius) + 4px);
  background:
    var(--panel-highlight),
    var(--panel-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.guarantee h3 { font-size: 1.5rem; margin: 8px 0 10px; }
.small { color: #d3def5; font-size: 0.95rem; }
.mini-title { text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); font-size: 0.8rem; font-weight: 800; }

.tick-row, .list-item { display: flex; gap: 12px; align-items: flex-start; margin-top: 10px; }
.tick { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 8px; background: rgba(215, 181, 109, 0.22); color: var(--gold-500); font-weight: 800; }

.process-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.process-list { list-style: none; display: grid; gap: 10px; }
.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    var(--panel-highlight),
    var(--panel-bg-alt);
}
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(215, 181, 109, 0.4);
  color: var(--gold-500);
  font-weight: 800;
  background: rgba(215, 181, 109, 0.08);
}
.process-list p { color: #d6e3ff; }
.process-list.compact li { grid-template-columns: 44px 1fr; }

.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-top: 6px; }

.card-grid { margin-top: 12px; }
.service-card {
  padding: 24px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--card-border);
  background:
    var(--card-glow),
    var(--card-bg-alt);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  contain: layout paint;
  will-change: transform;
}
.service-card h3 { font-size: 1.25rem; }
.service-card__content {
  margin-top: 8px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, transform 240ms ease;
  will-change: height, opacity, transform;
}
.service-card__content p {
  line-height: 1.6;
  color: var(--muted);
}


.service-card:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 4px;
}



.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(215, 181, 109, 0.45), rgba(215, 181, 109, 0.12)),
    rgba(12, 18, 30, 0.9);
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 181, 109, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.icon-circle.large { width: 72px; height: 72px; border-radius: 22px; }
.icon-circle.small { width: 46px; height: 46px; }
.icon-circle svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-500);
  stroke-width: 1.6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.icon-circle.small svg { width: 26px; height: 26px; }
.icon-circle.large svg { width: 36px; height: 36px; }

.booking-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 18px);
  padding: 14px 18px;
  width: min(92vw, 520px);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(10, 16, 30, 0.96), rgba(7, 12, 24, 0.92));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(3, 9, 20, 0.55);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
.booking-toast::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(215, 181, 109, 0.16);
  color: var(--gold-500);
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(215, 181, 109, 0.4);
}
.booking-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tag { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(215, 181, 109, 0.12); color: var(--gold-500); font-weight: 800; width: fit-content; margin-top: 8px; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.logo-tile {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #f2f4fb;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.3), rgba(215, 181, 109, 0.15));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold-500);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.about-text { display: grid; gap: 14px; }
.adv-grid { margin-top: 10px; align-items: stretch; }
.adv-card {
  padding: 22px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--card-border);
  background:
    var(--card-glow),
    var(--card-bg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  align-content: flex-start;
  height: 100%;
}
.adv-card .icon-circle { margin-bottom: 6px; }

.home-booking__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.home-booking__info,
.home-booking__form {
  padding: 32px;
  border-radius: calc(var(--radius) + 6px);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    var(--panel-highlight),
    var(--panel-bg);
  box-shadow: var(--shadow);
}
.home-booking__form h3 {
  font-size: 1.4rem;
}
.home-booking__points {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.home-booking__points strong {
  color: #fff;
  font-weight: 600;
  margin-right: 4px;
}
.contact-meta--compact .contact-meta__item {
  padding: 10px;
}
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}
.contact-hero__left {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: calc(var(--radius) + 2px);
}
.contact-hero__right {
  padding: 24px;
  border-radius: calc(var(--radius) + 2px);
  display: grid;
  gap: 16px;
}
.contact-hero__cta {
  width: fit-content;
}
.contact-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.contact-hero .contact-meta {
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
  .contact-hero .contact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-meta__item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 12, 24, 0.6);
}
.contact-meta__icon {
  flex-shrink: 0;
}
.contact-meta__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact-meta__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.contact-meta__value--single-line {
  white-space: nowrap;
}
.contact-meta__value:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 6px;
}
.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-map.lazy-map {
  min-height: 260px;
  border-radius: var(--radius);
}
.contact-map.lazy-map iframe {
  filter: grayscale(0.1) contrast(1.05);
}
.contact-hours {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-hours strong {
  color: #fff;
  font-weight: 600;
  margin-right: 4px;
}
.contact-guide {
  display: grid;
  gap: 20px;
}
.contact-guide__intro {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.contact-guide__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.contact-step {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: calc(var(--radius) + 2px);
}
.contact-step__badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(215, 181, 109, 0.4);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold-500);
  background: rgba(215, 181, 109, 0.15);
}
.contact-step h3 {
  font-size: 1.2rem;
}
.contact-step ul {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.contact-panel {
  padding: 26px;
  border-radius: calc(var(--radius) + 2px);
  display: grid;
  gap: 16px;
}
.contact-panel--form {
  padding: 30px;
}
body.contact-page {
  color: #f0f4ff;
}
body.contact-page p {
  color: #cfd7ea;
}
.contact-simple-section,
.contact-form-section {
  background: transparent;
}
.contact-simple {
  background: linear-gradient(135deg, rgba(8, 14, 28, 0.88), rgba(9, 13, 23, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 48px 44px;
  display: grid;
  gap: 24px;
  box-shadow: 0 30px 80px rgba(3, 5, 12, 0.55);
  backdrop-filter: blur(18px);
}
.contact-simple__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.contact-simple__grid > article,
.contact-simple__grid > aside {
  display: grid;
  gap: 18px;
}
.contact-simple__grid > article,
.contact-simple__grid > aside {
  display: grid;
  gap: 18px;
}
.contact-status-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 19, 36, 0.85);
  width: fit-content;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.contact-status-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #27ce8d;
  box-shadow: 0 0 8px rgba(39, 206, 141, 0.7);
}
.contact-status-pill__text span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.75);
}
.contact-status-pill.is-offline {
  border-color: rgba(255, 107, 107, 0.35);
  background: rgba(45, 12, 16, 0.75);
}
.contact-status-pill.is-offline .contact-status-pill__dot {
  background: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.75);
}
.contact-status-pill.is-offline .contact-status-pill__label {
  color: #ffdede;
}
.contact-status-pill.is-offline .contact-status-pill__text span {
  color: rgba(255, 222, 222, 0.8);
}
.contact-simple h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.contact-simple__cta {
  width: fit-content;
  margin-top: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  background: linear-gradient(135deg, #f3d38b, #cda253);
  color: #0c1525;
  font-weight: 800;
  box-shadow: 0 20px 35px rgba(205, 162, 83, 0.35);
}
.contact-simple__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 45px rgba(205, 162, 83, 0.45);
}
.trust-note,
.reassurance {
  color: #dfe5fb;
}
.contact-info-column {
  display: grid;
  gap: 16px;
}
.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contact-details li {
  padding: 18px 18px 18px 54px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(6, 10, 20, 0.7);
  display: grid;
  gap: 4px;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.contact-details li::after {
  content: "";
  position: absolute;
  left: 54px;
  right: 18px;
  top: 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}
.contact-details li:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.contact-details li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 16, 32, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
  background-color: var(--gold-450);
}
.contact-details li:nth-child(1)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h4l2 5-3 3c2 4 6 8 10 10l3-3 5 2v4a3 3 0 0 1-3 3c-9.94 0-18-8.06-18-18a3 3 0 0 1 3-3z'/%3E%3C/svg%3E");
}
.contact-details li:nth-child(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm0 2l8 6 8-6'/%3E%3C/svg%3E");
}
.contact-details li:nth-child(3)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 4v2m12-2v2M5 9h14M7 13h4m-4 4h6M4 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z'/%3E%3C/svg%3E");
}
.contact-details li:nth-child(4)::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a7 7 0 0 1 7 7c0 4.35-4.23 9.33-6.37 11.5a1 1 0 0 1-1.45 0C9.03 19.33 5 14.35 5 10a7 7 0 0 1 7-7zm0 4a3 3 0 1 0 0.01 6.01A3 3 0 0 0 12 7z'/%3E%3C/svg%3E");
}
.contact-details__label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact-details a,
.contact-details p {
  color: #f4f6ff;
}
.contact-details a {
  font-weight: 700;
  transition: color 160ms ease;
}
.contact-details a:hover {
  color: var(--gold-500);
}
.contact-map-embed {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(6, 10, 22, 0.75);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.contact-map-embed figcaption {
  padding: 12px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-map-embed iframe {
  width: 100%;
  min-height: 220px;
  border: none;
  filter: grayscale(0.1) contrast(1.05);
  border-radius: 0 0 18px 18px;
}
.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(7, 12, 24, 0.88), rgba(8, 13, 21, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 48px 44px;
  display: grid;
  gap: 18px;
  box-shadow: 0 26px 70px rgba(2, 4, 12, 0.5);
  backdrop-filter: blur(18px);
}
.contact-form-wrapper h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  position: relative;
  padding-bottom: 8px;
}
.contact-form-wrapper h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--gold-450), rgba(255, 255, 255, 0));
}
.form-lede {
  color: #cfd7ea;
}
.form-note,
.form-next {
  color: #d9e3ff;
}
.contact-form-wrapper .booking-form {
  margin-top: 12px;
  gap: 18px;
}
.contact-form-wrapper .input-field input {
  background: rgba(6, 10, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f0f4ff;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.contact-form-wrapper .input-field input:focus-visible {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.2);
  background: rgba(9, 16, 32, 0.95);
}
.contact-form-wrapper .btn.full {
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #f3d38b, #cda253);
  box-shadow: 0 20px 35px rgba(205, 162, 83, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.contact-form-wrapper .btn.full:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 45px rgba(205, 162, 83, 0.45);
}

/* Contact page 2025 layout */
.contact-intro,
.contact-program,
.contact-location {
  background: transparent;
}
.contact-intro__grid,
.contact-program__grid,
.contact-location__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.contact-intro__card,
.contact-program__card,
.contact-program__form-card,
.contact-location__card {
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--card-border);
  background:
    var(--card-glow),
    var(--card-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 18px;
}
.contact-intro__card--primary {
  background:
    radial-gradient(circle at 0% 0%, rgba(215, 181, 109, 0.35), rgba(215, 181, 109, 0.12) 34%, transparent 58%),
    var(--card-bg-alt);
}
.contact-direct-line {
  background:
    radial-gradient(circle at 82% 6%, rgba(215, 181, 109, 0.18), transparent 60%),
    var(--card-bg-alt);
}
.contact-intro__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-intro__actions .btn {
  flex: 0 1 200px;
}
.contact-intro__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
}
.contact-intro__pills li {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid var(--card-border);
  background: radial-gradient(circle at 40% 30%, rgba(215, 181, 109, 0.18), rgba(12, 17, 28, 0.7));
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.direct-line-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.direct-line-card__header h2 {
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  margin-bottom: 4px;
}
.direct-line-card__header p {
  color: var(--muted);
}
.contact-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(10, 16, 30, 0.82), rgba(7, 11, 22, 0.76));
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.contact-status-pill--toggle {
  padding-right: 18px;
  border-color: rgba(47, 209, 148, 0.45);
  box-shadow: inset 0 0 15px rgba(47, 209, 148, 0.08);
}
.contact-status-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #27ce8d;
  box-shadow: 0 0 8px rgba(39, 206, 141, 0.7);
}
.contact-status-pill.is-offline {
  border-color: rgba(255, 107, 107, 0.35);
  background: rgba(45, 12, 16, 0.75);
}
.contact-status-pill.is-offline .contact-status-pill__dot {
  background: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.75);
}
.contact-status-pill.is-offline .contact-status-pill__label {
  color: #ffdede;
}
.direct-line-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.direct-line-card__item {
  padding: 20px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(150deg, rgba(9, 13, 24, 0.95), rgba(6, 10, 20, 0.8));
  display: grid;
  gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.direct-line-card__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.direct-line-card__value {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}
.direct-line-card__value--text {
  color: #fff;
}
.direct-line-card__item p {
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-flow__inner {
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(6, 11, 24, 0.9), rgba(8, 13, 26, 0.78));
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  text-align: left;
}
.contact-flow__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.contact-flow-card {
  border-radius: calc(var(--radius) + 2px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 20, 0.74);
  display: grid;
  gap: 12px;
}
.contact-flow-card__badge {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  border: 1px solid rgba(215, 181, 109, 0.4);
  border-radius: 14px;
  padding: 6px 14px;
  width: fit-content;
  background: rgba(215, 181, 109, 0.08);
}
.contact-flow-card h3 {
  font-size: 1.25rem;
}
.contact-program__card {
  align-content: start;
  background: linear-gradient(150deg, rgba(6, 11, 24, 0.9), rgba(8, 13, 25, 0.78));
}
.contact-program__list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.contact-program__list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-program__list li:last-child {
  border-bottom: none;
}
.contact-program__list span {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(215, 181, 109, 0.4);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-weight: 800;
  background: rgba(12, 18, 30, 0.85);
}
.contact-program__list strong {
  color: #fff;
  font-size: 1rem;
}
.contact-program__form-card {
  background:
    radial-gradient(circle at 25% 0%, rgba(215, 181, 109, 0.22), transparent 58%),
    linear-gradient(150deg, rgba(6, 11, 24, 0.9), rgba(8, 13, 25, 0.8));
}
.contact-program__form-card .booking-form {
  gap: 22px;
}
.contact-program__form-card .btn.full {
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #f3d38b, #cda253);
  box-shadow: 0 20px 35px rgba(205, 162, 83, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.contact-program__form-card .btn.full:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(205, 162, 83, 0.4);
}
.contact-location__card {
  align-content: start;
  background: linear-gradient(135deg, rgba(6, 10, 22, 0.92), rgba(8, 13, 24, 0.78));
}
.contact-location__meta {
  display: grid;
  gap: 12px;
}
.contact-location__meta span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted-2);
}
.contact-location__meta strong {
  font-size: 1.1rem;
  color: #fff;
}
.contact-location__map {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.direct-line__note p {
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}
.contact-checklist li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}
.contact-checklist span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-weight: 700;
}
.contact-checklist p {
  color: var(--muted);
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--glass);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 30px rgba(7, 10, 20, 0.4);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-card.compact {
  border-radius: var(--radius-sm);
  background: rgba(10, 16, 28, 0.6);
}
.contact-card:hover {
  border-color: rgba(215, 181, 109, 0.6);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(215, 181, 109, 0.35);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 40%, rgba(215, 181, 109, 0.28), rgba(7, 10, 20, 0.2));
}
.contact-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-500);
  stroke-width: 1.6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-card__label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact-card__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.contact-card__value:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 6px;
}
.booking-form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.input-field { display: grid; gap: 6px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.field-label { font-weight: 700; color: #f0f4ff; }
.input-field input {
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(16, 22, 34, 0.7), rgba(12, 17, 28, 0.6));
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.input-field input:focus-visible {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.2);
  background: linear-gradient(135deg, rgba(22, 28, 40, 0.75), rgba(16, 22, 34, 0.7));
}
.input-field.has-error input {
  border-color: #ff9b9b;
  box-shadow: 0 0 0 3px rgba(255, 120, 120, 0.2);
}
.field-error {
  min-height: 18px;
  font-size: 0.9rem;
  color: #ffb4b4;
}
.form-note { color: var(--muted-2); font-size: 0.95rem; }
.form-status { min-height: 18px; color: var(--gold-500); font-weight: 800; }
.contact-page .footer-map {
  display: none;
}

.detail-grid { margin-top: 12px; }
.detail-card {
  padding: 22px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    var(--panel-highlight),
    var(--panel-bg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}
.detail-card header { display: flex; align-items: center; gap: 12px; }
.bullet-list { list-style: none; display: grid; gap: 8px; color: #e4ebfa; }
.about-note .bullet-list {
  gap: 12px;
}
.about-note .bullet-list li {
  position: relative;
  padding-left: 18px;
}
.about-note .bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(215, 181, 109, 0.14);
}

.cta-panel {
  margin: 40px 0 60px;
  padding: 26px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 6% 40%, rgba(215, 181, 109, 0.28), transparent 55%),
    linear-gradient(130deg, rgba(6, 10, 20, 0.9), rgba(10, 15, 30, 0.78));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-actions { display: flex; gap: 10px; }

.timeline { display: grid; gap: 12px; margin-top: 14px; }
.timeline-step { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: center; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 10px rgba(215, 181, 109, 0.14); }
.timeline-step {
  opacity: 0;
  transform: translateY(10px);
  animation: timeline-fade 0.7s ease forwards;
}
.timeline-step:nth-child(1) { animation-delay: 0.05s; }
.timeline-step:nth-child(2) { animation-delay: 0.15s; }
.timeline-step:nth-child(3) { animation-delay: 0.25s; }
.timeline-step:nth-child(4) { animation-delay: 0.35s; }
.timeline-dot {
  animation: timeline-pulse 2.2s ease-in-out infinite;
}
@keyframes timeline-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes timeline-pulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(215, 181, 109, 0.14); }
  50% { box-shadow: 0 0 0 14px rgba(215, 181, 109, 0.18); }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-step,
  .timeline-dot {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .adv-card::after,
  .stat-card::after,
  .service-card::after,
  .home-booking__info::after,
  .home-booking__form::after,
  .surface::after,
  .adv-card .icon-circle {
    animation: none;
  }
}
.timeline.detailed { gap: 10px; }
.timeline.detailed .timeline-step { grid-template-columns: 30px 1fr; align-items: flex-start; }
.timeline.detailed .timeline-dot { margin-top: 4px; }

.promise-card {
  padding: 26px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    var(--panel-highlight),
    var(--panel-bg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}
.bullet-box { display: grid; gap: 10px; }

.footer { background: linear-gradient(180deg, rgba(12, 17, 28, 0.96), rgba(10, 15, 24, 0.98)); padding: 52px 0 20px; margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; align-items: stretch; }
.footer-copy { display: none; }
.footer-card--contact .brand { display: none; }
.footer-card {
  padding: 22px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--card-border);
  background:
    var(--card-glow),
    var(--card-bg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  height: 100%;
}
.footer-title {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-size: 0.75rem;
}
.footer-contact { display: grid; gap: 10px; color: #e3e8f6; }
.footer-contact-list,
.footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.footer-contact-list li,
.footer-hours li {
  position: relative;
  padding-left: 16px;
  display: grid;
  gap: 4px;
}
.footer-contact-list li::before,
.footer-hours li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 8px rgba(215, 181, 109, 0.45);
}
.footer-contact-label,
.footer-hours-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer-contact-value,
.footer-hours-value {
  font-weight: 700;
  color: #f2f5ff;
  text-decoration: none;
}
.footer-contact-value:hover {
  color: var(--gold-500);
}
.footer-copy {
  display: block;
  color: var(--muted);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8e2f3;
  font-weight: 700;
}
.footer-credit span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-credit strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: #e3ebf8;
}
.footer-credit small {
  color: #afbdd4;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-credit__icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  display: inline-block !important;
  flex: 0 0 16px;
  vertical-align: middle;
  overflow: hidden;
}
.footer-credit__icon--telegram {
  fill: #38a9e6;
}
.footer-credit__icon--linkedin {
  fill: #0a66c2;
}
.footer-credit__icon--email {
  stroke: #7dc7ff;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.footer-credit:hover {
  color: #edf3ff;
}
.footer-credit:hover small {
  color: #c3cfe1;
}
.footer-credit:hover strong {
  color: #f4f8ff;
}
.footer-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  padding: 7px 10px;
  border: 1px solid rgba(122, 144, 179, 0.22);
  border-radius: 999px;
  background: rgba(16, 24, 42, 0.58);
}
.footer-inline-link svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  display: inline-block !important;
  flex: 0 0 16px;
  vertical-align: middle;
}
.footer-inline-link svg path {
  vector-effect: non-scaling-stroke;
}
.footer-inline-link:hover {
  color: #d8e7ff;
  border-color: rgba(125, 199, 255, 0.4);
  background: rgba(18, 30, 52, 0.8);
}
/* Lazy map */
.lazy-map {
  width: 100%;
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(8, 14, 30, 0.65);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.lazy-map.wide {
  min-height: 320px;
}
.lazy-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}
.map-placeholder {
  display: grid;
  gap: 8px;
  padding: 24px;
}
.map-placeholder p {
  color: var(--muted);
}
.map-placeholder strong {
  color: var(--white);
}
.map-placeholder small {
  color: var(--muted-2);
  font-size: 0.85rem;
}
.footer-bottom { margin-top: 20px; border-top: 1px solid var(--border); padding: 14px 0; color: #c6d4ef; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.footer .footer-map {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.brand-light .brand-mark img { box-shadow: 0 10px 22px rgba(12, 28, 52, 0.2); }
.page { overflow-x: hidden; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-card {
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 6px);
  background:
    var(--card-glow),
    var(--card-bg-alt);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.faq-card header {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.faq-card header span {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(215, 181, 109, 0.4);
  display: grid;
  place-items: center;
  background: rgba(215, 181, 109, 0.12);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-500);
}
.faq-card { cursor: pointer; }
.faq-card h3 { font-size: 1.15rem; }
.faq-card p {
  margin-top: 8px;
  color: #dce5ff;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 220ms ease;
}
.faq-card.active p {
  max-height: 220px;
  opacity: 1;
}
.faq-card:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .faq-card:hover p {
    max-height: 220px;
    opacity: 1;
  }
}
.faq-process {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  background:
    var(--card-glow),
    var(--card-bg);
}
.legal-steps {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: #e3e9ff;
  line-height: 1.5;
}
.legal-steps li { border-left: 2px solid rgba(255, 255, 255, 0.12); padding-left: 12px; }

@media (max-width: 1200px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }
  .topbar-right {
    justify-content: flex-start;
    gap: 12px;
  }
  .nav {
    grid-template-columns: auto 1fr auto;
    row-gap: 10px;
  }
  .nav-links { justify-content: center; gap: 12px; font-size: 0.95rem; }
  .nav-links a { padding: 8px 10px; }
  .nav-actions { justify-content: flex-end; flex-wrap: wrap; }
  .nav-toggle { display: none; }
}

@media (max-width: 1024px) {
  .grid-12 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .col-7, .col-5, .col-6 { grid-column: span 8; }
  .col-4 { grid-column: span 4; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); width: min(420px, 92%); padding: 18px; background: rgba(8, 16, 32, 0.95); border: 1px solid var(--border); border-radius: var(--radius); flex-direction: column; gap: 8px; box-shadow: var(--shadow); z-index: 15; }
  .nav-links a { width: 100%; text-align: center; }
  .nav-links.open { display: flex; }
  .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .nav-actions .btn { flex: 1 1 160px; text-align: center; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; flex-wrap: wrap; }
  .hero-side > * { flex: 1 1 280px; }
  .contact-hero {
    grid-template-columns: 1fr;
  }
  .contact-hero__right {
    order: -1;
  }
  .contact-overview__grid,
  .contact-program-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
}

@media (max-width: 768px) {
  .site-header { display: none; }
  .mobile-header { display: block; }
  .topbar { display: none; }
  .nav-actions { display: none; }
  .grid-12 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .grid-12 > * { grid-column: span 4; }
  .section { padding: 36px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .nav { padding-top: 8px; }
  .hero { padding: 70px 0 30px; }
  .hero-main { padding: 28px; }
  .hero-side { flex-direction: column; }
  .contact-meta { grid-template-columns: 1fr; }
  .contact-guide__steps { grid-template-columns: 1fr; }
  .contact-panels { grid-template-columns: 1fr; }
  .contact-panel--form { padding: 24px; }
  .home-booking__grid { grid-template-columns: 1fr; }
  .home-booking__info,
  .home-booking__form { padding: 22px; }
  .adv-card::after,
  .stat-card::after,
  .service-card::after,
  .home-booking__info::after,
  .home-booking__form::after,
  .surface::after {
    animation: none;
  }
  .contact-overview__content,
  .contact-overview__info,
  .contact-program-card,
  .contact-form-card {
    padding: 26px;
    border-radius: 26px;
  }
  .contact-intro__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
  .direct-line-card__header {
    flex-direction: column;
  }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  .sticky-cta { right: 10px; bottom: 10px; font-size: 0.92rem; }
  .scroll-top {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    right: 12px;
    bottom: 78px;
  }
  .footer-card--contact .brand {
    display: none;
  }
  .footer-card--contact .footer-copy {
    display: none;
  }
  .hero-stats-panel,
  .hero-side-panel {
    overflow: visible;
  }
  .hero-stats-panel h3,
  .hero-stats-panel p,
  .hero-side-panel p {
    white-space: normal;
    text-overflow: initial;
  }
}

@media (max-width: 600px) {
  .btn, .cta-row .btn { width: 100%; justify-content: center; }
  .pill { font-size: 0.78rem; padding-inline: 10px; }
  .brand { gap: 8px; }
  .hero-main { padding: 24px 20px; }
  .contact-overview__actions .btn {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  .list-item { gap: 10px; }
  .sticky-cta { display: none; }
  .footer-bottom .container {
    align-items: flex-start;
  }
  .footer-credit {
    width: 100%;
    align-items: flex-start;
  }
  .footer-credit small {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-inline-link {
    padding: 8px 11px;
    font-size: 0.8rem;
  }
  .footer-credit__icon,
  .footer-inline-link svg {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    flex-basis: 15px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-text .brand-name { font-size: 0.95rem; }
  .hero-main { padding: 20px 16px; gap: 14px; }
  .section-head .btn { width: 100%; }
  .footer-grid { gap: 12px; }
  .lazy-map { min-height: 180px; }
}



.service-card.active .service-card__content {
  height: var(--service-card-height, 0);
  opacity: 1;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover .service-card__content {
    height: var(--service-card-height, 0);
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-overview__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #d9e1f6;
}
.contact-overview__points li {
  position: relative;
  padding-left: 18px;
}
.contact-overview__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.glow-divider {
  width: min(900px, 100%);
  margin: 50px auto;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #b08a34, rgba(255, 255, 255, 0));
  position: relative;
}
.glow-divider::after {
  content: "";
  position: absolute;
  inset: -6px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(176, 138, 52, 0.45), rgba(255, 255, 255, 0));
  filter: blur(8px);
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 640px) {
  .glow-divider {
    margin: 32px auto;
  }
}
