@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --navy-950: #071426;
  --navy-900: #0a1d35;
  --navy-800: #102c4d;
  --blue-700: #0d5ae5;
  --cyan-500: #09b8d1;
  --cyan-100: #dff8fc;
  --orange-500: #ff5a24;
  --orange-600: #e84212;
  --cream: #f7f8f6;
  --white: #ffffff;
  --ink: #10233d;
  --muted: #617087;
  --line: #dce4ec;
  --success: #0c7a55;
  --error: #b42318;
  --shadow-sm: 0 10px 30px rgba(7, 20, 38, .08);
  --shadow-lg: 0 24px 70px rgba(7, 20, 38, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 22px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #22c8df; outline-offset: 3px; }
::selection { background: var(--cyan-100); color: var(--navy-950); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-tight { padding: 74px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker::before { content: ''; width: 28px; height: 2px; background: currentColor; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 24px;
  color: #bfeff7;
  background: rgba(9, 184, 209, .12);
  border: 1px solid rgba(105, 226, 241, .28);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 8px; height: 8px; background: var(--orange-500); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255, 90, 36, .16); }
h1, h2, h3 { margin: 0; color: var(--navy-950); font-family: 'Manrope', sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; font-size: clamp(2.7rem, 6vw, 5.7rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 800; }
h3 { font-size: 1.16rem; font-weight: 750; letter-spacing: -.02em; }
p { margin: 0; }
.lede { max-width: 660px; margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-heading > div:first-child { max-width: 720px; }
.section-heading p { max-width: 470px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--blue-700); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--orange-600); }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .16s var(--ease-out), background-color .18s var(--ease-out), color .18s var(--ease-out), border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }
.btn-primary { color: var(--white); background: var(--orange-500); box-shadow: 0 12px 28px rgba(255, 90, 36, .28); }
.btn-primary:hover { background: var(--orange-600); }
.btn-secondary { color: var(--white); background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .28); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255, 255, 255, .15); border-color: rgba(255, 255, 255, .48); }
.btn-light { color: var(--navy-950); background: var(--white); }
.btn-outline { color: var(--navy-950); background: transparent; border-color: #9fb0c4; }
.btn-outline:hover { color: var(--blue-700); border-color: var(--blue-700); background: var(--white); }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height .22s var(--ease-out), background-color .22s var(--ease-out), box-shadow .22s var(--ease-out), color .22s var(--ease-out);
}
.site-header.scrolled { height: 72px; color: var(--navy-950); background: rgba(255, 255, 255, .94); border-color: rgba(16, 44, 77, .08); box-shadow: 0 10px 32px rgba(7, 20, 38, .09); backdrop-filter: blur(16px); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.logo-link { flex: 0 0 auto; width: clamp(190px, 22vw, 292px); text-decoration: none; }
.logo-link img { width: 100%; height: auto; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .24)); transition: filter .2s var(--ease-out); }
.site-header.scrolled .logo-link img { filter: none; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 24px; padding: 0; margin: 0; list-style: none; }
.main-nav a { position: relative; font-size: .89rem; font-weight: 700; text-decoration: none; }
.main-nav a::after { content: ''; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--cyan-500); transform: scaleX(0); transition: transform .18s var(--ease-out); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-call { white-space: nowrap; }
.header-phone { display: none; font-weight: 800; text-decoration: none; }
.menu-toggle { display: none; padding: 10px; color: inherit; background: transparent; border: 0; }
.menu-toggle .icon { width: 28px; height: 28px; }

.hero {
  min-height: 780px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero-media, .hero-overlay, .hero-grid { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(7, 20, 38, .98) 0%, rgba(7, 20, 38, .88) 43%, rgba(7, 20, 38, .36) 72%, rgba(7, 20, 38, .14) 100%); }
