:root {
  --bg-deep: #080a09;
  --bg-main: #0e1210;
  --bg-elevated: #151b18;
  --bg-card: #1a221e;
  --bg-card-hover: #1f2924;
  --border: rgba(201, 169, 98, 0.18);
  --border-strong: rgba(201, 169, 98, 0.35);
  --green: #4a8f63;
  --green-soft: #6db386;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #a68b4b;
  --text: #f2f5f3;
  --text-muted: #9aab9f;
  --text-dim: #6d7d72;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 8px 40px rgba(201, 169, 98, 0.12);
  --header-height: 80px;
  --section-pad: 5.5rem;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); margin-bottom: 0.5rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .section-label {
  display: block;
}

.section-title p,
.section-title .regions-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
}

.section-title .regions-intro {
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(201, 169, 98, 0.28);
  color: var(--bg-deep);
}

.btn-primary {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-strong);
}

.btn-primary:hover {
  background: rgba(201, 169, 98, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-lg { padding: 1.05rem 2.25rem; font-size: 0.95rem; }

.btn-phone::before { content: ""; width: 16px; height: 16px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") center/contain no-repeat; }

.page-actions, .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.card-actions { margin-top: 1.25rem; }
.page-actions { justify-content: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(8, 10, 9, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(8, 10, 9, 0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.header-inner .nav-toggle {
  flex-shrink: 0;
  margin-left: auto;
}

.logo:hover { color: var(--text); }

.logo-img {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

.logo--header .logo-img {
  height: 56px;
}

.logo--header .logo-text {
  font-size: 1.45rem;
}

.logo--footer .logo-img {
  height: 52px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.nav-desktop {
  display: none;
  flex: 1;
  min-width: 0;
}

.nav-desktop ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.1rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold-light);
  background: rgba(201, 169, 98, 0.08);
}

.nav-item--dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  transition: transform var(--transition);
}

.nav-item--dropdown:hover .nav-chevron,
.nav-item--dropdown:focus-within .nav-chevron,
.nav-item--dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 15.5rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown__link:hover,
.nav-dropdown__link.active {
  color: var(--gold-light);
  background: rgba(201, 169, 98, 0.1);
}

.nav-dropdown__link--all {
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.nav-mobile-regions__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
}

.nav-mobile-regions__toggle:hover,
.nav-mobile-regions__toggle.active {
  color: var(--gold);
}

.nav-mobile-regions__toggle .nav-chevron {
  border-top-color: currentColor;
}

.nav-mobile-regions.is-open .nav-mobile-regions__toggle .nav-chevron {
  transform: rotate(180deg);
}

.nav-mobile-regions__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
}

.nav-mobile-regions.is-open .nav-mobile-regions__list {
  display: block;
}

.nav-mobile-regions__list a {
  padding: 0.65rem 0 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: none;
}

.header-cta .btn { padding: 0.65rem 1.25rem; font-size: 0.8rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  color: var(--text-muted);
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }

.nav-mobile .btn.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 1.05rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  border-bottom: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  box-shadow: var(--shadow-gold);
}

.nav-mobile .btn.btn-cta:hover,
.nav-mobile .btn.btn-cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: none;
}

.nav-mobile .btn.btn-cta::before {
  flex-shrink: 0;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

main { padding-top: var(--header-height); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg-deep) center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 10, 9, 0.92) 0%, rgba(8, 10, 9, 0.55) 55%, rgba(8, 10, 9, 0.75) 100%),
    linear-gradient(to top, var(--bg-main) 0%, transparent 35%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: rgba(201, 169, 98, 0.06);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 2.25rem;
  color: #fff;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
  max-width: 52rem;
}

.hero-stat {
  position: relative;
  padding: 1.25rem 1.35rem 1.15rem;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.08) 0%, rgba(12, 14, 18, 0.55) 48%, rgba(8, 9, 12, 0.72) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.hero-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.35rem;
  right: 1.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.55), transparent);
  opacity: 0.85;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-stat:first-child .hero-stat-value {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  letter-spacing: -0.01em;
}

.hero-stat--region .hero-stat-value {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  letter-spacing: -0.01em;
}

.hero-stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.45;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat > span:not(.hero-stat-value):not(.hero-stat-label) {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.35rem;
  display: block;
}

