:root {
  --ink: #07111f;
  --navy: #0b1d33;
  --navy-2: #102a48;
  --navy-3: #17395e;
  --paper: #f5f7fa;
  --white: #ffffff;
  --slate: #526174;
  --line: #dce3eb;
  --amber: #f2a900;
  --amber-2: #ffc94a;
  --success: #138a54;
  --danger: #be3348;
  --demo-h: 42px;
  --header-h: 82px;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(7, 17, 31, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--demo-h) + var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
::selection { background: var(--amber); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.demo-bar {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto;
  height: var(--demo-h);
  background: var(--amber);
  color: var(--ink);
}
.demo-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.demo-inner strong { font-weight: 900; }
.demo-buy {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.demo-buy svg { width: 15px; height: 15px; transition: transform .2s ease; }
.demo-buy:hover svg { transform: translateX(3px); }
body.site-sold { --demo-h: 0px; }
body.site-sold .demo-bar { display: none; }

.site-header {
  position: fixed;
  z-index: 1100;
  top: var(--demo-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(7, 17, 31, .76);
  backdrop-filter: blur(18px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(7, 17, 31, .97);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .2);
}
.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-copy small {
  margin-top: 6px;
  color: var(--amber-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.main-nav > a:not(.header-cta) {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 750;
}
.main-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.main-nav > a:hover { color: var(--white); }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-phone {
  display: grid;
  gap: 2px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  padding-left: 24px;
}
.header-phone small {
  color: rgba(255, 255, 255, .54);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.header-phone strong { font-size: 13px; }
.header-cta, .btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.header-cta { min-height: 46px; background: var(--amber); color: var(--ink); }
.header-cta:hover { background: var(--amber-2); }
.header-cta svg, .btn svg { width: 17px; height: 17px; }
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: var(--white);
}
.menu-btn svg { width: 22px; height: 22px; }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-menu { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: calc(var(--demo-h) + var(--header-h) + 70px) 0 100px;
}
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 14, 25, .98) 0%, rgba(5, 14, 25, .9) 38%, rgba(5, 14, 25, .44) 69%, rgba(5, 14, 25, .16) 100%),
    linear-gradient(0deg, rgba(5, 14, 25, .65), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 720px) 1fr; align-items: end; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--amber-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 2px; background: currentColor; content: ""; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(64px, 7.4vw, 108px);
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: .88;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 span { color: var(--amber-2); }
.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .73);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-primary:hover { background: var(--amber-2); }
.btn-secondary { border-color: rgba(255, 255, 255, .33); color: var(--white); }
.btn-secondary:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}
.hero-points svg { width: 17px; height: 17px; color: var(--amber-2); }
.hero-status {
  justify-self: end;
  width: 220px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(6, 17, 31, .58);
  padding: 22px;
  backdrop-filter: blur(10px);
}
.status-line { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #55db8d; box-shadow: 0 0 0 5px rgba(85,219,141,.12); }
.hero-status strong { display: block; margin-top: 12px; font-family: "Barlow Condensed", sans-serif; font-size: 28px; text-transform: uppercase; }
.hero-status p { margin: 7px 0 0; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.55; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: 1.25fr repeat(4, 1fr); min-height: 108px; align-items: stretch; }
.trust-label { display: flex; align-items: center; color: var(--slate); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.trust-item {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: #38485c;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.section { padding: clamp(90px, 9vw, 140px) 0; }
.section-soft { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--white); }
.section-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.section-head h2, .split-copy h2, .contact-copy h2, .cta-panel h2 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: .96;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-head > p { margin: 0; color: var(--slate); font-size: 16px; line-height: 1.75; }
.section-dark .section-head > p { color: rgba(255,255,255,.62); }
.section-dark .eyebrow { color: var(--amber-2); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 560px; overflow: hidden; background: var(--navy); color: var(--white); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.service-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,12,23,.98) 0%, rgba(4,12,23,.62) 45%, rgba(4,12,23,.06) 78%); content: ""; }
.service-card:hover img { transform: scale(1.025); }
.service-content { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 34px; }
.service-number { color: var(--amber-2); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.service-card h3 { margin: 14px 0 10px; font-family: "Barlow Condensed", sans-serif; font-size: 30px; line-height: 1; text-transform: uppercase; }
.service-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 13px; line-height: 1.7; }
.service-arrow { display: grid; width: 42px; height: 42px; margin-top: 24px; place-items: center; border: 1px solid rgba(255,255,255,.26); color: var(--amber-2); }
.service-arrow svg { width: 18px; height: 18px; }
.mini-services { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border: 1px solid var(--line); }
.mini-service { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; padding: 28px; background: var(--white); }
.mini-service + .mini-service { border-left: 1px solid var(--line); }
.mini-icon { display: grid; width: 54px; height: 54px; place-items: center; background: #fff4d8; color: #9a6600; }
.mini-icon svg { width: 24px; height: 24px; }
.mini-service h3 { margin: 2px 0 8px; font-size: 14px; }
.mini-service p { margin: 0; color: var(--slate); font-size: 12px; line-height: 1.65; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-media { position: relative; min-height: 720px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge { position: absolute; right: 0; bottom: 0; display: grid; width: 180px; height: 180px; place-items: center; background: var(--amber); color: var(--ink); text-align: center; }
.experience-badge strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 54px; line-height: .9; }
.experience-badge span { display: block; margin-top: 8px; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.split-copy { display: flex; flex-direction: column; justify-content: center; background: var(--navy); padding: clamp(50px, 7vw, 100px); color: var(--white); }
.split-copy > p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.8; }
.commitments { display: grid; gap: 0; margin-top: 30px; border-block: 1px solid rgba(255,255,255,.15); }
.commitment { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center; min-height: 70px; }
.commitment + .commitment { border-top: 1px solid rgba(255,255,255,.15); }
.commitment svg { width: 21px; height: 21px; color: var(--amber-2); }
.commitment strong { display: block; font-size: 12px; }
.commitment span { display: block; margin-top: 4px; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.45; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.process-step { min-height: 330px; padding: 36px; }
.process-step + .process-step { border-left: 1px solid var(--line); }
.process-step b { color: #a06b00; font-family: "Barlow Condensed", sans-serif; font-size: 18px; }
.process-step h3 { margin: 95px 0 14px; font-family: "Barlow Condensed", sans-serif; font-size: 30px; text-transform: uppercase; }
.process-step p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.7; }

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  background: var(--amber);
  padding: 65px 70px;
  color: var(--ink);
}
.cta-panel::after { position: absolute; right: 17%; bottom: -190px; width: 360px; height: 360px; border: 1px solid rgba(7,17,31,.15); border-radius: 50%; box-shadow: 0 0 0 60px rgba(7,17,31,.035), 0 0 0 120px rgba(7,17,31,.02); content: ""; }
.cta-panel p { max-width: 620px; margin: 18px 0 0; font-size: 14px; line-height: 1.65; }
.cta-panel .btn { position: relative; z-index: 1; min-width: 230px; background: var(--ink); color: var(--white); }
.cta-panel .btn:hover { background: var(--navy-2); }

.faq-list { max-width: 920px; margin-inline: auto; border-top: 1px solid rgba(255,255,255,.16); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.16); }
.faq-question { display: flex; width: 100%; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; border: 0; background: transparent; color: var(--white); text-align: left; font-size: 14px; font-weight: 750; }
.faq-question svg { flex: 0 0 auto; width: 19px; height: 19px; color: var(--amber-2); transition: transform .2s ease; }
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 54px 26px 0; color: rgba(255,255,255,.59); font-size: 13px; line-height: 1.75; }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; background: var(--white); box-shadow: var(--shadow); }
.contact-copy { position: relative; overflow: hidden; background: var(--navy); padding: clamp(48px, 6vw, 82px); color: var(--white); }
.contact-copy::after { position: absolute; right: -160px; bottom: -160px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.018), 0 0 0 120px rgba(255,255,255,.012); content: ""; }
.contact-copy > p { color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.75; }
.contact-details { position: relative; z-index: 1; display: grid; margin-top: 52px; border-block: 1px solid rgba(255,255,255,.15); }
.contact-detail { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: center; min-height: 78px; }
.contact-detail + .contact-detail { border-top: 1px solid rgba(255,255,255,.15); }
.contact-detail svg { width: 20px; height: 20px; color: var(--amber-2); }
.contact-detail small { display: block; color: rgba(255,255,255,.45); font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-detail strong { display: block; margin-top: 5px; font-size: 12px; }
.contact-form { padding: clamp(42px, 6vw, 80px); }
.form-intro { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; color: var(--slate); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.form-intro::after { flex: 1; height: 1px; background: var(--line); content: ""; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 8px; color: #344559; font-size: 10px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #ccd6e1;
  border-radius: 0;
  background: #f8fafc;
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input, .field select { min-height: 53px; }
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #7b8999; opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9cabbc; background: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #9c6800; background: var(--white); box-shadow: 0 0 0 3px rgba(242,169,0,.18); }
.form-submit { width: 100%; min-height: 58px; border: 0; background: var(--ink); color: var(--white); font-size: 12px; font-weight: 850; transition: background .2s ease; }
.form-submit:hover { background: var(--navy-3); }
.form-submit:focus-visible { outline: 3px solid rgba(242,169,0,.5); outline-offset: 3px; }
.form-submit:disabled { cursor: wait; opacity: .62; }
.form-note { margin: 13px 0 0; color: var(--slate); font-size: 10px; line-height: 1.5; }
.form-alert { display: none; margin: 0 0 14px; border-left: 3px solid; padding: 12px 14px; font-size: 12px; line-height: 1.5; }
.form-alert.success { display: block; border-color: var(--success); background: #edf9f3; color: #09653d; }
.form-alert.error { display: block; border-color: var(--danger); background: #fff0f2; color: #9e2034; }
.honeypot { position: absolute; left: -10000px; }

.site-footer { background: #050d17; color: var(--white); padding: 76px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 54px; }
.footer-brand p { max-width: 350px; margin: 22px 0 0; color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.75; }
.footer-col h2 { margin: 6px 0 20px; color: var(--amber-2); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.58); font-size: 11px; transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-emergency { border: 1px solid rgba(255,255,255,.13); padding: 20px; }
.footer-emergency small { color: rgba(255,255,255,.47); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-emergency strong { display: block; margin-top: 8px; font-family: "Barlow Condensed", sans-serif; font-size: 26px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 62px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; color: rgba(255,255,255,.4); font-size: 9px; line-height: 1.6; }
.footer-bottom a { color: rgba(255,255,255,.66); }

.cookie-banner {
  position: fixed;
  z-index: 1300;
  right: 18px;
  bottom: 18px;
  display: none;
  width: min(420px, calc(100% - 36px));
  border: 1px solid rgba(255,255,255,.13);
  background: #07111f;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  padding: 22px;
  color: var(--white);
}
.cookie-banner.show { display: block; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.6; }
.cookie-banner p a { color: var(--amber-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; margin-top: 16px; }
.cookie-actions button { flex: 1; min-height: 40px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: var(--white); font-size: 10px; font-weight: 800; }
.cookie-actions .accept { border-color: var(--amber); background: var(--amber); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-status { display: none; }
  .service-card { min-height: 500px; }
  .split-media { min-height: 640px; }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .main-nav {
    position: fixed;
    top: calc(var(--demo-h) + var(--header-h));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: #07111f;
    padding: 30px 24px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .main-nav.open { transform: none; }
  .main-nav > a:not(.header-cta) { border-bottom: 1px solid rgba(255,255,255,.12); padding: 20px 4px; font-size: 15px; }
  .main-nav > a:not(.header-cta)::after { display: none; }
  .header-cta { margin-top: 22px; min-height: 54px; }
  .menu-btn { display: grid; }
  .brand img { width: 44px; height: 44px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 520px; }
  .mini-services { grid-template-columns: 1fr; }
  .mini-service + .mini-service { border-top: 1px solid var(--line); border-left: 0; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 620px; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 0; }
  .process-step + .process-step { border-top: 1px solid var(--line); border-left: 0; }
  .process-step h3 { margin-top: 52px; }
  .cta-panel { grid-template-columns: 1fr; padding: 54px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  :root { --demo-h: 48px; --header-h: 68px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .demo-inner { justify-content: space-between; gap: 10px; padding-inline: 12px; font-size: 10px; }
  .demo-inner span span { display: none; }
  .demo-buy { font-size: 9px; }
  .header-inner { gap: 12px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 8px; }
  .hero { min-height: 760px; padding-bottom: 64px; }
  .hero-media img { object-position: 66% center; }
  .hero-media::after { background: linear-gradient(0deg, rgba(5,14,25,.98) 0%, rgba(5,14,25,.84) 58%, rgba(5,14,25,.42) 100%); }
  .hero h1 { font-size: clamp(50px, 15.5vw, 68px); }
  .hero-lead { font-size: 15px; line-height: 1.65; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 11px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-label { grid-column: 1 / -1; justify-content: center; min-height: 64px; border-bottom: 1px solid var(--line); }
  .trust-item { min-height: 68px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .trust-item:nth-child(2), .trust-item:nth-child(4) { border-left: 0; }
  .section { padding: 78px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2, .split-copy h2, .contact-copy h2, .cta-panel h2 { font-size: 43px; }
  .service-card { min-height: 460px; }
  .service-content { padding: 26px; }
  .mini-service { padding: 22px; }
  .split-media { min-height: 470px; }
  .experience-badge { width: 132px; height: 132px; }
  .experience-badge strong { font-size: 42px; }
  .split-copy { padding: 52px 24px; }
  .process-step { padding: 28px 10px; }
  .cta-panel { padding: 42px 24px; }
  .cta-panel .btn { width: 100%; }
  .contact-copy { padding: 48px 24px; }
  .contact-form { padding: 38px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-emergency { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 390px) {
  .brand-copy small { display: none; }
  .hero h1 { font-size: 49px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
