:root {
  --bg: #07111f;
  --bg-2: #0b1d34;
  --bg-3: #102b4b;
  --panel: #ffffff;
  --panel-soft: #f7fbff;
  --text: #0f172a;
  --text-soft: #55657a;
  --text-inverse: #f8fbff;
  --line: #dce7f1;
  --line-soft: rgba(148, 163, 184, 0.18);
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #f59e0b;
  --accent-dark: #ea580c;
  --success: #15803d;
  --danger: #dc2626;
  --section: #f5f9fd;
  --section-2: #eef4fa;
  --shadow: 0 30px 80px rgba(2, 8, 23, 0.16);
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.16);
}

.header-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #67e8f9);
  color: #082032;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.26);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a,
.lang-link {
  color: #d5e4f3;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.lang-link:hover,
.footer-links a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.header-cta,
.btn,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-cta,
.btn-primary,
.btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111827;
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.22);
}

.header-cta:hover,
.btn-primary:hover,
.btn-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-secondary {
  background: #ffffff;
  color: #111827;
  border-color: #d7e4ef;
}

.btn-secondary:hover {
  background: #f5f9fd;
}

.hero-ghost {
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  border-color: rgba(255,255,255,0.12);
}

.hero-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #07111f 0%, #0a1930 46%, #0f2847 100%);
  color: var(--text-inverse);
  padding: 74px 0 92px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    radial-gradient(circle at 18% 14%, rgba(14, 165, 233, 0.10), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(245, 158, 11, 0.08), transparent 18%);
  opacity: 0.85;
}

.hero::after {
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  gap: 34px;
  align-items: start;
}

.hero-copy {
  padding: 14px 0 8px;
}

.hero-badge,
.lead-kicker,
.section-kicker,
.areas-note-kicker,
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(103, 232, 249, 0.22);
  color: #cffafe;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 0 28px;
  color: #d7e4f3;
  font-size: 19px;
}