@media (max-width: 767px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 1rem 1.15rem;
  }

  .hero-stat::before {
    left: 1.15rem;
    right: 1.15rem;
  }

  .hero-stat-label {
    margin-top: 0;
    text-align: left;
    max-width: none;
  }

  .hero-stat-value {
    font-size: clamp(1.2rem, 5vw, 1.65rem);
  }

  .hero-stat--region .hero-stat-value {
    font-size: clamp(1.1rem, 4.5vw, 1.45rem);
    line-height: 1.25;
  }
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(74, 143, 99, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero--region {
  background-color: var(--bg-deep);
  background-image: image-set(
    url("../images/kontinent-default.webp") type("image/webp"),
    url("../images/kontinent-default.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero--desyk {
  background-position: center 55%;
}

.page-hero--zzr {
  background-position: center center;
}

.page-hero--dobryv {
  background-position: center 40%;
}

.page-hero--region::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(8, 10, 9, 0.88) 0%,
    rgba(14, 18, 16, 0.78) 50%,
    rgba(8, 10, 9, 0.92) 100%
  );
}

.page-hero--404 {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, var(--white), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--text-dim);
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.breadcrumb a { color: var(--gold); }

h2.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Sections */
section { padding: 5.5rem 0; }

section:nth-child(even) { background: var(--bg-elevated); }

#regions { background: var(--bg-deep); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.service-card-img {
  height: 220px;
  background: var(--bg-elevated) center/cover no-repeat;
  background-image: image-set(
    url("../images/kontinent-default.webp") type("image/webp"),
    url("../images/kontinent-default.jpg") type("image/jpeg")
  );
  position: relative;
}

.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card), transparent 50%);
}

.service-card-body { padding: 1.75rem; }

.service-card-body h3 { color: var(--gold-light); }

.service-card-body p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.advantage-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}

.advantage-item:hover { border-color: var(--border-strong); }

.advantage-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 10px;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.advantage-item h3 { color: var(--text); font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; }

