/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1a1a;
  --bg-2: #232323;
  --bg-3: #2c2c2c;
  --line: #3a3a3a;
  --text: #f0f0f0;
  --muted: #a8a8a8;
  --muted-dim: #6e6e6e;
  --accent: #1e4d8c;
  --accent-2: #163a6b;
  --accent-soft: rgba(30, 77, 140, 0.18);
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --t: 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --header-h: 76px;
  --mobile-bar-h: 68px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(30, 77, 140, 0.15);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t);
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.96);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(30, 77, 140, 0.35);
  flex-shrink: 0;
}

.logo-text span {
  color: var(--accent);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #e8eef6;
  box-shadow: 0 10px 26px rgba(30, 77, 140, 0.28);
}

.btn-primary:hover {
  color: #e8eef6;
  box-shadow: 0 14px 32px rgba(30, 77, 140, 0.4);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: all var(--t);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.03);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 45%, rgba(26, 26, 26, 0.45) 100%),
    linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(30, 77, 140, 0.7);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(30, 77, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 77, 140, 0); }
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), #4a7fc4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* ===== SECTION ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-2);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.section-sub {
  color: var(--muted);
  margin-top: 14px;
}

/* ===== SERVICE CARDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.svc {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
}

.svc:hover {
  border-color: rgba(30, 77, 140, 0.55);
}

.svc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.12);
  transition: transform 1.1s ease;
}

.svc:hover .svc-img {
  transform: scale(1.07);
}

.svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.8) 32%, rgba(20, 20, 20, 0.4) 66%, rgba(20, 20, 20, 0.08) 100%);
  transition: background var(--t);
}

.svc:hover .svc-img::after {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0.66) 32%, rgba(20, 20, 20, 0.24) 66%, rgba(20, 20, 20, 0) 100%);
}

.svc-body {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 14px rgba(4, 7, 11, 0.95);
}

.svc-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(30, 77, 140, 0.3);
  backdrop-filter: blur(6px);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.svc h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc p {
  font-size: 0.92rem;
  color: #d0d0d0;
  margin-bottom: 16px;
}

.svc-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.svc-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.svc-price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-dim);
}

.svc-time {
  font-size: 0.82rem;
  color: var(--muted-dim);
}

/* ===== FEATURE (why us) ===== */
.feat {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: border-color var(--t), transform var(--t);
}

.section-alt .feat {
  background: var(--bg-3);
}

.feat:hover {
  border-color: rgba(30, 77, 140, 0.5);
}

.feat-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--accent-soft);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.feat h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 9px;
}

.feat p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.section-alt .step {
  background: var(--bg-3);
}

.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #e8eef6;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.03rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== ABOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-media:hover img {
  transform: scale(1.04);
}

.split-media .tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
}

.split-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}