.hero-contact-panel {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.hero-phone,
.hero-coverage {
  min-height: 100%;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-phone-label,
.hero-coverage-label {
  display: block;
  margin-bottom: 8px;
  color: #94a9c4;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-phone strong {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #edf7ff;
  font-size: 13px;
  font-weight: 700;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.hero-point {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f8fbff;
  font-weight: 700;
}

.hero-point::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.18);
  color: #ffdf9d;
  font-size: 13px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.trust-card span {
  color: #cfdeed;
  font-size: 14px;
}

.lead-card {
  position: relative;
  background: rgba(255,255,255,0.985);
  color: var(--text);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 30px 76px rgba(2, 8, 23, 0.30);
  border: 1px solid rgba(255,255,255,0.88);
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.lead-card-top {
  margin-bottom: 18px;
}

.lead-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.lead-kicker {
  background: #e0f2fe;
  color: #0369a1;
}

.lead-top-note {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-card h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lead-card-top p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field-span-2,
.submit-row {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d8e3ef;
  border-radius: 16px;
  background: #f8fbff;
  color: #0f172a;
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input::placeholder,
textarea::placeholder { color: #94a3b8; }

input:focus,
textarea:focus,
select:focus {
  background: #ffffff;
  border-color: #8bd8f8;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

textarea {
  resize: vertical;
  min-height: 85px;
}

.field-help {
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

.inline-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.lead-card .btn-secondary,
.lead-card .btn-primary,
.lead-card .btn-submit,
.map-modal .btn-primary { color: #111827; }

.btn-submit {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 18px;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit:disabled,
.btn-submit.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.form-message {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 13px;
}

#message {
  min-height: 88px;
  padding: 12px 14px;
  font-size: 14px;
}

.form-message.success { color: var(--success); }
.form-message.error { color: var(--danger); }

.photos-input-native {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.photo-dropzone {
  width: 100%;
  min-height: 96px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed #b6c7d9;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.photo-dropzone:hover {
  border-color: #8bd8f8;
  background: #ffffff;
}

.photo-dropzone-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 24px;
  font-weight: 700;
  flex: 0 0 auto;
}

.photo-dropzone-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.photo-dropzone-text {
  color: #0f172a;
  font-weight: 800;
}

.photo-dropzone-hint {
  color: #64748b;
  font-size: 12px;
}

.photo-preview-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.photo-preview-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #eff6ff;
  aspect-ratio: 1 / 1;
  border: 1px solid #d9e6f3;
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: #ffffff;
  cursor: pointer;
}

.hp-wrap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-box {
  background: #ffffff;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid #e9f0f7;
  box-shadow: var(--shadow-soft);
}

.stat-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.stat-box span {
  color: #64748b;
  font-size: 14px;
}

.section {
  padding: 98px 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.text-left {
  text-align: left;
  margin-left: 0;
}

.section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 20px;
  align-items: end;
  text-align: left;
}

.section-kicker,
.areas-note-kicker,
.case-tag {
  background: #e0f2fe;
  color: #0369a1;
  margin-bottom: 12px;
}

.section-head h2,
.final-cta-box h2 {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-head p,
.final-cta-box p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, var(--section) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 28px 24px 32px;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e8eff7;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.18);
}

.service-card h3,
.faq-item h3,
.step-card h3,
.case-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.service-card p,
.faq-item p,
.case-text {
  margin: 0;
  color: #64748b;
}

.process-band {
  background:
    radial-gradient(circle at 90% 12%, rgba(14, 165, 233, 0.16), transparent 24%),
    linear-gradient(180deg, #081528 0%, #0d2140 100%);
  color: #ffffff;
}

.section-head-light .section-kicker,
.final-cta-box .section-kicker {
  background: rgba(14,165,233,0.14);
  color: #9be7ff;
}

.section-head-light h2,
.section-head-light p,
.final-cta-box h2,
.final-cta-box p {
  color: #ffffff;
}

.section-head-light p,
.final-cta-box p {
  color: #cfdeed;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 28px 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.step-number {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.14);
  color: #ffd48a;
  font-size: 18px;
  font-weight: 800;
}

.step-card p { color: #cfdeed; margin: 0; }

.cases {
  background: #ffffff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid #e7eef6;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.case-tag {
  background: #fff7ed;
  color: #c2410c;
}

.case-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #334155;
}

.case-card li + li { margin-top: 8px; }

.areas {
  background: linear-gradient(180deg, var(--section) 0%, var(--section-2) 100%);
}

.areas-fullbleed {
  padding-left: 0;
  padding-right: 0;
}

.areas-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 460px;
  border-radius: 0;
}

.areas-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 28px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 56px;
}

.areas-panel {
  background: #ffffff;
  border: 1px solid #e5edf6;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.compact-head { margin-bottom: 28px; }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  padding: 13px 16px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid #d9e6f3;
  color: #0f172a;
  font-weight: 700;
}

.areas-note {
  background: linear-gradient(180deg, #0a1830 0%, #102748 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(2,8,23,0.16);
}

.areas-note h3 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.areas-note p { margin: 0 0 22px; color: #cfdeed; }

.testimonials {
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #e8eff7;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid #d9e6f3;
  background: #f8fbff;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  margin-bottom: 14px;
  color: #f59e0b;
  letter-spacing: 0.14em;
  font-size: 14px;
}

.testimonial-card p {
  margin: 0 0 16px;
  color: #334155;
}

.faq {
  background: linear-gradient(180deg, #ffffff 0%, var(--section) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e8eff7;
  box-shadow: var(--shadow-soft);
}

.final-cta {
  padding-top: 0;
  background: #ffffff;
}

.final-cta-box {
  background:
    radial-gradient(circle at 86% 14%, rgba(245, 158, 11, 0.18), transparent 20%),
    linear-gradient(135deg, #081528 0%, #102748 100%);
  color: #ffffff;
  border-radius: 34px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 26px 50px rgba(2,8,23,0.18);
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid #e5edf6;
  background: #ffffff;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-row strong { font-size: 18px; }
.footer-row p { margin: 8px 0 0; color: #64748b; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #475569;
  font-weight: 700;
}


.hero-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
  opacity: 0.45;
}

.hero-copy,
.lead-card {
  position: relative;
  z-index: 1;
}

.hero-phone:hover,
.hero-coverage:hover,
.trust-card:hover,
.hero-point:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
}

.leaflet-container {
  background: #e8eef6;
}

.map-modal {
  backdrop-filter: blur(6px);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
  color: #ffffff;
}

.thankyou-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 48px 32px;
}

.thankyou-box h1 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.thankyou-box p {
  margin: 0 0 26px;
  color: #cfdeed;
  font-size: 18px;
}

.privacy-page {
  min-height: 100vh;
  background: var(--section);
  padding: 60px 0;
}

.privacy-box {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5edf6;
  border-radius: 28px;
  padding: 38px 30px;
  box-shadow: var(--shadow-soft);
}

.privacy-box h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.08;
}

.privacy-intro {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 17px;
}

.privacy-section + .privacy-section { margin-top: 24px; }
.privacy-section h2 { margin: 0 0 10px; font-size: 24px; }
.privacy-section p { margin: 0; color: #475569; }
.privacy-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 20, 39, 0.72);
  z-index: 9999;
  padding: 16px;
}

.map-modal.open { display: flex; }

.map-modal-dialog {
  width: min(100%, 900px);
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.map-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #e5edf6;
}

.map-modal-header h3 {
  margin: 0;
  font-size: 28px;
}

.map-close-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.map-close-btn:hover { background: #e2e8f0; }

.map-canvas {
  width: 100%;
  height: min(60vh, 520px);
  background: #eef5fb;
}

.map-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 20px;
}

.map-attribution {
  margin: 0;
  color: #475569;
  font-size: 13px;
}

.leaflet-container img,
.leaflet-pane img,
.leaflet-tile {
  max-width: none !important;
}

@media (max-width: 1180px) {
  .hero h1 { font-size: 56px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 400px; }
  .hero-contact-panel { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero { padding: 56px 0 76px; }

  .header-row {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 12px;
  }

  .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .main-nav a {
    white-space: nowrap;
    font-size: 13px;
  }

  .hero-layout,
  .areas-shell,
  .section-head-split,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .hero-layout { gap: 24px; }
  .hero h1 { font-size: 48px; }

  .hero-trust-grid,
  .service-grid,
  .testimonial-grid,
  .stats-grid,
  .faq-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
.container {
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-row {
  position: relative;
  min-height: 58px;
  gap: 8px;
  padding: 10px 0 6px;
  align-items: center;
  flex-wrap: nowrap;
}

.logo {
  font-size: 16px;
  gap: 8px;
  max-width: 170px;
}

.brand-logo {
  width: 126px;
  height: auto;
  display: block;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.main-nav {
  display: none;
}

.header-actions {
  position: absolute;
  top: 4px;
  right: 0;
  margin-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.lang-link {
  min-width: 34px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  padding: 0 6px;
}

.header-actions {
  position: absolute;
  top: 8px;
  right: 16px;
  width: auto;
  margin-left: 0;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.header-cta {
  min-height: 34px;
  padding: 0 10px;
  font-size: 11px;
}

  .hero { padding: 24px 0 68px; }
  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 17px; }

  .hero-points,
  .hero-trust-grid,
  .service-grid,
  .steps-grid,
  .stats-grid,
  .testimonial-grid,
  .faq-grid,
  .case-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field,
  .field-span-2,
  .submit-row { grid-column: auto; }

  .inline-actions { grid-template-columns: 1fr; }
  .hero-phone strong { font-size: 22px; }

  .lead-card { padding: 20px; border-radius: 24px; }
  .lead-card::before { border-radius: 24px 24px 0 0; }
  .lead-card h2 { font-size: 28px; }
  .photo-preview-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section { padding: 72px 0; }
  .section-head,
  .section-head-split { margin-bottom: 34px; }
  .section-head h2,
  .final-cta-box h2 { font-size: 34px; }

  .service-card,
  .step-card,
  .case-card,
  .faq-item,
  .testimonial-card,
  .areas-panel { padding: 22px; }

  .areas-note { padding: 24px; }
  .areas-note h3 { font-size: 28px; }
  .final-cta-box { padding: 28px; }

  .footer-row,
  .map-modal-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-modal-header h3 { font-size: 22px; }
}


/* ===== design v4 top cleanup + logo slot ===== */
.site-header {
  background: #06101d;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.header-row {
  min-height: 76px;
}

.logo {
  gap: 14px;
}

.logo-media {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.18), rgba(245, 158, 11, 0.14));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  background: rgba(255,255,255,0.98);
}

.logo-mark {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #eff6ff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(145deg, #0b2d4d, #0a3b62);
}

.logo-media.is-fallback .logo-mark {
  display: inline-flex;
}

.logo-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
}

.logo-title {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  color: #95aac1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  background: linear-gradient(135deg, #06101d 0%, #0a1c33 46%, #0b2f4f 100%);
  padding: 66px 0 88px;
  isolation: isolate;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 72% 14%, rgba(14, 165, 233, 0.06), transparent 20%),
    radial-gradient(circle at 24% 76%, rgba(245, 158, 11, 0.04), transparent 18%);
  opacity: 0.5;
}

.hero::after {
  display: none;
}

.hero-layout {
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  max-width: 760px;
}

.hero-badge {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(103, 232, 249, 0.16);
  color: #d9f7ff;
}

.hero h1 {
  max-width: 680px;
}

.hero-subtitle {
  max-width: 640px;
  color: #dbe8f4;
}

.hero-contact-panel {
  max-width: 680px;
  grid-template-columns: 240px minmax(0, 1fr);
}

.hero-phone,
.hero-coverage,
.hero-point,
.trust-card {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.hero-buttons {
  margin-bottom: 30px;
}

.lead-card {
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.22);
  border: 1px solid rgba(255,255,255,0.9);
}

.lead-card::before {
  height: 6px;
  background: linear-gradient(90deg, #19a9ea, #f6a313);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .header-row {
    min-height: 72px;
  }

  .hero {
    padding: 42px 0 72px;
  }

  .hero-layout {
    gap: 22px;
  }

  .hero-contact-panel {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .logo-media {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    display: none;
  }

  .hero {
    padding: 34px 0 60px;
  }

  .hero-badge {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 17px;
    margin-bottom: 22px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-buttons .btn,
  .header-cta,
  .btn-submit {
    min-height: 52px;
  }
}


/* ===== design v5 logo + mobile polish ===== */
:root {
  --header-height: 78px;
}

.site-header {
  background: rgba(6, 16, 29, 0.92);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: var(--header-height);
}

.logo {
  min-width: 0;
}

.logo-media {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.logo-image {
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.logo-copy {
  gap: 3px;
}

.logo-title {
  letter-spacing: 0.01em;
}

.hero {
  padding-top: 60px;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0) 26%),
    radial-gradient(circle at 78% 8%, rgba(14, 165, 233, 0.045), transparent 18%),
    radial-gradient(circle at 18% 82%, rgba(245, 158, 11, 0.035), transparent 16%);
  opacity: 0.42;
}

.hero-layout::before {
  display: none;
}

.hero-copy {
  padding-top: 6px;
}

.hero-badge {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-contact-panel {
  max-width: 700px;
  gap: 14px;
}

.hero-phone,
.hero-coverage {
  padding: 16px 18px;
}

.hero-phone strong {
  font-size: 28px;
}

.hero-city-list span {
  min-height: 32px;
  padding: 0 11px;
}

.hero-point {
  min-height: 72px;
}

.lead-card {
  align-self: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, #ffffff 100%);
}

.lead-card-top p {
  max-width: 34ch;
}

.form-grid {
  gap: 14px;
}

.photo-dropzone {
  min-height: 92px;
}

.stats-strip {
  margin-top: -22px;
}

.stat-box {
  border-radius: 22px;
}

@media (max-width: 980px) {
  .header-actions {
    gap: 10px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-layout {
    gap: 20px;
  }

  .lead-card {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .stats-strip {
    margin-top: 0;
    padding-top: 22px;
    background: linear-gradient(180deg, #0f2847 0%, #ffffff 100%);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    background: rgba(6, 16, 29, 0.96);
  }

  .header-row {
    align-items: center;
  }

  .logo {
    gap: 10px;
    max-width: calc(100% - 116px);
  }

  .logo-media {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .logo-title {
    font-size: 17px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .hero {
    padding: 24px 0 48px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 36px;
    max-width: 12ch;
  }

  .hero-subtitle {
    max-width: none;
    font-size: 16px;
  }

  .hero-contact-panel {
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-phone strong {
    font-size: 24px;
  }

  .hero-points {
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-point {
    min-height: auto;
    padding: 14px 14px 14px 42px;
    border-radius: 18px;
    font-size: 15px;
  }

  .hero-point::before {
    left: 14px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-trust-grid {
    gap: 10px;
  }

  .trust-card {
    padding: 16px;
    border-radius: 18px;
  }

  .trust-card strong {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .lead-card {
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(2, 8, 23, 0.18);
  }

  .lead-card::before {
    border-radius: 22px 22px 0 0;
    height: 5px;
  }

  .lead-top-row {
    margin-bottom: 10px;
  }

  .lead-top-note {
    font-size: 11px;
  }

  .lead-card h2 {
    font-size: 26px;
  }

  .form-grid {
    gap: 12px;
  }

  input,
  textarea,
  select {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .inline-actions {
    gap: 8px;
  }

  .lead-card .btn-secondary,
  .lead-card .btn-primary,
  .btn-submit {
    min-height: 52px;
    border-radius: 16px;
  }

  .photo-dropzone {
    min-height: 84px;
    padding: 14px;
    border-radius: 16px;
  }

  .photo-dropzone-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .stats-strip {
    padding-top: 16px;
  }

  .stat-box {
    padding: 18px 16px;
  }

  .section {
    padding: 64px 0;
  }
}



/* ===== design v6 full screens + logo fix + top cleanup ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
}

.brand-logo {
  display: block;
  width: 220px;
  max-width: min(220px, 48vw);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 20px rgba(2, 8, 23, 0.14));
}

.logo-fallback {
  display: none;
  align-items: center;
  gap: 12px;
}

.logo-fallback-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #67e8f9);
  color: #082032;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.24);
  flex: 0 0 auto;
}

.logo-fallback-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.site-header {
  background: rgba(6, 16, 29, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.site-header::after {
  display: none;
}

.site-header.site-header-static {
  position: static;
}

.hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0) 22%),
    linear-gradient(135deg, #06101d 0%, #0a1c33 46%, #0b2f4f 100%);
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.014), rgba(255,255,255,0) 26%);
  opacity: 0.18;
}

.hero::after,
.hero-layout::before {
  display: none !important;
}

.hero-layout {
  gap: 36px;
}

.lead-card {
  overflow: hidden;
  box-shadow: 0 26px 58px rgba(2, 8, 23, 0.18);
}

.lead-card::before {
  height: 4px;
  background: linear-gradient(90deg, rgba(25,169,234,0.95), rgba(246,163,19,0.95));
}

.lead-top-row {
  align-items: start;
}

.secondary-screen {
  background: linear-gradient(180deg, #eef4fa 0%, #ffffff 100%);
}

.secondary-page-card {
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.secondary-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.thankyou-page {
  min-height: calc(100vh - var(--header-height, 78px));
  padding: 48px 0 72px;
}

.thankyou-box {
  background: #ffffff;
  color: var(--text);
  border: 1px solid #e5edf6;
  box-shadow: var(--shadow-soft);
}

.thankyou-box .hero-badge {
  color: #0369a1;
  background: #e0f2fe;
  border: none;
}

.thankyou-box p {
  color: #64748b;
}

.privacy-page {
  padding: 48px 0 72px;
}

.privacy-box .hero-badge {
  color: #0369a1;
  background: #e0f2fe;
  border: none;
}

@media (max-width: 980px) {
  .brand-logo {
    max-width: min(210px, 52vw);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-layout {
    gap: 24px;
  }

  .lead-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    background: #06101d;
  }

  .header-row {
    min-height: 70px;
    gap: 10px;
  }

  .logo {
    max-width: calc(100% - 108px);
  }

  .brand-logo {
    width: 184px;
    max-width: 100%;
  }

  .logo-title {
    font-size: 16px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
  }

  .hero {
    padding: 26px 0 58px;
  }

  .hero h1 {
    font-size: 38px;
    max-width: 11ch;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .lead-card {
    padding: 18px;
    border-radius: 24px;
  }

  .lead-card h2 {
    font-size: 28px;
  }

  .lead-kicker {
    max-width: calc(100% - 88px);
    font-size: 11px;
    line-height: 1.35;
  }

  .lead-top-note {
    max-width: 80px;
    text-align: right;
    line-height: 1.35;
  }

  .thankyou-page,
  .privacy-page {
    padding: 30px 0 52px;
  }

  .thankyou-box,
  .privacy-box {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .thankyou-box h1,
  .privacy-box h1 {
    font-size: 32px;
  }

  .secondary-page-actions {
    flex-direction: column;
  }

  .secondary-page-actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: inline-flex;
  }

  .logo {
    max-width: 100%;
  }

  .brand-logo {
    width: 168px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .lead-card {
    border-radius: 22px;
  }

  .lead-card::before {
    border-radius: 22px 22px 0 0;
  }

  .lead-top-row {
    gap: 8px;
  }

  .lead-kicker {
    padding: 7px 11px;
  }
}


/* ===== design v8 logo path + remove lead top line ===== */
.brand-logo {
  width: 220px;
  max-width: min(220px, 48vw);
  height: auto;
  object-fit: contain;
}

.lead-card::before {
  display: none !important;
}

@media (max-width: 720px) {
  .brand-logo {
    width: 176px;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 160px;
  }
}

/* === HOTFIX: landing form compact + adaptive === */

.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 408px);
  gap: 26px;
  align-items: start;
}

.lead-card {
  width: 100%;
  max-width: 408px;
  padding: 20px;
}

.lead-card-top {
  margin-bottom: 14px;
}

.lead-top-row {
  align-items: flex-start;
  gap: 10px;
}

.lead-card h2 {
  margin: 0 0 6px;
  font-size: clamp(30px, 2.2vw, 36px);
  line-height: 1.04;
}

.lead-card-top p {
  margin: 0;
  max-width: none;
  font-size: 13px;
  line-height: 1.45;
}

form {
  margin-top: 14px;
}

.form-grid {
  gap: 10px;
}

label {
  margin-bottom: 6px;
}

input,
textarea,
select {
  padding: 13px 14px;
}

textarea {
  min-height: 104px;
}

.field-help {
  margin-top: 5px;
  font-size: 11px;
}

.inline-actions {
  margin-top: 10px;
  gap: 8px;
}

.lead-card .btn-secondary,
.lead-card .btn-primary,
.btn-submit {
  min-height: 50px;
}

.photo-dropzone {
  min-height: 78px;
  padding: 14px;
  gap: 12px;
}

.photo-dropzone-icon {
  width: 38px;
  height: 38px;
  font-size: 22px;
}

.photo-dropzone-hint {
  font-size: 11px;
}

.submit-row {
  gap: 8px;
}

.form-message {
  min-height: 18px;
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  }

  .lead-card {
    max-width: 380px;
  }
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .lead-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .field-span-2,
  .submit-row {
    grid-column: auto;
  }

  .lead-card {
    max-width: none;
    padding: 18px;
    border-radius: 22px;
  }

  .lead-card::before {
    border-radius: 22px 22px 0 0;
  }

  .lead-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lead-kicker,
  .lead-top-note {
    max-width: 100%;
    text-align: left;
  }

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

/* ===== hybrid hero + asset visuals ===== */
.hero {
  isolation: isolate;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,16,29,0.96) 0%, rgba(6,16,29,0.86) 38%, rgba(6,16,29,0.58) 62%, rgba(6,16,29,0.80) 100%);
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
}

.hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.7fr) minmax(340px, 408px);
  gap: 18px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-visual {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 100%;
  pointer-events: none;
}

.hero-visual-inner {
  width: 100%;
  max-width: 420px;
}

.hero-person-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(2, 8, 23, 0.34));
}

.service-card.has-image {
  overflow: hidden;
  padding: 0;
}

.service-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
}

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

.service-card-body {
  padding: 28px 24px 32px;
}

.areas-side {
  display: grid;
  gap: 18px;
}

.areas-visual {
  background: #ffffff;
  border: 1px solid #e5edf6;
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.areas-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.56fr) minmax(320px, 380px);
  }

  .hero-visual-inner {
    max-width: 320px;
  }
}

@media (max-width: 980px) {
  .hero-scene::after {
    background: linear-gradient(180deg, rgba(6,16,29,0.90) 0%, rgba(6,16,29,0.82) 55%, rgba(6,16,29,0.76) 100%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual-desktop-only {
    display: none;
  }

  .areas-shell {
    grid-template-columns: 1fr;
  }
}



.hero {
  isolation: isolate;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,16,29,.94) 0%, rgba(6,16,29,.84) 34%, rgba(6,16,29,.58) 58%, rgba(6,16,29,.82) 100%),
    linear-gradient(180deg, rgba(6,16,29,.10) 0%, rgba(6,16,29,.28) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 408px);
  gap: 24px;
  align-items: start;
}

.hero-copy,
.lead-card {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.hero-contact-panel {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 700px;
}

.hero-points {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hero-trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 720px;
}

.hero-point,
.trust-card,
.hero-phone,
.hero-coverage {
  backdrop-filter: blur(4px);
}

.areas-shell.has-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(238,244,250,0.88) 0%,
      rgba(238,244,250,0.72) 28%,
      rgba(238,244,250,0.42) 56%,
      rgba(238,244,250,0.18) 100%
    );
}

.areas-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 560px;
  background: linear-gradient(180deg, var(--section) 0%, var(--section-2) 100%);
}

.areas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.areas-bg-image,
.areas-live-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.areas-bg-image {
  object-fit: cover;
  object-position: center center;
}

.areas-live-map {
  display: block;
}

.areas-panel,
.areas-side {
  position: relative;
  z-index: 2;
}

.areas-side {
  align-self: stretch;
  justify-content: center;
}

.areas-note {
  background: linear-gradient(180deg, rgba(10,24,48,.94) 0%, rgba(16,39,72,.92) 100%);
  backdrop-filter: blur(5px);
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  }
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .lead-card {
    max-width: 760px;
  }

  .hero-scene::after {
    background:
      linear-gradient(180deg, rgba(6,16,29,.86) 0%, rgba(6,16,29,.78) 45%, rgba(6,16,29,.88) 100%);
  }

  .areas-shell.has-map {
    min-height: 0;
  }

  .areas-shell.has-map::after {
     background:
      linear-gradient(
        180deg,
        rgba(238,244,250,0.78) 0%,
        rgba(238,244,250,0.58) 52%,
        rgba(238,244,250,0.34) 100%
      );
  }

  .areas-bg img {
    object-position: center;
    opacity: .46;
  }
}

@media (max-width: 720px) {
  .hero-contact-panel,
  .hero-points,
  .hero-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 2026-03-27 hero wide screen + person layer + areas bg final ===== */

.hero {
  isolation: isolate;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(540px, 760px) minmax(360px, 420px);
  justify-content: space-between;
  gap: 72px;
  align-items: start;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: none;
  padding: 14px 0 8px;
}

.lead-card {
  position: relative;
  z-index: 4;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(6,16,29,0.92) 0%,
      rgba(6,16,29,0.82) 24%,
      rgba(6,16,29,0.46) 46%,
      rgba(6,16,29,0.52) 64%,
      rgba(6,16,29,0.78) 100%),
    linear-gradient(180deg,
      rgba(6,16,29,0.18) 0%,
      rgba(6,16,29,0.28) 100%);
}

.hero-person-layer {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-18%);
  z-index: 2;
  width: min(36vw, 560px);
  pointer-events: none;
}

.hero-person-desktop-only {
  display: block;
}

.hero-person-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(2, 8, 23, 0.34));
}

.hero-contact-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  max-width: none;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  max-width: none;
}

.hero-phone,
.hero-coverage,
.hero-point,
.trust-card {
  backdrop-filter: blur(4px);
}

.hero-layout::before {
  display: none;
}

/* ===== areas final: full background visible ===== */
.areas {
  background: #eef4fa;
}

.areas-fullbleed {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.areas-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  border-radius: 0;
}

.areas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.areas-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.95;
  filter: saturate(1.05) contrast(1.04) brightness(1.02);
  transform: scale(1.02);
}

.areas-shell.has-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(238,244,250,0.72) 0%,
      rgba(238,244,250,0.44) 28%,
      rgba(238,244,250,0.18) 56%,
      rgba(238,244,250,0.06) 100%
    );
}