.advantage-item p { color: var(--text-muted); font-size: 0.95rem; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.trust-badge {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Regions — merged on homepage */
.regions-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.region-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.region-card.is-highlight {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(201, 169, 98, 0.06) 100%);
}

.region-card h3 {
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.region-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.region-card p {
  color: var(--text-muted);
  margin: 0.75rem 0 1.25rem;
  font-size: 0.95rem;
}

.region-card h3 a {
  color: inherit;
  text-decoration: none;
}

.region-card h3 a:hover {
  color: var(--text);
}

.region-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.region-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 0.5rem;
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.case-card:hover { border-color: var(--border-strong); }

.case-card-img {
  height: 200px;
  background: var(--bg-elevated) center/cover no-repeat;
  background-image: image-set(
    url("../images/kontinent-default.webp") type("image/webp"),
    url("../images/kontinent-default.jpg") type("image/jpeg")
  );
}

.case-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-card-body .btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.case-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.case-card-body h3 { color: var(--text); }

.case-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem; }

/* CTA */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 5rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 { color: var(--text); margin-bottom: 1rem; }

.cta-banner p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.cta-phone-large {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cta-phone-large:hover { color: var(--gold-light); }

/* Content */
.content-block p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.content-block strong { color: var(--text); }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.content-image {
  border-radius: var(--radius-lg);
  min-height: 320px;
  background: var(--bg-card) center/cover no-repeat;
  background-image: image-set(
    url("../images/kontinent-default.webp") type("image/webp"),
    url("../images/kontinent-default.jpg") type("image/jpeg")
  );
  border: 1px solid var(--border);
}

.two-col--reverse .content-image {
  order: -1;
}

.region-seo-alt {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.region-process {
  padding: var(--section-pad) 0;
}

.region-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0 0;
}

.region-photo-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.region-photo-card-img {
  display: block;
  min-height: 200px;
  background: var(--bg-card) center/cover no-repeat;
  background-image: image-set(
    url("../images/kontinent-default.webp") type("image/webp"),
    url("../images/kontinent-default.jpg") type("image/jpeg")
  );
}

.region-photo-card figcaption {
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.region-process-steps {
  margin-top: 1.5rem;
}

.region-crops-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.region-crops-list li {
  padding: 0.85rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.page-hero--region {
  background: var(--bg-card) center/cover no-repeat;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background: var(--gold);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.related-services { background: var(--bg-deep); }

.region-cities-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cities-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin: 1.5rem 0 1rem;
}

.cities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  list-style: none;
}

.cities-list li {
  padding: 0.9rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.95rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.cities-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.65rem;
  vertical-align: middle;
}

.region-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.region-stat {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.region-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.region-stat span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.region-stats-note {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.region-stats-note strong {
  color: var(--gold-light);
}

.related-regions {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.regions-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.region-link-card {
  display: block;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}

.region-link-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--text);
}

.region-link-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.region-hub-intro {
  padding: 2rem 0 0;
}

.region-hub-list {
  padding: var(--section-pad) 0;
}

.region-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.region-hub-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.region-hub-card.is-highlight {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.region-hub-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.region-hub-card h3 a {
  color: var(--gold-light);
  text-decoration: none;
}

.region-hub-card h3 a:hover {
  color: var(--gold);
}

.region-hub-card > p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.region-hub-card__overview {
  margin: 0 0 1rem;
}

.region-hub-card__services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.region-hub-card__services a {
  display: block;
  padding: 0.65rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color var(--transition), color var(--transition);
}

.region-hub-card__services a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.region-services-local {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.region-service-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.region-service-links a {
  display: block;
  padding: 0.85rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
}

.region-service-links a:hover,
.region-service-links a.is-active {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.region-hub-all {
  margin-top: 1.5rem;
  text-align: center;
}

.region-hub-all a {
  color: var(--gold-light);
}

.site-crosslinks {
  padding: var(--section-pad) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-crosslinks__lead {
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0.5rem 0 0;
}

.site-crosslinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.site-crosslinks__grid a {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.site-crosslinks__grid a:hover,
.site-crosslinks__grid a.is-active {
  border-color: var(--gold);
  color: var(--gold-light);
}

.site-crosslinks__home {
  grid-column: 1 / -1;
  font-weight: 600;
  color: var(--gold-light);
}

.region-tip {
  padding: 0.85rem 1rem;
  background: rgba(201, 162, 39, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.region-benefits {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.region-seo-expand,
.region-vs-tractor,
.region-equipment {
  padding: var(--section-pad) 0;
}

.region-vs-tractor {
  background: var(--bg-deep);
}

.region-vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .region-vs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.region-vs-col {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.region-vs-col--alt {
  border-color: rgba(255, 255, 255, 0.06);
}

.region-vs-col h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--gold-light);
}

.region-vs-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(74, 143, 99, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  max-width: 52rem;
}

.region-faq {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}

.region-faq-list {
  max-width: 48rem;
  margin-top: 1rem;
}

.region-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  overflow: hidden;
}

.region-faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.region-faq-item summary::-webkit-details-marker {
  display: none;
}

.region-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

.region-faq-item[open] summary::after {
  content: "−";
}

.region-faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.region-crops-list--deep li {
  margin-bottom: 0.65rem;
}

.region-faq-intro {
  padding: 2rem 0 0;
}

.region-faq-group {
  padding: 2rem 0;
}

.region-faq-group + .region-faq-group {
  padding-top: 0;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: var(--gold-light);
}

.region-back-home a {
  color: var(--gold-light);
  font-weight: 500;
}

.region-link-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  word-break: break-word;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.price-card.is-featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(201, 169, 98, 0.06) 100%);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  border-radius: 100px;
}

.price-card h3 {
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.price-amount {
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}

.price-amount strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--gold);
  font-weight: 700;
}

.price-amount span {
  color: var(--text-muted);
  font-size: 1rem;
  margin-left: 0.25rem;
}

.price-card .feature-list {
  margin-bottom: 1.25rem;
}

.discount-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Contact section */
.contact-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.contact-section .section-title h2 { color: var(--text); }

.contact-section .section-title p { color: var(--text-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-item a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.contact-item a:hover { color: var(--gold); }

.contact-item p { opacity: 0.85; font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }

.contact-phone-link {
  font-family: var(--font-display);
  font-size: 1.75rem !important;
  font-weight: 700;
  color: var(--gold) !important;
}

.contact-page-grid .advantage-item h2 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.social-links a,
.social-links .social-link {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.social-links a:hover,
.social-links .social-link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(0, 0, 0, 0.35);
  filter: brightness(1.08);
}

.social-links svg:not(.social-icon-tiktok) {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link--facebook {
  background: #1877f2;
}

.social-link--instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-link--tiktok {
  background: #000;
  border-color: rgba(255, 255, 255, 0.18);
}

.social-link--tiktok svg.social-icon-tiktok {
  width: 22px;
  height: 22px;
}

.social-link--youtube {
  background: #ff0000;
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-grid ul { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-grid a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-grid a:hover { color: var(--gold-light); }

.footer-grid p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom a { color: var(--text-muted); }

/* Floating actions (call + TikTok) */
.floating-actions {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.floating-call,
.floating-tiktok {
  position: relative;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: #fff;
  border: 1px solid rgba(74, 143, 99, 0.35);
  border-radius: 50%;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}

.floating-call {
  animation: pulse-call 2.5s ease-in-out infinite;
}

.floating-call::before {
  content: "";
  width: 26px;
  height: 26px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

@keyframes pulse-call {
  0%, 100% {
    box-shadow:
      0 4px 18px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(74, 143, 99, 0);
  }
  50% {
    box-shadow:
      0 6px 22px rgba(0, 0, 0, 0.32),
      0 0 0 8px rgba(74, 143, 99, 0.18);
  }
}

.floating-call:hover {
  transform: scale(1.06);
  border-color: var(--green-soft);
}

.floating-call:hover::before {
  background: #3a9d5c;
}

.floating-tiktok {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.floating-tiktok svg.social-icon-tiktok {
  width: 28px;
  height: 28px;
  display: block;
}

.floating-tiktok:hover {
  transform: scale(1.06);
  border-color: rgba(254, 44, 85, 0.55);
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(254, 44, 85, 0.15);
}

/* Responsive */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-list { grid-template-columns: repeat(2, 1fr); }
  .region-stats { grid-template-columns: repeat(3, 1fr); }
  .regions-link-grid { grid-template-columns: repeat(2, 1fr); }
  .region-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .region-service-links { flex-direction: row; flex-wrap: wrap; }
  .region-service-links a { flex: 1 1 calc(50% - 0.5rem); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .discount-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--reverse .content-image { order: 2; }
  .region-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .region-crops-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
  .floating-actions { display: flex; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .header-cta { display: block; flex-shrink: 0; }
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
  .regions-grid { grid-template-columns: repeat(3, 1fr); }
  .regions-link-grid { grid-template-columns: repeat(3, 1fr); }
  .region-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .nav-desktop a {
    padding: 0.45rem 0.6rem;
    font-size: 0.78rem;
  }

  .header-cta .btn {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-text span {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .logo-img { height: 42px; }
}

.header-cta { display: none; }

@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 767px) {
  :root {
    --header-height: 72px;
    --section-pad: 4rem;
  }

  .container { padding: 0 1rem; }

  section { padding: 3.25rem 0; }

  .section-title { margin-bottom: 2rem; }

  .section-title p,
  .section-title .regions-intro {
    font-size: 0.95rem;
    padding: 0 0.15rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .btn-lg {
    padding: 0.95rem 1.35rem;
    font-size: 0.85rem;
  }

  .hero {
    min-height: min(100svh, 920px);
  }

  .hero .container {
    padding: 3rem 1rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7.5vw, 2.1rem);
    line-height: 1.2;
    -webkit-text-fill-color: var(--text);
    background: none;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding: 2.25rem 0 2rem;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 6.5vw, 2.15rem);
    line-height: 1.2;
    -webkit-text-fill-color: var(--text);
    background: none;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .page-hero p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .page-hero .btn {
    width: 100%;
    justify-content: center;
  }

  .breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .two-col { gap: 1.5rem; }

  .content-image { min-height: 200px; }

  .content-block p {
    font-size: 0.95rem;
  }

  .service-card-body { padding: 1.25rem; }

  .service-card-img { height: 180px; }

  .card-actions,
  .page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .card-actions .btn,
  .page-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .region-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .region-card-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .region-card { padding: 1.35rem; }

  .cta-banner {
    padding: 2.75rem 1rem;
  }

  .cta-banner h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .cta-banner p {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .cta-phone-large {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    word-break: break-word;
  }

  .cta-banner .btn-lg {
    width: 100%;
    max-width: none;
  }

  .region-link-card { padding: 1.15rem; }

  .region-link-card h3 {
    font-size: 1.15rem;
    overflow-wrap: break-word;
  }

  .related-regions { padding: 3.25rem 0; }

  .price-card {
    padding: 1.35rem 1.15rem;
  }

  .price-badge {
    position: static;
    display: inline-block;
    margin-bottom: 0.65rem;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .contact-item a {
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-phone-link {
    font-size: 1.35rem !important;
  }

  .case-card-body {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .case-card-body .btn {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    flex: none;
  }

  .trust-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.85rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  main { padding-bottom: 8.5rem; }

  .floating-actions {
    display: flex;
    bottom: 1rem;
    right: 1rem;
    gap: 1.15rem;
  }

  .floating-call,
  .floating-tiktok {
    width: 52px;
    height: 52px;
  }

  .floating-tiktok svg.social-icon-tiktok {
    width: 24px;
    height: 24px;
  }

  .header-cta { display: none; }

  .header-inner {
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 1.05rem;
    line-height: 1.15;
    min-width: 0;
  }

  .logo-text span {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .logo-img { height: 40px; }

  .logo--header .logo-img { height: 44px; }

  .logo--footer .logo-img { height: 44px; }
}

@media (max-width: 380px) {
  .logo--footer .logo-text span { display: none; }

  .logo--footer .logo-text {
    font-size: 0.95rem;
    max-width: 8.5rem;
  }
}

/* ——— Breakpoints: 375 / 425 / 768 / 1024 ——— */

/* ≤425px (iPhone SE, 375–425) */
@media (max-width: 425px) {
  :root { --header-height: 64px; }

  html { font-size: 15px; }

  .container { padding: 0 0.875rem; }

  .logo--header .logo-text {
    display: none;
  }

  .logo--header .logo-img {
    height: 40px;
  }

  .nav-toggle {
    padding: 0.35rem;
  }

  .hero .container {
    padding-top: 2.5rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .advantage-item {
    padding: 1.25rem;
  }

  .region-stat {
    padding: 1.35rem 1rem;
  }

  .region-stat strong {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .section-title { margin-bottom: 1.75rem; }

  .section-title h2 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .regions-intro {
    margin-bottom: 2rem;
    font-size: 0.92rem;
  }

  .trust-row {
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .trust-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.75rem;
    letter-spacing: 0.04em;
  }

  .site-crosslinks__grid {
    grid-template-columns: 1fr;
  }

  .discount-grid {
    grid-template-columns: 1fr;
  }

  .case-card-body {
    padding: 1.25rem;
  }

  .case-card-body .btn {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .case-card-body .btn:first-of-type {
    margin-top: 1rem;
  }

  .case-card-img { height: 160px; }

  .content-block .hero-stats {
    margin-top: 1.25rem;
  }

  .region-service-links a {
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
  }

  .price-card h3 {
    font-size: 1.15rem;
    overflow-wrap: break-word;
  }

  .nav-mobile {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ≤375px */
@media (max-width: 375px) {
  .container { padding: 0 0.75rem; }

  .hero .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-badge {
    max-width: 100%;
    white-space: normal;
  }

  .hero-stat-value {
    font-size: 1.15rem !important;
  }

  .hero-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }

  .cta-phone-large {
    font-size: 1.2rem;
  }

  .floating-actions {
    right: 0.65rem;
    bottom: 0.65rem;
    gap: 0.85rem;
  }

  .floating-call,
  .floating-tiktok {
    width: 48px;
    height: 48px;
  }
}

/* Tablet 768–1023 */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .discount-grid { grid-template-columns: repeat(2, 1fr); }
  .region-hub-grid { grid-template-columns: repeat(2, 1fr); }

  .hero .container {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 100%;
  }

  .hero-stat {
    padding: 1rem 0.75rem 0.9rem;
  }

  .hero-stat::before {
    left: 0.75rem;
    right: 0.75rem;
  }

  .hero-stat-value {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  }

  .hero-stat--region .hero-stat-value {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  }

  .hero-stat-label {
    font-size: 0.68rem;
    margin-top: 0.35rem;
  }

  .two-col {
    gap: 1.75rem;
    align-items: start;
  }

  .content-image {
    min-height: 240px;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  }

  .case-card-body .btn {
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 0;
    width: auto;
    max-width: 100%;
  }

  .case-card-body {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .case-card-body .case-meta,
  .case-card-body h3,
  .case-card-body p {
    flex: 1 1 100%;
  }

  .region-card { padding: 1.5rem; }

  .site-crosslinks__grid {
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop 1024+ (nav already tuned 1024–1180) */
@media (min-width: 1024px) {
  .hero-stats {
    gap: 1.15rem;
  }

  .hero .container {
    padding-top: 5.5rem;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card-body .btn {
    flex: 0 1 auto;
  }
}

@media (min-width: 1181px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