.split-text p {
  color: var(--muted);
  margin-bottom: 14px;
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 3px;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(4),
.gallery figure:nth-child(5),
.gallery figure:nth-child(6) { grid-column: span 2; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter var(--t);
}

.gallery figure:hover img {
  transform: scale(1.06);
}

/* ===== PRICE TABLE ===== */
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.price-table th,
.price-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table thead th {
  background: var(--bg-3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr {
  transition: background var(--t);
}

.price-table tbody tr:hover {
  background: rgba(30, 77, 140, 0.05);
}

.price-table .name {
  font-weight: 600;
}

.price-table .cost {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.price-table .time {
  color: var(--muted);
  white-space: nowrap;
}

.scroll-x {
  overflow-x: auto;
}

/* ===== TARIFF CARDS ===== */
.tariffs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  align-items: start;
}

.tariff {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: all var(--t);
}

.section-alt .tariff {
  background: var(--bg-3);
}

.tariff:hover {
  border-color: rgba(30, 77, 140, 0.5);
}

.tariff.best {
  border-color: var(--accent);
  box-shadow: 0 18px 45px rgba(30, 77, 140, 0.14);
}

.tariff-flag {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 5px 15px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #e8eef6;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tariff h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tariff .desc {
  font-size: 0.88rem;
  color: var(--muted-dim);
  margin-bottom: 22px;
}

.tariff .amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.tariff .amount b {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.tariff .amount span {
  color: var(--muted-dim);
  font-size: 0.9rem;
}

.tariff ul {
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
}

.tariff li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.tariff li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.tariff li.off {
  color: var(--muted-dim);
  opacity: 0.55;
}

.tariff li.off::before {
  content: '—';
  color: var(--muted-dim);
}

/* ===== REVIEWS ===== */
.review {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.section-alt .review {
  background: var(--bg-3);
}

.stars {
  color: #ffc94d;
  font-size: 0.92rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review p {
  color: var(--text);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.review-who {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #e8eef6;
  font-weight: 800;
  flex-shrink: 0;
}

.review-who b {
  display: block;
  font-size: 0.93rem;
}

.review-who small {
  color: var(--muted-dim);
  font-size: 0.8rem;
}

/* ===== CTA BANNER ===== */
.cta {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/cta.jpg') center/cover no-repeat;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26, 26, 26, 0.96), rgba(26, 26, 26, 0.85));
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.cta p {
  color: var(--muted);
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== PAGE HEADER ===== */
.page-head {
  padding: 150px 0 66px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.crumbs {
  display: flex;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--muted-dim);
  margin-bottom: 16px;
}

.crumbs a:hover {
  color: var(--accent);
}

.page-head h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
}

.page-head p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 620px;
}

/* ===== FORMS ===== */
.form {
  display: grid;
  gap: 18px;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color var(--t), box-shadow var(--t);
}

.section-alt .field input,
.section-alt .field select,
.section-alt .field textarea {
  background: var(--bg-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hint {
  font-size: 0.8rem;
  color: var(--muted-dim);
}

.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.section-alt .form-card {
  background: var(--bg-3);
}

.form-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

/* Success box */
.success {
  display: none;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.success.show {
  display: block;
}

.success-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #e8eef6;
  font-size: 1.6rem;
  font-weight: 800;
}

.success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.success p {
  color: var(--muted);
}

/* ===== BOOKING SUMMARY ===== */
.booking-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 30px;
  align-items: start;
}

.summary {
  position: sticky;
  top: 100px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.section-alt .summary {
  background: var(--bg-3);
}

.summary h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.sum-row span:first-child {
  color: var(--muted-dim);
  flex-shrink: 0;
}

.sum-row span:last-child {
  text-align: right;
  font-weight: 600;
}

.sum-row.total {
  border-bottom: 0;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.sum-row.total span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.sum-row.total span:last-child {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.summary-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  font-size: 0.84rem;
  color: var(--muted);
}

/* ===== CONTACT ===== */
.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  transition: border-color var(--t);
}

.section-alt .contact-item {
  background: var(--bg-3);
}

.contact-item:hover {
  border-color: rgba(30, 77, 140, 0.5);
}

.contact-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  font-size: 1.15rem;
}

.contact-item h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.96rem;
}

.contact-item a:hover {
  color: var(--accent);
}

.map-box {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ===== HOURS ===== */
.hours {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  background: var(--bg-2);
  font-size: 0.94rem;
}

.section-alt .hours-row {
  background: var(--bg-3);
}

.hours-row.now {
  background: var(--accent-soft);
}

.hours-row b {
  color: var(--white);
  font-weight: 600;
}

.hours-row span {
  color: var(--muted);
}

/* ===== FAQ ===== */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  overflow: hidden;
}

.section-alt .faq-item {
  background: var(--bg-3);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  background: none;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-q i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-style: normal;
  font-size: 1rem;
  transition: transform var(--t);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 66px 0 28px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-about p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 5px 0;
}

.footer-col a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  transition: all var(--t);
}

.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted-dim);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE OVERLAY & BOTTOM BAR ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 900;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body.menu-open .mobile-bar {
  display: none;
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.mobile-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-bar-call {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--bg-2);
}

.mobile-bar-book {
  border: 0;
  color: #e8eef6;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 22px rgba(30, 77, 140, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .badge-dot {
    animation: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .summary {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery figure:nth-child(n) {
    grid-column: span 1;
  }

  .gallery figure:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 860px) {
  .burger {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    z-index: 910;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 8px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 16px 4px;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-bar {
    display: grid;
  }

  body.has-mobile-bar {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }

  .footer {
    padding-bottom: calc(28px + var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
    --mobile-bar-h: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 28px) 0 56px;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0.88) 55%, rgba(26, 26, 26, 0.96) 100%);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem);
    letter-spacing: -0.8px;
  }

  .hero p.lead {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    padding-top: 24px;
  }

  .stat-num {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
  }

  .page-head {
    padding: calc(var(--header-h) + 24px) 0 48px;
  }

  .page-head h1 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc {
    min-height: 280px;
    padding: 22px;
  }

  .feat,
  .step,
  .review {
    padding: 22px 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .split {
    gap: 28px;
  }

  .split-text h2,
  .page-head h1 {
    letter-spacing: -0.5px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 10px;
  }

  .gallery figure:nth-child(n) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .tariffs {
    gap: 16px;
  }

  .tariff {
    padding: 26px 20px;
  }

  .tariff .amount b {
    font-size: 2.2rem;
  }

  .cta {
    padding: 64px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .form-card,
  .summary {
    padding: 22px 16px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 13px 14px;
  }

  .field textarea {
    min-height: 110px;
  }

  .btn,
  .btn-lg {
    min-height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .faq-q {
    padding: 16px 16px;
    font-size: 0.95rem;
  }

  .faq-a p {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }

  .price-table th,
  .price-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .price-table {
    min-width: 540px;
  }

  .scroll-x {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-left: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .table-wrap {
    border-radius: var(--radius-sm);
  }

  .map-box,
  .map-box iframe {
    min-height: 280px;
  }

  .contact-item {
    padding: 16px;
  }

  .hours-row {
    padding: 13px 16px;
    font-size: 0.88rem;
  }

  .logo {
    font-size: 1.05rem;
    gap: 9px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
  }

  .sum-row.total span:last-child {
    font-size: 1.6rem;
  }
}

@media (max-width: 380px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .mobile-bar-btn {
    font-size: 0.85rem;
    padding-inline: 12px;
  }
}

/* Hover effects only on pointer devices */
@media (hover: hover) and (pointer: fine) {
  .svc:hover {
    transform: translateY(-5px);
  }

  .svc:hover .svc-img {
    transform: scale(1.07);
  }

  .feat:hover,
  .step:hover,
  .tariff:hover {
    transform: translateY(-4px);
  }

  .tariff:hover {
    transform: translateY(-5px);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
  }

  .socials a:hover {
    transform: translateY(-2px);
  }
}