.areas-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 72px;
  padding-bottom: 72px;
}

.areas-panel {
  position: relative;
  z-index: 2;
  max-width: 760px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229,237,246,0.92);
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.areas-side {
  position: absolute;
  right: max(24px, calc((100vw - 1360px) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, 30vw);
  z-index: 2;
}

.areas-note {
  background: rgba(10,24,48,0.94);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(2,8,23,0.18);
}

.areas-note h3 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.areas-note p {
  margin: 0 0 22px;
  color: #cfdeed;
}

@media (max-width: 1180px) {
  .areas-shell,
  .areas-inner {
    min-height: 820px;
  }

  .areas-panel {
    max-width: 700px;
  }

  .areas-side {
    right: 20px;
    width: 320px;
  }
}

@media (max-width: 980px) {
  .areas-shell {
    width: 100%;
    margin-left: 0;
    min-height: auto;
  }

  .areas-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .areas-side {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
  }

  .areas-bg img {
    opacity: 0.55;
  }

  .areas-shell.has-map::after {
    background:
      linear-gradient(
        180deg,
        rgba(238,244,250,0.74) 0%,
        rgba(238,244,250,0.54) 52%,
        rgba(238,244,250,0.30) 100%
      );
  }
}

@media (max-width: 720px) {
  .areas-panel,
  .areas-note {
    padding: 20px;
    border-radius: 22px;
  }

  .areas-inner {
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .compact-head h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .compact-head p {
    font-size: 15px;
  }

  .areas-note h3 {
    font-size: 26px;
  }

  .areas-note .btn,
  .areas-note .btn-primary {
    width: 100%;
    min-height: 52px;
  }
}

/* big screens */
@media (min-width: 1500px) {
  .hero-layout {
    grid-template-columns: minmax(620px, 800px) minmax(370px, 420px);
    gap: 88px;
    max-width: 1440px;
  }

  .hero-person-layer {
    width: min(34vw, 620px);
    transform: translateX(-16%);
  }
}

/* medium desktop */
@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
    gap: 36px;
    max-width: 1180px;
  }

  .hero-person-layer {
    width: min(34vw, 430px);
    transform: translateX(-12%);
  }
}