.hero-grid { opacity: .13; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero::before { content: ''; position: absolute; width: 440px; height: 440px; left: -190px; bottom: -250px; border: 1px solid rgba(9,184,209,.35); border-radius: 50%; box-shadow: 0 0 0 56px rgba(9,184,209,.04), 0 0 0 112px rgba(9,184,209,.03); }
.hero-content { position: relative; z-index: 2; padding: 150px 0 110px; }
.hero h1 { color: var(--white); }
.hero h1 span { color: #5bdded; }
.hero-copy { max-width: 660px; margin-top: 24px; color: #d5e2ef; font-size: clamp(1.04rem, 1.5vw, 1.22rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 40px 0 0; color: #d9e6f1; list-style: none; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 700; }
.hero-trust .icon { width: 17px; color: #5bdded; }
.hero-location { position: absolute; z-index: 3; right: 4vw; bottom: 50px; display: flex; gap: 14px; align-items: center; max-width: 280px; padding: 16px 18px; background: rgba(7,20,38,.76); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; backdrop-filter: blur(14px); }
.hero-location .icon { width: 24px; color: var(--orange-500); }
.hero-location strong, .hero-location span { display: block; }
.hero-location strong { font-family: 'Manrope', sans-serif; font-size: .95rem; }
.hero-location span { color: #b7c8d8; font-size: .78rem; }

.trust-strip { position: relative; z-index: 5; margin-top: -1px; color: var(--white); background: var(--navy-800); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; min-height: 102px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.trust-icon { width: 43px; height: 43px; display: grid; place-items: center; color: #64dfec; background: rgba(9,184,209,.12); border-radius: 12px; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-family: 'Manrope', sans-serif; font-size: .91rem; }
.trust-item span { color: #9fb4c8; font-size: .75rem; }

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 88px; align-items: center; }
.about-copy p + p { margin-top: 18px; }
.about-copy p { color: var(--muted); }
.about-visual { position: relative; min-height: 520px; }
.about-main { position: absolute; inset: 0 64px 54px 0; overflow: hidden; border-radius: 6px 70px 6px 6px; box-shadow: var(--shadow-lg); }
.about-main img { width: 100%; height: 100%; object-fit: cover; }
.about-panel { position: absolute; right: 0; bottom: 0; width: 230px; padding: 25px; color: var(--white); background: var(--blue-700); box-shadow: 0 18px 44px rgba(13,90,229,.28); }
.about-panel strong { display: block; font: 800 1.7rem/1 'Manrope', sans-serif; }
.about-panel span { display: block; margin-top: 8px; font-size: .84rem; line-height: 1.45; }
.airflow { position: absolute; left: -40px; bottom: 46px; width: 170px; color: var(--cyan-500); opacity: .38; }

.why { overflow: hidden; color: var(--white); background: var(--navy-950); }
.why::before { content: ''; position: absolute; top: -280px; right: -160px; width: 650px; height: 650px; border: 1px solid rgba(73,220,238,.18); transform: rotate(35deg); }
.why h2, .why h3 { color: var(--white); }
.why .kicker { color: #64dfec; }
.why .section-heading p { color: #aebfd0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.benefit { min-height: 250px; padding: 34px; background: var(--navy-950); transition: background-color .2s var(--ease-out), transform .2s var(--ease-out); }
.benefit:hover { z-index: 2; background: #0c2440; transform: translateY(-4px); }
.benefit-number { display: block; margin-bottom: 28px; color: var(--orange-500); font: 800 .78rem 'Manrope', sans-serif; letter-spacing: .12em; }
.benefit p { margin-top: 12px; color: #9fb3c6; font-size: .92rem; }

.services { background: #f1f4f6; }
.services-intro { display: grid; grid-template-columns: 1fr .55fr; gap: 48px; align-items: end; margin-bottom: 50px; }
.services-intro p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 430px; display: flex; flex-direction: column; overflow: hidden; color: var(--ink); background: var(--white); border-top: 3px solid transparent; box-shadow: 0 7px 24px rgba(7,20,38,.05); transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out); }
.service-card::after { content: ''; position: absolute; right: -50px; bottom: -70px; width: 130px; height: 130px; border: 20px solid var(--cyan-100); border-radius: 50%; transition: transform .24s var(--ease-out); }
.service-card:nth-child(3n+2)::after { border-color: #fff0e9; }
.service-card:hover { transform: translateY(-7px); border-color: var(--cyan-500); box-shadow: var(--shadow-sm); }
.service-card:hover::after { transform: scale(1.15); }
.service-photo { width: 100%; aspect-ratio: 16 / 9; flex: 0 0 auto; margin: 0; overflow: hidden; background: #dbe5ec; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease-out); }
.service-card:hover .service-photo img { transform: scale(1.045); }
.service-body { min-height: 0; display: flex; flex: 1; flex-direction: column; padding: 0 25px 25px; }
.service-icon { position: relative; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; margin: -23px 0 18px; color: var(--blue-700); background: #edf4ff; border: 4px solid var(--white); border-radius: 14px; box-shadow: 0 8px 20px rgba(7,20,38,.1); }
.service-icon .icon { width: 25px; height: 25px; }
.service-card p { position: relative; z-index: 1; margin-top: 12px; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.card-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--blue-700); font-size: .83rem; font-weight: 800; text-decoration: none; }
.card-link:hover { color: var(--orange-600); }

.emergency { padding: 72px 0; color: var(--white); background: var(--orange-500); overflow: hidden; }
.emergency::before { content: ''; position: absolute; z-index: 1; right: -130px; top: -230px; width: 550px; height: 550px; border: 60px solid rgba(255,255,255,.08); border-radius: 50%; }
.emergency::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(232,66,18,.98) 0%, rgba(232,66,18,.92) 48%, rgba(7,20,38,.62) 100%); }
.emergency-media { position: absolute; inset: 0; margin: 0; }
.emergency-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.emergency-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.emergency h2 { max-width: 760px; color: var(--white); font-size: clamp(2rem, 4vw, 3.35rem); }
.emergency p { max-width: 760px; margin-top: 16px; color: #fff4ee; }
.emergency-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.emergency .btn-outline { color: var(--white); border-color: rgba(255,255,255,.55); }
.emergency .btn-outline:hover { color: var(--navy-950); }

.detail-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 62px; align-items: start; }
.detail-sticky { position: sticky; top: 110px; }
.detail-sticky p { margin-top: 20px; color: var(--muted); }
.detail-nav { display: grid; gap: 8px; margin-top: 28px; }
.detail-nav a { padding: 12px 16px; color: var(--muted); background: #eef2f5; border-left: 3px solid transparent; font-size: .86rem; font-weight: 700; text-decoration: none; }
.detail-nav a:hover { color: var(--blue-700); border-color: var(--blue-700); background: #e9f2ff; }
.detail-list { border-top: 1px solid var(--line); }
.detail-item { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.detail-icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--white); background: var(--navy-800); border-radius: 17px; }
.detail-icon.orange { background: var(--orange-500); }
.detail-item p { margin-top: 12px; color: var(--muted); }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 18px 0 0; list-style: none; }
.detail-tags li { padding: 6px 10px; color: #34506d; background: #edf2f6; border-radius: 5px; font-size: .75rem; font-weight: 700; }

.process { background: var(--cyan-100); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.process-step { position: relative; padding-top: 72px; }
.process-number { position: absolute; top: 0; left: 0; color: rgba(13,90,229,.12); font: 800 5.5rem/1 'Manrope', sans-serif; }
.process-step h3, .process-step p { position: relative; z-index: 1; }
.process-step p { margin-top: 12px; color: #50677d; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 30px; left: 104px; width: calc(100% - 112px); border-top: 1px dashed rgba(13,90,229,.35); }

.area { color: var(--white); background: var(--navy-900); }
.area h2, .area h3 { color: var(--white); }
.area .kicker { color: #64dfec; }
.area-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: stretch; }
.area-copy { padding: 24px 0; }
.area-copy > p { margin-top: 20px; color: #afc0d0; }
.area-address { display: grid; gap: 18px; margin-top: 34px; }
.area-data { display: flex; align-items: flex-start; gap: 14px; }
.area-data .icon { color: var(--orange-500); margin-top: 3px; }
.area-data strong, .area-data span { display: block; }
.area-data span { color: #afc0d0; font-size: .9rem; }
.service-area-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.service-area-list span { padding: 7px 11px; color: #d7f8fb; background: rgba(9,184,209,.12); border: 1px solid rgba(9,184,209,.22); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.map-wrap { min-height: 490px; position: relative; overflow: hidden; background: #0d2744; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.13); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 490px; border: 0; filter: saturate(.82) contrast(1.06); }
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: #bed0df; background: #0d2744; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.faq-aside { position: sticky; top: 110px; }
.faq-aside p { margin-top: 20px; color: var(--muted); }
.faq-cta { margin-top: 28px; padding: 24px; color: var(--white); background: var(--blue-700); }
.faq-cta strong { display: block; font: 800 1.05rem 'Manrope', sans-serif; }
.faq-cta a { display: inline-block; margin-top: 12px; color: var(--white); font-weight: 800; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 2px; color: var(--navy-950); cursor: pointer; font: 750 1.03rem/1.35 'Manrope', sans-serif; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-700); background: #edf4ff; border-radius: 50%; font: 500 1.35rem/1 'DM Sans', sans-serif; transition: transform .2s var(--ease-out), background-color .2s var(--ease-out); }
.faq-item[open] summary::after { color: var(--white); background: var(--orange-500); transform: rotate(45deg); }
.faq-answer { padding: 0 56px 26px 2px; color: var(--muted); font-size: .94rem; }
.faq-answer a { color: var(--blue-700); font-weight: 700; }

.contact { background: #eaf0f4; }
.contact-shell { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; background: var(--white); box-shadow: var(--shadow-lg); }
.contact-info { position: relative; padding: 52px 44px; color: var(--white); background: var(--navy-950); }
.contact-info::after { content: ''; position: absolute; right: -110px; bottom: -180px; width: 350px; height: 350px; border: 45px solid rgba(9,184,209,.1); border-radius: 50%; }
.contact-info h2 { color: var(--white); font-size: clamp(2rem, 3.2vw, 3.2rem); }
.contact-info > p { margin-top: 20px; color: #adc0d2; }
.contact-list { position: relative; z-index: 2; display: grid; gap: 23px; margin-top: 38px; }
.contact-row { display: flex; gap: 14px; }
.contact-row .icon { color: #64dfec; margin-top: 4px; }
.contact-row strong, .contact-row span, .contact-row a { display: block; }
.contact-row a { color: var(--white); font-weight: 800; text-decoration: none; }
.contact-row span { color: #adc0d2; font-size: .88rem; }
.contact-form { padding: 52px; }
.form-heading { margin-bottom: 28px; }
.form-heading h3 { font-size: 1.7rem; }
.form-heading p { margin-top: 8px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #273b52; font-size: .82rem; font-weight: 800; }
.required { color: var(--orange-600); }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #f9fbfc; border: 1px solid #cfd9e2; border-radius: 8px; transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), background-color .18s var(--ease-out); }
.field textarea { min-height: 124px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; background: var(--white); border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(13,90,229,.12); }
.field [aria-invalid='true'] { border-color: var(--error); }
.error-text { min-height: 18px; color: var(--error); font-size: .76rem; }
.consent { grid-column: 1 / -1; display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; padding: 15px; background: #f4f7f9; border-radius: 8px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue-700); }
.consent label { color: #52657a; font-size: .73rem; line-height: 1.55; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-status { min-height: 24px; font-size: .84rem; font-weight: 700; }
.form-status.error { color: var(--error); }
.form-status.success { color: var(--success); }
.submit-btn[disabled] { opacity: .65; cursor: wait; transform: none; }
.spinner { width: 17px; height: 17px; display: none; border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; }
.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.final-cta { overflow: hidden; color: var(--white); background: var(--blue-700); }
.final-cta::before, .final-cta::after { content: ''; position: absolute; border: 1px solid rgba(255,255,255,.16); transform: rotate(45deg); }
.final-cta::before { width: 370px; height: 370px; left: -230px; top: -170px; }
.final-cta::after { width: 250px; height: 250px; right: -100px; bottom: -150px; }
.final-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.final-cta h2 { max-width: 760px; color: var(--white); }
.final-cta p { margin-top: 16px; color: #d8e7ff; }
.final-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.footer { color: #b9c8d7; background: #05101f; }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 68px; padding: 74px 0 48px; }
.footer-wordmark { color: var(--white); font: 800 clamp(1.45rem, 2.4vw, 2.15rem)/1.05 'Manrope', sans-serif; letter-spacing: -.04em; }
.footer-brand p { max-width: 480px; margin-top: 18px; }
.footer h3 { color: var(--white); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; padding: 0; margin: 20px 0 0; list-style: none; }
.footer-links a { color: #b9c8d7; font-size: .87rem; text-decoration: none; }
.footer-links a:hover { color: #65e3f0; }
.footer-contact { display: grid; gap: 12px; margin-top: 20px; font-size: .87rem; }
.footer-contact a { color: var(--white); font-weight: 800; text-decoration: none; }
.disclaimer { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); color: #8294a7; font-size: .69rem; line-height: 1.6; }
.copyright { padding: 19px 0 84px; color: #8294a7; border-top: 1px solid rgba(255,255,255,.09); font-size: .76rem; }
.mobile-call { display: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .main-nav ul { gap: 15px; }
  .main-nav a { font-size: .82rem; }
  .nav-call { display: none; }
  .header-phone { display: block; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .emergency-inner, .final-inner { grid-template-columns: 1fr; }
  .emergency-actions { justify-content: flex-start; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .container { width: min(100% - 32px, 720px); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-phone { display: none; }
  .nav-call { display: inline-flex; min-height: 44px; padding: 10px 14px; }
  .main-nav { position: fixed; z-index: 101; top: var(--header-h); right: 16px; left: 16px; visibility: hidden; padding: 18px; color: var(--navy-950); background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-10px) scale(.98); transform-origin: top right; transition: opacity .18s var(--ease-out), transform .18s var(--ease-out), visibility .18s; }
  .site-header.scrolled .main-nav { top: 72px; }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0) scale(1); }
  .main-nav ul { display: grid; gap: 3px; }
  .main-nav a { display: block; padding: 10px 12px; font-size: .94rem; border-radius: 8px; }
  .main-nav a:hover, .main-nav a.active { color: var(--blue-700); background: #edf4ff; }
  .main-nav a::after { display: none; }
  .logo-link { width: 225px; }
  .hero { min-height: 750px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,20,38,.97) 0%, rgba(7,20,38,.8) 62%, rgba(7,20,38,.48) 100%); }
  .hero-location { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); }
  .about-grid, .detail-layout, .area-grid, .faq-layout, .contact-shell { grid-template-columns: 1fr; }
  .about-grid { gap: 56px; }
  .detail-sticky, .faq-aside { position: static; }
  .detail-nav { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .services-intro { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 35px; }
  .process-step:not(:last-child)::after { top: 80px; left: 27px; width: 1px; height: calc(100% - 55px); border-top: 0; border-left: 1px dashed rgba(13,90,229,.35); }
  .footer-main { grid-template-columns: 1.4fr .6fr; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 560px); }
  .section { padding: 68px 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading p { margin-top: 17px; }
  .logo-link { width: 190px; }
  .nav-call { display: none; }
  .hero { min-height: 760px; align-items: end; }
  .hero-media img { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(7,20,38,.99) 0%, rgba(7,20,38,.91) 62%, rgba(7,20,38,.57) 100%); }
  .hero-content { padding: 130px 0 74px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-copy { font-size: .98rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 82px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-item:first-child, .trust-item:nth-child(3) { border-left: 1px solid rgba(255,255,255,.12); }
  .about-visual { min-height: 420px; }
  .about-main { inset: 0 30px 44px 0; border-radius: 4px 48px 4px 4px; }
  .about-panel { width: 196px; padding: 20px; }
  .benefits-grid, .service-grid { grid-template-columns: 1fr; }
  .benefit { min-height: auto; }
  .service-card { min-height: 420px; }
  .emergency-actions, .final-actions { display: grid; width: 100%; }
  .detail-item { grid-template-columns: 54px 1fr; gap: 17px; }
  .detail-icon { width: 50px; height: 50px; }
  .map-wrap, .map-wrap iframe { min-height: 380px; }
  .faq-answer { padding-right: 4px; }
  .contact-info, .contact-form { padding: 38px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .consent, .form-actions { grid-column: auto; }
  .form-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-main > div:last-child { grid-column: auto; }
  .mobile-call { position: fixed; z-index: 95; right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); display: inline-flex; min-height: 50px; align-items: center; gap: 8px; padding: 12px 18px; color: var(--white); background: var(--orange-500); border-radius: 999px; box-shadow: 0 12px 36px rgba(7,20,38,.28); font-weight: 800; text-decoration: none; transition: transform .18s var(--ease-out), opacity .18s var(--ease-out); }
  .mobile-call.hidden { pointer-events: none; opacity: 0; transform: translateY(15px); }
  .copyright { padding-bottom: 92px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