/* tablet */
@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: var(--container);
  }

  .hero-person-desktop-only {
    display: none;
  }

  .hero-scene::after {
    background:
      linear-gradient(180deg,
        rgba(6,16,29,0.90) 0%,
        rgba(6,16,29,0.84) 48%,
        rgba(6,16,29,0.78) 100%);
  }

  .areas-shell {
    grid-template-columns: 1fr;
  }

  .areas-shell.has-map::after {
    background:
      linear-gradient(180deg,
        rgba(238,244,250,0.92) 0%,
        rgba(238,244,250,0.86) 100%);
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-credit {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}

.footer-credit a {
  color: #0f172a;
  font-weight: 800;
}

.footer-credit a:hover {
  color: #0ea5e9;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 220px;
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.social-links-center {
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #dbe5ef;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: #c7d7e7;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.social-icon,
svg.social-icon {
  width: 22px !important;
  height: 22px !important;
  display: block;
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

@media (max-width: 720px) {
  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    align-items: center;
    min-width: 0;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    width: 100%;
  }
}

.social-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.social-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.thankyou-social {
  margin-top: 22px;
  text-align: center;
}

.thankyou-social p {
  margin: 0 0 12px;
  color: #cfdeed;
}

@media (max-width: 980px) {
  .areas-fullbleed {
    overflow: hidden;
  }

  .areas-shell,
  .areas-shell.has-map {
    min-height: auto !important;
  }

  .areas-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    min-height: 0 !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .areas-panel {
    position: relative !important;
    z-index: 2 !important;
    max-width: none !important;
    width: 100% !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .areas-side {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    z-index: 2 !important;
  }

  .areas-note {
    width: 100% !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .areas-note h3 {
    font-size: 30px !important;
    line-height: 1.05 !important;
  }

  .areas-note p {
    font-size: 16px !important;
  }

  .areas-bg img {
    object-position: center center !important;
    opacity: 0.22 !important;
  }

  .areas-shell.has-map::after {
    background:
      linear-gradient(
        180deg,
        rgba(238,244,250,0.88) 0%,
        rgba(238,244,250,0.76) 50%,
        rgba(238,244,250,0.64) 100%
      ) !important;
  }
}

@media (max-width: 720px) {
  .areas-inner {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    gap: 14px !important;
  }

  .areas-panel,
  .areas-note {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .compact-head {
    margin-bottom: 20px !important;
  }

  .compact-head h2 {
    font-size: 28px !important;
    line-height: 1.06 !important;
  }

  .compact-head p {
    font-size: 15px !important;
  }

  .area-list {
    gap: 10px !important;
  }

  .area-list span {
    padding: 11px 14px !important;
    font-size: 14px !important;
  }

  .areas-note h3 {
    font-size: 26px !important;
  }

  .areas-note .btn,
  .areas-note .btn-primary {
    width: 100% !important;
    min-height: 52px !important;
  }
}

/* ===== thank-you page polish ===== */
.thankyou-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 36px;
}

.thankyou-box h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.thankyou-box > p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: #64748b;
}

.thankyou-redirect-note {
  margin: 16px 0 0;
  font-size: 14px;
  color: #94a3b8;
}

.thankyou-social {
  margin-top: 28px;
  text-align: center;
}

.thankyou-social-title {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
}

.thankyou-social-subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: #64748b;
}

.thankyou-social .social-links {
  justify-content: center;
  gap: 14px;
}

.thankyou-social .social-link {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #dbe5ef;
}

@media (max-width: 720px) {
  .thankyou-box {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .thankyou-social-title {
    font-size: 22px;
  }

  .thankyou-box > p {
    font-size: 17px;
  }
}

/* ===== testimonials slider ===== */
.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #d9e6f3;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.testimonial-nav-btn:hover {
  background: #f8fbff;
  border-color: #b9d7ee;
  transform: translateY(-1px);
}

.testimonial-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.testimonial-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  scroll-snap-align: start;
  min-width: 0;
}

@media (max-width: 980px) {
  .testimonial-slider {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}

@media (max-width: 720px) {
  .testimonial-slider-toolbar {
    justify-content: center;
  }

  .testimonial-slider {
    grid-auto-columns: 100%;
  }
}

/* ===== testimonials standard + slider ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.testimonial-card {
  width: 100%;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-card strong {
  margin-top: auto;
}

.testimonial-slider-wrap {
  width: 100%;
  position: relative;
}

.testimonial-slider-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #d9e6f3;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.testimonial-nav-btn:hover {
  background: #f8fbff;
  border-color: #b9d7ee;
  transform: translateY(-1px);
}

.testimonial-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.testimonial-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding-bottom: 4px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  scroll-snap-align: start;
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-slider {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}

@media (max-width: 720px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slider-toolbar {
    justify-content: center;
  }

  .testimonial-slider {
    grid-auto-columns: 100%;
  }
}
/* ===== finishing pass: small mobile and form polish ===== */
.form-grid-modern {
  align-items: start;
}

.form-grid-modern .field,
.address-field,
.reg-field {
  min-width: 0;
}

.address-field .inline-actions {
  margin-top: 14px;
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .submit-row .btn-submit {
    width: 100%;
  }

  .hero-contact-panel {
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    max-width: 180px;
    height: auto;
  }

  .lead-card {
    margin-top: 4px;
  }
}

@media (max-width: 420px) {
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switch,
  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    max-width: 160px;
  }
}

.promo-strip {
  padding: 22px 0 0;
  background: #ffffff;
}

.promo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #081528 0%, #102748 100%);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.promo-copy h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.08;
}

.promo-copy p {
  margin: 0;
  color: #cfdeed;
}

@media (max-width: 860px) {
  .promo-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonial-slider-toolbar.is-hidden {
  display: none !important;
}

.testimonial-admin-item {
  width: 100%;
}

/* ===== consent banner + tracking manage ===== */
html.consent-modal-open,
html.consent-modal-open body {
  overflow: hidden;
}

.consent-root {
  position: relative;
  z-index: 9999;
}

.consent-manage-btn {
  position: fixed;
  left: 14px;
  bottom: 14px;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(8, 19, 34, 0.96), rgba(11, 32, 58, 0.96));
  color: #f8fbff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(2, 8, 23, 0.24);
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.consent-manage-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.28);
}

.consent-manage-btn:active {
  transform: translateY(0);
}

.consent-manage-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(14,165,233,0.18),
    0 18px 40px rgba(2, 8, 23, 0.28);
}

.consent-manage-btn:hover {
  transform: translateY(-1px);
}

.consent-bar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(7,17,31,0.96), rgba(10,25,48,0.96));
  color: #f8fbff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(2, 8, 23, 0.30);
  backdrop-filter: blur(14px);
}

.consent-bar-copy h3,
.consent-panel-head h3 {
  margin: 10px 0 10px;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.consent-bar-copy p,
.consent-panel-text {
  margin: 0;
  color: #cfdeed;
  font-size: 15px;
  line-height: 1.6;
}

.consent-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(103,232,249,0.2);
  color: #cffafe;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consent-link {
  color: #9be7ff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-bar-actions,
.consent-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.consent-btn {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.consent-btn:hover {
  transform: translateY(-1px);
}

.consent-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111827;
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.22);
}

.consent-btn-secondary {
  background: #ffffff;
  color: #111827;
  border-color: #d7e4ef;
}

.consent-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  border-color: rgba(255,255,255,0.12);
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(6px);
}

.consent-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 760px);
  margin: 6vh auto 0;
  padding: 26px;
  border-radius: 30px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e5edf6;
  box-shadow: 0 30px 80px rgba(2, 8, 23, 0.28);
}

.consent-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.consent-close-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.consent-close-btn:hover {
  background: #e2e8f0;
}

.consent-panel-body {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid #d9e6f3;
}

.consent-option-locked {
  background: #f3f6fa;
}

.consent-option-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.15;
}

.consent-option-copy span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.consent-switch {
  position: relative;
  width: 56px;
  height: 32px;
  display: inline-block;
  flex: 0 0 auto;
}

.consent-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.consent-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.18s ease;
}

.consent-slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.16);
  transition: transform 0.18s ease;
}

.consent-switch input:checked + .consent-slider {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.consent-switch input:checked + .consent-slider::before {
  transform: translateX(24px);
}

.consent-switch input:disabled + .consent-slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent-panel-actions {
  margin-top: 20px;
}

@media (max-width: 860px) {
  .consent-bar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .consent-bar-copy h3,
  .consent-panel-head h3 {
    font-size: 22px;
  }

  .consent-bar-actions,
  .consent-panel-actions {
    justify-content: stretch;
  }

  .consent-bar-actions .consent-btn,
  .consent-panel-actions .consent-btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .consent-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .consent-manage-btn {
    left: 12px;
    right: auto;
    bottom: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    padding: 0 16px;
    min-height: 46px;
    font-size: 12px;
    justify-content: center;
  }

  .consent-panel {
    width: min(100% - 20px, 760px);
    margin-top: 20px;
    padding: 20px;
    border-radius: 24px;
  }

  .consent-option {
    align-items: flex-start;
  }
}

  .consent-panel {
    width: min(100% - 20px, 760px);
    margin-top: 20px;
    padding: 20px;
    border-radius: 24px;
  }

  .consent-option {
    align-items: flex-start;
  }

.areas-shell {
  min-height: 720px !important;
}

.areas-bg {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 0 !important;
  pointer-events: none !important;
  padding: 40px 20px !important;
}

.areas-bg img {
  width: min(1180px, 88vw) !important;
  max-width: 1180px !important;
  height: auto !important;
  max-height: 78vh !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 0.92 !important;
  filter: saturate(1.02) contrast(1.02) brightness(1.01) !important;
  transform: none !important;
}

.areas-shell.has-map::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background:
    linear-gradient(
      90deg,
      rgba(238,244,250,0.80) 0%,
      rgba(238,244,250,0.52) 20%,
      rgba(238,244,250,0.14) 50%,
      rgba(238,244,250,0.46) 80%,
      rgba(238,244,250,0.80) 100%
    ) !important;
}

.areas-inner {
  position: relative !important;
  z-index: 1 !important;
  min-height: 720px !important;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.areas-panel {
  max-width: 760px !important;
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(8px) !important;
}

.areas-side {
  position: absolute !important;
  right: max(20px, calc((100vw - 1180px) / 2)) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: min(360px, 30vw) !important;
  z-index: 2 !important;
}

@media (max-width: 980px) {
  .areas-shell {
    min-height: auto !important;
  }

  .areas-inner {
    min-height: auto !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .areas-bg {
    padding: 20px 16px !important;
  }

  .areas-bg img {
    width: min(92vw, 760px) !important;
    max-height: none !important;
    opacity: 0.28 !important;
  }

  .areas-side {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .areas-shell.has-map::after {
    background:
      linear-gradient(
        180deg,
        rgba(238,244,250,0.84) 0%,
        rgba(238,244,250,0.72) 100%
      ) !important;
  }
}

@media (max-width: 720px) {
  .areas-panel,
  .areas-note {
    border-radius: 22px !important;
  }

  .areas-bg img {
    width: min(94vw, 640px) !important;
  }
}

/* ===== areas map: static fallback + live map ===== */

.areas {
  background: linear-gradient(180deg, var(--section) 0%, var(--section-2) 100%);
}

.areas-fullbleed {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.areas-shell {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  width: 100% !important;
  min-height: 620px !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, var(--section) 0%, var(--section-2) 100%) !important;
}

.areas-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: linear-gradient(180deg, var(--section) 0%, var(--section-2) 100%) !important;
}

.areas-bg-image,
.areas-live-map {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.areas-bg-image {
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 0.95 !important;
  filter: saturate(1.02) contrast(1.03) brightness(1.01) !important;
  transition: opacity 0.25s ease !important;
}

.areas-live-map {
  z-index: 1 !important;
  background: transparent !important;
}

.areas-shell.has-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(238,244,250,0.82) 0%,
      rgba(238,244,250,0.58) 24%,
      rgba(238,244,250,0.14) 52%,
      rgba(238,244,250,0.32) 76%,
      rgba(238,244,250,0.72) 100%
    );
  pointer-events: none;
}

.areas-shell.is-live-map .areas-bg-image {
  opacity: 0 !important;
}

.areas-shell.is-live-map::after {
  background:
    linear-gradient(
      90deg,
      rgba(238,244,250,0.76) 0%,
      rgba(238,244,250,0.48) 24%,
      rgba(238,244,250,0.08) 52%,
      rgba(238,244,250,0.24) 76%,
      rgba(238,244,250,0.66) 100%
    );
}

.areas-inner {
  position: relative !important;
  z-index: 2 !important;
  min-height: 620px !important;
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.areas-panel {
  position: relative !important;
  z-index: 3 !important;
  max-width: 820px !important;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(229,237,246,0.96) !important;
  border-radius: 30px !important;
  padding: 36px !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08) !important;
}

.areas-side {
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: min(360px, 31vw) !important;
  z-index: 3 !important;
}

.areas-note {
  background: rgba(10,24,48,0.94) !important;
  backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  padding: 30px !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 50px rgba(2,8,23,0.18) !important;
}

.areas-live-map .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14) !important;
}

.areas-live-map .leaflet-control-zoom a {
  width: 38px !important;
  height: 38px !important;
  line-height: 38px !important;
  font-size: 18px !important;
  color: #0f172a !important;
}

.areas-live-map .leaflet-control-attribution {
  background: rgba(255,255,255,0.86) !important;
  border-radius: 10px 0 0 0 !important;
  padding: 4px 8px !important;
  font-size: 11px !important;
}

@media (max-width: 1180px) {
  .areas-panel {
    max-width: 720px !important;
  }

  .areas-side {
    width: 320px !important;
  }
}

@media (max-width: 980px) {
  .areas-shell {
    min-height: auto !important;
  }

  .areas-inner {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .areas-panel {
    max-width: none !important;
    width: 100% !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .areas-side {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .areas-note {
    width: 100% !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .areas-shell.has-map::after,
  .areas-shell.is-live-map::after {
    background:
      linear-gradient(
        180deg,
        rgba(238,244,250,0.84) 0%,
        rgba(238,244,250,0.72) 54%,
        rgba(238,244,250,0.48) 100%
      ) !important;
  }
}

@media (max-width: 720px) {
  .areas-inner {
    gap: 14px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .areas-panel,
  .areas-note {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .areas-live-map .leaflet-control-zoom a {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
  }
}

/* ===== SIMPLE AREAS SECTION FIX ===== */

.areas-live-map {
  display: none !important;
}

.areas {
  background: linear-gradient(180deg, #eef4fa 0%, #f5f9fd 100%) !important;
}

.areas-fullbleed {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.areas-shell {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  width: 100% !important;
  min-height: 560px !important;
  background: linear-gradient(90deg, #eef4fa 0%, #f7fbff 100%) !important;
  border-radius: 0 !important;
}

.areas-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.areas-bg-image {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 62% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  opacity: 0.96 !important;
}

/* мягкий переход от карты к светлому фону */
.areas-shell.has-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(238,244,250,0.00) 0%,
      rgba(238,244,250,0.00) 42%,
      rgba(238,244,250,0.18) 52%,
      rgba(238,244,250,0.82) 70%,
      rgba(238,244,250,1.00) 100%
    );
}

.areas-inner {
  position: relative !important;
  z-index: 2 !important;
  min-height: 560px !important;
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.areas-panel {
  position: relative !important;
  z-index: 3 !important;
  max-width: 820px !important;
  background: rgba(255,255,255,0.94) !important;
  border: 1px solid rgba(229,237,246,0.96) !important;
  border-radius: 30px !important;
  padding: 36px !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08) !important;
}

.areas-side {
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: min(360px, 30vw) !important;
  z-index: 3 !important;
}

.areas-note {
  background: rgba(10,24,48,0.96) !important;
  color: #ffffff !important;
  padding: 30px !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 50px rgba(2,8,23,0.18) !important;
}

.areas-note p {
  color: #cfdeed !important;
}

@media (max-width: 1180px) {
  .areas-bg-image {
    width: 58% !important;
  }

  .areas-panel {
    max-width: 720px !important;
  }

  .areas-side {
    width: 320px !important;
  }
}

@media (max-width: 980px) {
  .areas-shell {
    min-height: auto !important;
  }

  .areas-bg-image {
    width: 100% !important;
    height: 100% !important;
    opacity: 0.22 !important;
  }

  .areas-shell.has-map::after {
    background:
      linear-gradient(
        180deg,
        rgba(238,244,250,0.78) 0%,
        rgba(238,244,250,0.88) 100%
      ) !important;
  }

  .areas-inner {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .areas-panel {
    max-width: none !important;
    width: 100% !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .areas-side {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
  }

  .areas-note {
    width: 100% !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }
}

@media (max-width: 720px) {
  .areas-inner {
    gap: 14px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .areas-panel,
  .areas-note {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .compact-head h2 {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .compact-head p {
    font-size: 15px !important;
  }

  .areas-note h3 {
    font-size: 26px !important;
  }

  .areas-note .btn,
  .areas-note .btn-primary {
    width: 100% !important;
  }
}

/* ===== consent manage button mobile readability fix ===== */

.consent-manage-btn {
  left: auto !important;
  right: 14px !important;
  bottom: 14px !important;
  width: auto !important;
  max-width: calc(100vw - 28px) !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  justify-content: center !important;
  text-align: center !important;
  box-shadow: 0 10px 26px rgba(2, 8, 23, 0.18) !important;
  opacity: 0.96;
}

@media (max-width: 720px) {
  .consent-manage-btn {
    left: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    min-height: 40px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 420px) {
  .consent-manage-btn {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 0 !important;
    overflow: hidden !important;
  }

  .consent-manage-btn::before {
    content: "⚙";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 18px;
    line-height: 1;
    color: #f8fbff;
  }
}

/* ===== 2026-04-06 cleanup: mobile CTA + thank-you usefulness ===== */
@media (max-width: 560px) {
  .header-cta {
    display: inline-flex !important;
  }
}

.thankyou-box {
  max-width: 980px;
}

.thankyou-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 24px;
  text-align: left;
}

.thankyou-info-card {
  background: #ffffff;
  border: 1px solid #dbe5ef;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.thankyou-info-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.thankyou-info-card p {
  margin: 0;
  color: #475569;
}

.thankyou-info-card-accent {
  background: linear-gradient(135deg, #081528 0%, #102748 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.thankyou-info-card-accent h2,
.thankyou-info-card-accent p,
.thankyou-info-card-accent .thankyou-card-kicker {
  color: #ffffff;
}

.thankyou-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #e0f2fe;
  color: #0369a1;
}

.thankyou-info-card-accent .thankyou-card-kicker {
  background: rgba(255, 255, 255, 0.1);
  color: #dbeafe;
}

.thankyou-steps {
  margin: 0;
  padding-left: 20px;
  color: #334155;
}

.thankyou-steps li + li {
  margin-top: 10px;
}

.thankyou-inline-phone {
  margin-top: 18px;
  width: 100%;
}

.thankyou-actions-wide {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.thankyou-actions-wide .btn {
  min-width: 240px;
}

.thankyou-redirect-note strong {
  color: #0f172a;
}

@media (max-width: 860px) {
  .thankyou-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .thankyou-info-card {
    padding: 20px;
    border-radius: 20px;
  }

  .thankyou-info-card h2 {
    font-size: 24px;
  }

  .thankyou-actions-wide .btn {
    width: 100%;
    min-width: 0;
  }
}


/* ===== hardcoded business email ===== */
.footer-contact-link {
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.footer-contact-link:hover {
  color: #0369a1;
}

.thankyou-inline-email {
  margin-top: 12px;
  width: 100%;
}

.thankyou-inline-email-note {
  margin-top: 12px !important;
  color: #dbeafe !important;
  font-weight: 700;
  word-break: break-word;
}

.privacy-contact-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #081528 0%, #102748 100%);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.privacy-contact-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
}

.privacy-contact-card p {
  margin: 0 0 18px;
  color: #cfdeed;
}

.privacy-contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.10);
  color: #dbeafe;
}

.privacy-email-btn {
  min-width: 260px;
}

@media (max-width: 720px) {
  .privacy-contact-card {
    padding: 20px;
    border-radius: 20px;
  }

  .privacy-contact-card h2 {
    font-size: 24px;
  }

  .privacy-email-btn {
    width: 100%;
    min-width: 0;
  }
}


/* ===== final premium polish layer ===== */
.hero{padding-top:64px;padding-bottom:88px;}
.hero-layout{gap:30px;align-items:stretch;}
.hero-copy{max-width:760px;}
.hero-subtitle{max-width:640px;font-size:18px;line-height:1.62;color:#d9e6f3;}
.hero-contact-panel{margin-bottom:20px;}
.hero-points{margin-bottom:22px;}
.hero-point{min-height:72px;}
.hero-trust-grid{margin-top:6px;}
.lead-card{background:rgba(255,255,255,.992);border:1px solid rgba(255,255,255,.92);box-shadow:0 34px 80px rgba(2,8,23,.28);}
.lead-card h2{font-size:32px;line-height:1.03;letter-spacing:-.03em;}
.lead-quick-trust{display:grid;gap:8px;margin-top:16px;}
.lead-quick-trust span{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:14px;background:#f8fbff;border:1px solid #d8e6f4;color:#334155;font-size:13px;font-weight:700;}
.lead-quick-trust span::before{content:"•";color:var(--accent-dark);font-size:18px;line-height:1;}
.service-card{overflow:hidden;padding:0;}
.service-card-body{padding:22px 22px 28px;}
.service-card h3{font-size:22px;}
.service-card p{font-size:15px;line-height:1.65;}
.service-card-media{aspect-ratio:1.22/1;background:#eff5fb;overflow:hidden;}
.service-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease,filter .35s ease;}
.service-card:hover .service-card-media img{transform:scale(1.03);}
.case-card,.testimonial-card,.faq-item,.stat-box,.areas-panel{backdrop-filter:saturate(110%);}
.testimonial-card{position:relative;padding-top:28px;}
.testimonial-card strong{display:block;margin-top:14px;font-size:14px;color:#0f172a;}
.testimonial-card p{font-size:15px;line-height:1.72;}
.testimonial-rating{font-size:13px;letter-spacing:.18em;}
.testimonial-slider{scroll-snap-type:x mandatory;}
.testimonial-slide{scroll-snap-align:start;}
.footer-credit{margin-top:12px;color:#64748b;font-size:13px;}
.footer-credit a{font-weight:800;}
.mobile-sticky-cta{position:fixed;left:12px;right:12px;bottom:12px;z-index:80;display:none;gap:10px;padding:10px;border-radius:18px;background:rgba(7,17,31,.92);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.09);box-shadow:0 22px 40px rgba(2,8,23,.28);}
.mobile-sticky-link{flex:1 1 0;min-height:48px;display:inline-flex;align-items:center;justify-content:center;border-radius:14px;font-size:14px;font-weight:800;text-align:center;}
.mobile-sticky-link-call{background:rgba(255,255,255,.08);color:#ffffff;border:1px solid rgba(255,255,255,.08);}
.mobile-sticky-link-form{background:linear-gradient(135deg,var(--accent),var(--accent-dark));color:#111827;}
.reveal-section{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease;will-change:opacity,transform;}
.reveal-section.is-visible{opacity:1;transform:none;}
@media (max-width: 980px){.hero{padding-top:52px;padding-bottom:74px}.hero-layout{gap:22px}.lead-card h2{font-size:30px}}
@media (max-width: 720px){.hero{padding-top:34px;padding-bottom:62px}.hero-subtitle{font-size:16px}.lead-card h2{font-size:26px}.lead-quick-trust{gap:6px}.lead-quick-trust span{font-size:12px;padding:9px 10px}.mobile-sticky-cta{display:flex}.site-footer{padding-bottom:102px}}


/* ===== premium footer + capability upgrade ===== */
.capability-block {
  background: linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  border-top: 1px solid #e4edf7;
  border-bottom: 1px solid #e4edf7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.capability-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #e4edf7;
  border-radius: 28px;
  padding: 30px 30px 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #7dd3fc);
}

.capability-card-neutral::before {
  background: linear-gradient(90deg, #f59e0b, #fdba74);
}

.capability-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.capability-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.capability-card li {
  position: relative;
  padding-left: 26px;
  color: #334155;
  font-size: 16px;
  line-height: 1.6;
}

.capability-card li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #0284c7;
  font-size: 20px;
  line-height: 1.2;
}

.capability-card-neutral li::before {
  color: #ea580c;
}

.footer-premium-shell {
  display: grid;
  gap: 20px;
  padding-top: 8px;
}

.footer-premium-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand-block {
  max-width: 560px;
}

.footer-brand-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-brand-title {
  display: block;
  margin: 0;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.footer-brand-text {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 16px;
}

.footer-utility-block {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.footer-social-links {
  gap: 12px;
}

.footer-premium-links {
  align-items: center;
  gap: 18px;
}

.footer-premium-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.footer-premium-card {
  grid-column: span 4;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbe7f3;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.footer-premium-card-wide {
  grid-column: span 6;
}

.footer-premium-card span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-premium-card strong,
.footer-premium-card a {
  color: #0f172a;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.footer-premium-card:not(.footer-premium-card-wide) strong,
.footer-premium-card:not(.footer-premium-card-wide) a {
  font-size: 19px;
}

.footer-premium-card a:hover {
  color: #0369a1;
}

.footer-premium-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2px;
}

@media (max-width: 980px) {
  .capability-grid,
  .footer-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-premium-card,
  .footer-premium-card-wide {
    grid-column: auto;
  }

  .footer-premium-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-utility-block {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .capability-grid,
  .footer-premium-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .capability-card h3 {
    font-size: 20px;
  }

  .capability-card li {
    font-size: 15px;
  }

  .footer-brand-title {
    font-size: 28px;
  }

  .footer-brand-text {
    font-size: 15px;
  }

  .footer-premium-card {
    min-height: 0;
    padding: 18px 18px;
    border-radius: 20px;
  }

  .footer-premium-card strong,
  .footer-premium-card a,
  .footer-premium-card:not(.footer-premium-card-wide) strong,
  .footer-premium-card:not(.footer-premium-card-wide) a {
    font-size: 18px;
  }

  .footer-premium-links {
    gap: 14px;
    flex-wrap: wrap;
  }
}


/* ===== mobile-first premium conversion layer 2026-04-10 ===== */
html { -webkit-text-size-adjust: 100%; }
body.modal-open { overflow: hidden; touch-action: none; }
.hero-mobile-meta {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.hero-mobile-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eef7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  .main-nav {
    display: none !important;
  }

  .header-cta {
    display: none !important;
  }

  .site-header {
    background: rgba(7, 17, 31, 0.98);
    backdrop-filter: blur(14px);
  }

  .header-row {
    min-height: 68px;
    gap: 10px;
  }

  .logo {
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    width: auto;
    max-width: min(188px, 56vw);
    height: auto;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .lang-switch {
    padding: 6px;
    gap: 6px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
  }

  .lang-link {
    min-width: 42px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy {
    padding: 4px 0 0;
  }

  .hero h1 {
    max-width: 11.5ch;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-mobile-meta {
    display: flex;
  }

  .hero-contact-panel,
  .hero-trust-grid {
    display: none !important;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-point {
    min-height: 0;
    padding: 14px 14px 14px 42px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-point:nth-child(n+3) {
    display: none;
  }

  .hero-buttons {
    margin-bottom: 0;
  }

  .hero-buttons .btn-secondary {
    display: none;
  }

  .lead-stack {
    position: relative;
    z-index: 2;
  }

  .lead-card {
    margin-top: 0;
    padding: 20px 18px 18px;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(2, 8, 23, 0.24);
  }

  .lead-card::before {
    border-radius: 24px 24px 0 0;
  }

  .lead-top-row {
    margin-bottom: 10px;
  }

  .lead-kicker {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .lead-top-note {
    display: none;
  }

  .lead-card h2 {
    font-size: 25px;
    line-height: 1.05;
  }

  .lead-card-top p {
    font-size: 13px;
    line-height: 1.55;
  }

  .lead-quick-trust {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .lead-quick-trust span {
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.4;
  }

  .form-grid {
    gap: 10px;
  }

  label {
    margin-bottom: 6px;
    font-size: 12px;
  }

  input,
  textarea,
  select {
    min-height: 52px;
    padding: 13px 14px;
    font-size: 16px;
  }

  textarea {
    min-height: 104px;
    padding-top: 14px;
  }

  .field-help {
    font-size: 11px;
    line-height: 1.45;
  }

  .inline-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .inline-actions .btn {
    min-height: 50px;
  }

  .photo-dropzone {
    min-height: 84px;
    padding: 14px;
    gap: 12px;
    border-radius: 16px;
  }

  .photo-dropzone-text {
    font-size: 14px;
  }

  .photo-dropzone-hint {
    font-size: 11px;
    line-height: 1.45;
  }

  .photo-preview-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .submit-row .btn-submit {
    min-height: 54px;
    font-size: 15px;
  }

  .form-message {
    font-size: 12px;
  }

  .stats-strip {
    margin-top: -18px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head,
  .section-head-split {
    margin-bottom: 28px;
  }

  .section-head h2,
  .final-cta-box h2 {
    font-size: 30px;
    line-height: 1.06;
  }

  .section-head p,
  .final-cta-box p {
    font-size: 15px;
    line-height: 1.6;
  }

  .stats-grid,
  .service-grid,
  .steps-grid,
  .case-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .stat-box,
  .service-card,
  .step-card,
  .case-card,
  .testimonial-card,
  .faq-item,
  .areas-panel,
  .areas-note {
    border-radius: 22px;
  }

  .stat-box,
  .step-card,
  .case-card,
  .testimonial-card,
  .faq-item,
  .areas-panel,
  .areas-note {
    padding: 20px;
  }

  .service-card-body {
    padding: 18px 18px 22px;
  }

  .final-cta-box {
    padding: 24px;
    border-radius: 26px;
  }

  .footer-row {
    align-items: flex-start;
  }

  .mobile-sticky-cta {
    display: flex;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 8px;
    gap: 8px;
    border-radius: 16px;
  }

  .mobile-sticky-link {
    min-height: 50px;
    border-radius: 12px;
    font-size: 13px;
  }

  body.modal-open .mobile-sticky-cta {
    display: none !important;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .lead-card {
    padding: 18px 16px 16px;
  }

  .lead-card h2 {
    font-size: 24px;
  }

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

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-mobile-meta {
    gap: 6px;
  }

  .hero-mobile-meta span {
    padding: 0 10px;
    font-size: 11px;
  }

  .lead-quick-trust span:nth-child(3) {
    display: none;
  }

  .mobile-sticky-link-call {
    flex: 0 0 112px;
  }

  .mobile-sticky-link-form {
    flex: 1 1 auto;
  }
}
.mobile-sticky-link-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 720px) {
  .header-row {
    position: relative;
    min-height: 60px;
    padding-top: 10px;
    padding-bottom: 8px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    position: absolute;
    top: 8px;
    right: 16px;
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
  }

  .lang-switch {
    padding: 6px 8px;
    gap: 6px;
    border-radius: 12px;
  }

  .lang-link {
    min-width: 32px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding: 0 6px;
  }

  .header-cta {
    display: none;
  }

  .brand-logo {
    max-width: 145px;
    height: auto;
  }
}

/* ===== final cta button upgrade ===== */
.final-cta-box {
  align-items: center;
  gap: 32px;
}

.final-cta-box .btn.btn-primary {
  min-height: 84px;
  padding: 0 34px;
  border-radius: 22px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow:
    0 18px 40px rgba(234, 88, 12, 0.28),
    0 8px 20px rgba(2, 8, 23, 0.14);
}

.final-cta-box .btn.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

@media (max-width: 980px) {
  .final-cta-box {
    align-items: flex-start;
  }

  .final-cta-box .btn.btn-primary {
    min-height: 72px;
    padding: 0 28px;
    font-size: 22px;
  }
}

@media (max-width: 720px) {
  .final-cta-box .btn.btn-primary {
    width: 100%;
    min-height: 64px;
    padding: 0 22px;
    border-radius: 20px;
    font-size: 20px;
  }
}

/* ===== footer layout control ===== */
.footer-minimal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.footer-minimal-brand {
  max-width: 480px;
}

.footer-minimal-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-social-compact {
  justify-content: center;
  gap: 14px;
}

.footer-minimal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.footer-minimal-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 16px;
}

.footer-credit-minimal {
  margin-top: 16px;
  text-align: left;
}

@media (max-width: 720px) {
  .footer-minimal-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-minimal-actions {
    width: 100%;
    align-items: center;
  }

  .footer-minimal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-minimal-meta {
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .footer-credit-minimal {
    text-align: left;
  }
}

/* ===== cookie settings as icon only ===== */
.consent-manage-btn {
  right: 14px !important;
  bottom: 14px !important;
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.consent-manage-btn::before {
  content: "🍪";
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
}

@media (max-width: 720px) {
  .consent-manage-btn {
    right: 12px !important;
    bottom: 12px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
  }

  .consent-manage-btn::before {
    font-size: 18px;
  }
}