@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: #071b32;
  --navy-900: #0b2748;
  --navy-800: #113a67;
  --blue-700: #1f5f9f;
  --blue-500: #168ebc;
  --cyan-400: #23b9d1;
  --orange-500: #f36b31;
  --orange-400: #ff9344;
  --gold-400: #f7b951;
  --ink: #101f33;
  --muted: #5b6878;
  --line: #dce5ed;
  --surface: #f3f7fa;
  --white: #ffffff;
  --green: #39c98b;
  --danger: #b42318;
  --shadow-sm: 0 12px 30px rgba(11, 39, 72, 0.08);
  --shadow-lg: 0 30px 70px rgba(3, 22, 41, 0.22);
  --radius: 22px;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.emergency-bar {
  color: #dce9f5;
  background: var(--navy-950);
  font-size: 13px;
}

.emergency-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.emergency-inner a {
  margin-left: 8px;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(57, 201, 139, 0.16);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 39, 72, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  color: #344355;
  font-size: 14px;
  font-weight: 600;
}

.main-navigation a,
.main-navigation button {
  position: relative;
}

.main-navigation a::after,
.text-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--orange-500);
  transition: right 0.2s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after,
.text-button:hover::after {
  right: 0;
}

.text-button {
  padding: 0;
  color: var(--blue-700);
  background: transparent;
  border: 0;
  font-weight: 700;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(11, 39, 72, 0.18);
}

.header-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-call span {
  display: flex;
  flex-direction: column;
}

.header-call small {
  margin-bottom: 2px;
  color: #a9c8e3;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--navy-900);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("/assets/hvac-hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 25, 47, 0.98) 0%, rgba(5, 25, 47, 0.9) 41%, rgba(5, 25, 47, 0.34) 70%, rgba(5, 25, 47, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 22, 41, 0.62), transparent 50%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 650px;
  padding-block: 84px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.72fr);
  align-items: center;
  gap: 84px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--orange-500);
}

.eyebrow.light {
  color: #b8d6ed;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6.1vw, 82px);
  line-height: 0.98;
}

.hero h1 em {
  position: relative;
  color: var(--orange-400);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: -2px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), transparent);
  opacity: 0.65;
}

.hero-copy > p {
  max-width: 590px;
  margin-bottom: 30px;
  color: #d7e4ee;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 34px;
}

.button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.icon-button:focus-visible,
.floating-concierge:focus-visible,
.preview-cta:focus-visible,
.choice-grid input:focus-visible + span,
.choice-grid label:has(input:focus-visible),
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(35, 185, 209, 0.4);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  box-shadow: 0 12px 26px rgba(243, 107, 49, 0.28);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(243, 107, 49, 0.34);
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-subtle {
  color: var(--navy-800);
  background: #edf3f7;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.proof-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--cyan-400);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.hero-proof span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.25;
}

.hero-proof strong {
  font-weight: 700;
}

.hero-proof small {
  color: #9eb5c9;
}

.concierge-preview {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  transform: translateY(12px);
}

.preview-top,
.concierge-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-top {
  padding: 20px 20px 17px;
  border-bottom: 1px solid var(--line);
}

.assistant-avatar {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: #eaf5fb;
  border-radius: 14px;
}

.assistant-avatar img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.preview-top > div:nth-child(2),
.concierge-header > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.preview-top strong,
.concierge-header strong {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.preview-top div:nth-child(2) span,
.concierge-header div:nth-child(2) span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
}

.preview-top i,
.concierge-header i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
}

.ai-pill {
  margin-left: auto;
  padding: 5px 9px;
  color: var(--blue-700);
  background: #e9f5fb;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-chat {
  padding: 23px 20px 19px;
  background:
    radial-gradient(circle at top right, rgba(35, 185, 209, 0.08), transparent 40%),
    #f8fbfd;
}

.chat-bubble {
  position: relative;
  margin: 0 0 20px 8px;
  padding: 13px 15px;
  color: #38485a;
  background: var(--white);
  border: 1px solid #e4ecf2;
  border-radius: 5px 16px 16px 16px;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(11, 39, 72, 0.05);
}

.quick-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.quick-options button {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #314457;
  background: var(--white);
  border: 1px solid #dce7ef;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease;
}

.quick-options button:hover {
  border-color: var(--blue-500);
  transform: translateY(-1px);
}

.quick-options button span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: #edf6fb;
  border-radius: 8px;
}

.preview-cta {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.preview-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #b9cad9;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 27px 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-number {
  color: var(--orange-500);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.trust-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.section {
  padding-block: 110px;
}

.services-section {
  background:
    linear-gradient(rgba(243, 247, 250, 0.95), rgba(243, 247, 250, 0.95)),
    radial-gradient(circle at 8% 0%, rgba(35, 185, 209, 0.15), transparent 25%);
}

.section-heading {
  margin-bottom: 50px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.story-copy h2,
.area-layout h2,
.intro-copy h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
}

.section-heading > p,
.split-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e0e8ee;
  border-radius: 19px;
  box-shadow: 0 8px 26px rgba(10, 39, 70, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  border-color: #c5d9e6;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -95px;
  right: -85px;
  border-radius: 50%;
  background: rgba(35, 185, 209, 0.08);
}

.service-number {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #c7d2db;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.warm,
.choice-icon.warm {
  color: #c75224;
  background: #fff1e8;
}

.service-icon.cool,
.choice-icon.cool {
  color: var(--blue-700);
  background: #e9f4fb;
}

.service-icon.neutral,
.choice-icon.neutral {
  color: #38526d;
  background: #eef2f6;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 23px;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  width: max-content;
  max-width: 100%;
  padding: 0;
  margin-top: auto;
  color: var(--blue-700);
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 800;
}

.card-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.18s ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.service-cta-card {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(35, 185, 209, 0.32), transparent 35%),
    var(--navy-900);
  border-color: var(--navy-900);
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
}

.service-cta-card::after {
  display: none;
}

.service-cta-card h3 {
  color: var(--white);
}

.service-cta-card p {
  color: #c0d2e1;
}

.mini-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-cta-card .mini-label {
  color: #6cdbec;
}

.round-arrow {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  transition: transform 0.18s ease;
}

.round-arrow:hover {
  transform: rotate(45deg);
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 750px;
  background: var(--navy-950);
}

.story-image {
  position: relative;
  min-height: 650px;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(7, 27, 50, 0.55));
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.image-badge strong {
  font-family: var(--font-display);
  font-size: 14px;
}

.image-badge span {
  color: var(--muted);
  font-size: 11px;
}

.story-copy {
  padding: 90px max(48px, calc((100vw - 1180px) / 2));
  padding-left: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.story-copy h2 {
  color: var(--white);
}

.story-lead {
  max-width: 600px;
  margin: 25px 0 31px;
  color: #b9cddd;
  font-size: 17px;
}

.value-list {
  margin-bottom: 32px;
}

.value-list > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.value-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.value-list > div > span {
  padding-top: 2px;
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 800;
}

.value-list p {
  margin: 0;
  color: #afc3d4;
  font-size: 14px;
}

.value-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
}

.story-copy .button {
  align-self: flex-start;
}

.process-section {
  background: var(--white);
}

.centered-heading {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  margin-inline: auto;
}

.centered-heading > p {
  max-width: 650px;
  margin: 20px auto 0;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 54px;
  border-top: 1px dashed #b7ccd9;
}

.process-grid article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-visual {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--surface);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.process-visual svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange-500);
  border: 4px solid var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 20px;
}

.process-grid p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.intro-section {
  padding-block: 100px;
  background: var(--surface);
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 74px;
}

.video-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.video-card > img,
.video-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border: 0;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 22, 41, 0.72), transparent 65%);
}

.video-overlay {
  position: absolute;
  z-index: 2;
  left: 27px;
  right: 27px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.play-button {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.play-button span {
  margin-left: 3px;
}

.video-overlay p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.video-overlay strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.video-overlay p span {
  color: #c6d8e6;
  font-size: 12px;
}

.intro-copy p {
  margin: 23px 0;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: #344759;
  font-weight: 600;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 11px;
}

.area-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(35, 185, 209, 0.18), transparent 34%),
    linear-gradient(135deg, #0b2b50, #071b32);
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: center;
  gap: 90px;
}

.area-layout h2 {
  color: var(--white);
}

.area-layout > div > p {
  max-width: 690px;
  margin: 22px 0 30px;
  color: #bdd0de;
  font-size: 17px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-tags span {
  padding: 7px 12px;
  color: #d8e8f2;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
}

.area-card {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.area-card-label {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-card h3 {
  margin: 10px 0 10px;
  color: var(--navy-950);
  font-size: 28px;
  line-height: 1.15;
}

.area-card p {
  color: var(--muted);
  font-size: 14px;
}

.area-card .button {
  width: 100%;
  margin: 8px 0 12px;
}

.area-card > a {
  display: block;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.final-cta {
  padding-block: 65px;
  color: var(--white);
  background: linear-gradient(110deg, var(--orange-500), #e95622);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 3px 0 0;
  font-size: clamp(36px, 4vw, 52px);
}

.final-actions {
  display: flex;
  gap: 11px;
}

.site-footer {
  color: #aebfd0;
  background: #06182d;
}

.footer-grid {
  padding-block: 72px 55px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 0.8fr;
  gap: 60px;
}

.brand-light strong {
  color: var(--white);
}

.brand-light small {
  color: #7891a8;
}

.footer-brand p {
  max-width: 350px;
  margin: 21px 0 0;
  font-size: 13px;
}

.footer-grid h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-button {
  padding: 8px 0 0;
  color: #69cee0;
  background: transparent;
  border: 0;
  font-weight: 700;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.footer-bottom a {
  color: #d9e6ef;
}

.footer-legal {
  display: flex;
  gap: 17px;
}

.floating-concierge {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  padding: 9px 15px 9px 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(4, 24, 44, 0.3);
}

.floating-icon {
  position: relative;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
}

.floating-icon img {
  width: 37px;
  height: 37px;
  object-fit: contain;
}

.floating-icon i {
  position: absolute;
  right: -1px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border: 2px solid var(--navy-900);
  border-radius: 50%;
}

.floating-concierge > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.floating-concierge strong {
  font-size: 12px;
}

.floating-concierge small {
  color: #9fc0d8;
  font-size: 10px;
}

.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr min(630px, 100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  background: rgba(3, 16, 31, 0.72);
  backdrop-filter: blur(7px);
}

.concierge-panel {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f6f9fb;
  box-shadow: -20px 0 60px rgba(3, 18, 34, 0.25);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.modal.is-open .concierge-panel {
  transform: translateX(0);
}

.concierge-header {
  min-height: 79px;
  padding: 15px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.icon-button {
  width: 40px;
  height: 40px;
  margin-left: auto;
  display: grid;
  place-items: center;
  color: #4c5e70;
  background: #eef3f6;
  border: 0;
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
}

.progress-wrap {
  padding: 15px 23px 13px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.progress-meta {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  background: #e7edf2;
  border-radius: 999px;
}

.progress-track span {
  width: 20%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  border-radius: inherit;
  transition: width 0.28s ease;
}

#service-form {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-scroll {
  min-height: 0;
  flex: 1;
  padding: 25px 25px 35px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.assistant-message {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 10px;
}

.assistant-message img {
  width: 31px;
  height: 31px;
}

.assistant-message p {
  max-width: 470px;
  margin: 0;
  padding: 11px 14px;
  color: #3b4c5f;
  background: var(--white);
  border: 1px solid #e2e9ef;
  border-radius: 4px 14px 14px 14px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 6px 18px rgba(11, 39, 72, 0.05);
}

.form-step {
  display: none;
  animation: step-in 0.24s ease;
}

.form-step.is-active {
  display: block;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.service-choices {
  grid-template-columns: 1fr 1fr;
}

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-choices label {
  min-height: 83px;
  padding: 13px;
  display: grid;
  grid-template-columns: 39px 1fr;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #dce6ed;
  border-radius: 13px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.service-choices label:hover,
.choice-grid label:has(input:checked) {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 2px rgba(22, 142, 188, 0.1);
}

.choice-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 17px;
  font-weight: 800;
}

.choice-grid label > span:last-child {
  display: flex;
  flex-direction: column;
}

.choice-grid strong {
  color: var(--navy-950);
  font-size: 13px;
}

.choice-grid small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.field-group {
  margin-bottom: 20px;
}

.field-group > label,
.field-label {
  margin-bottom: 7px;
  display: block;
  color: #273a4f;
  font-size: 12px;
  font-weight: 700;
}

.field-group label > span:not(.optional) {
  color: var(--orange-500);
}

.optional {
  color: #8593a0;
  font-weight: 400;
}

input:not([type="radio"]):not([type="checkbox"]),
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d4e0e8;
  border-radius: 11px;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

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

input:not([type="radio"]):not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(22, 142, 188, 0.1);
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.urgency-choices {
  grid-template-columns: 1fr 1fr;
}

.urgency-choices label {
  min-height: 66px;
  padding: 11px 12px;
  background: var(--white);
  border: 1px solid #dce6ed;
  border-radius: 12px;
}

.field-hint {
  margin-top: 6px;
  display: block;
  color: #7a8997;
  font-size: 10px;
}

.field-error,
.submit-error {
  min-height: 0;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 11px;
  font-weight: 600;
}

.field-error:empty,
.submit-error:empty {
  display: none;
}

.safety-note {
  padding: 12px 14px;
  color: #69430b;
  background: #fff8e8;
  border: 1px solid #f4ddb0;
  border-radius: 11px;
  font-size: 11px;
  line-height: 1.5;
}

.safety-note strong {
  display: block;
  color: #8a4e00;
}

.slot-wrap {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.slot-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.slot-options label {
  cursor: pointer;
}

.slot-options input {
  position: absolute;
  opacity: 0;
}

.slot-options span {
  min-height: 39px;
  display: grid;
  place-items: center;
  color: #38516a;
  background: #f2f6f8;
  border: 1px solid #dbe5eb;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

.slot-options input:checked + span {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.inline-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-options label {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid #dbe5eb;
  border-radius: 10px;
  font-size: 11px;
  cursor: pointer;
}

.review-card {
  padding: 20px;
  margin-bottom: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.review-card h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.review-card dl {
  margin: 0;
}

.review-card dl div {
  padding: 9px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  border-top: 1px solid #edf1f4;
  font-size: 11px;
}

.review-card dt {
  color: var(--muted);
}

.review-card dd {
  margin: 0;
  color: #26394d;
  font-weight: 600;
}

.consent-box {
  padding: 13px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: #526173;
  background: #eef4f7;
  border-radius: 11px;
  font-size: 10px;
  line-height: 1.5;
  cursor: pointer;
}

.consent-box input {
  margin-top: 2px;
}

.submit-note {
  padding: 13px;
  margin-top: 15px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  background: #eaf7f4;
  border: 1px solid #c9e9df;
  border-radius: 11px;
}

.submit-note p {
  margin: 0;
  color: #42655c;
  font-size: 10px;
}

.submit-note strong {
  display: block;
  color: #204e43;
  font-size: 11px;
}

.concierge-footer {
  min-height: 78px;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.concierge-footer .button {
  min-width: 120px;
  min-height: 48px;
}

.concierge-footer .button-subtle {
  margin-right: auto;
}

.success-step {
  padding: 25px 12px 20px;
  text-align: center;
}

.success-check {
  width: 70px;
  height: 70px;
  margin: 0 auto 19px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 8px solid #dff6ed;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 26px;
  box-sizing: content-box;
}

.success-step h2 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 34px;
}

.success-step > p {
  max-width: 430px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 14px;
}

.confirmation-card {
  max-width: 340px;
  padding: 13px;
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 10px;
}

.confirmation-card strong {
  color: var(--navy-900);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.safety-warning {
  max-width: 460px;
  padding: 14px;
  margin: 0 auto 18px;
  color: #7a271a;
  background: #fff0ed;
  border: 1px solid #f7c7bf;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .shell {
    width: min(100% - 36px, 960px);
  }

  .main-navigation {
    gap: 18px;
  }

  .main-navigation a:nth-child(3) {
    display: none;
  }

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

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

  .hero-proof {
    gap: 12px;
  }

  .story-copy {
    padding: 70px 45px;
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .emergency-inner {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-button {
    display: block;
  }

  .main-navigation {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation a,
  .main-navigation button {
    padding: 12px 9px;
    text-align: left;
  }

  .main-navigation a:nth-child(3) {
    display: block;
  }

  .header-call {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 25, 47, 0.97), rgba(5, 25, 47, 0.75)),
      linear-gradient(0deg, rgba(4, 22, 41, 0.78), transparent);
  }

  .hero-layout {
    padding-block: 72px 44px;
    grid-template-columns: 1fr;
  }

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

  .concierge-preview {
    max-width: 620px;
    justify-self: start;
    transform: none;
  }

  .quick-options {
    grid-template-columns: repeat(4, 1fr);
  }

  .quick-options button {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:first-child {
    padding-left: 24px;
  }

  .split-heading,
  .intro-layout,
  .area-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 550px;
  }

  .story-copy {
    padding: 75px max(24px, calc((100vw - 750px) / 2));
  }

  .process-grid {
    gap: 22px;
  }

  .process-grid::before {
    display: none;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-credentials {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 560px);
  }

  .emergency-inner {
    min-height: 40px;
    font-size: 10px;
  }

  .emergency-inner a {
    margin-left: auto;
  }

  #emergency-message {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .header-call {
    display: none;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-layout {
    padding-top: 57px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 63px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-bottom {
    min-height: 64px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .quick-options {
    grid-template-columns: 1fr 1fr;
  }

  .quick-options button {
    flex-direction: row;
    align-items: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 88px;
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:first-child {
    padding-left: 4px;
  }

  .section,
  .intro-section {
    padding-block: 74px;
  }

  .section-heading h2,
  .story-copy h2,
  .area-layout h2,
  .intro-copy h2 {
    font-size: 38px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 265px;
  }

  .story-image {
    min-height: 430px;
  }

  .story-image::after {
    background: linear-gradient(0deg, rgba(7, 27, 50, 0.34), transparent 50%);
  }

  .image-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .story-copy {
    padding: 70px 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .video-card,
  .video-card > img,
  .video-card iframe {
    min-height: 350px;
  }

  .area-card {
    padding: 25px;
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-legal {
    gap: 15px;
  }

  .floating-concierge {
    right: 14px;
    bottom: 14px;
  }

  .modal {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    display: none;
  }

  .concierge-panel {
    width: 100%;
  }

  .form-scroll {
    padding: 20px 15px 30px;
  }

  .service-choices,
  .urgency-choices,
  .two-fields {
    grid-template-columns: 1fr;
  }

  .service-choices label {
    min-height: 70px;
  }

  .slot-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-card dl div {
    grid-template-columns: 95px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Marko intro video (9:16 portrait) ===== */
.video-card--portrait{display:flex;align-items:center;justify-content:center;background:#06182c;padding:18px;min-height:440px}
.video-card--portrait::after{display:none}
.intro-video-el{height:min(72vh,560px);width:auto;max-width:100%;aspect-ratio:9/16;object-fit:contain;border-radius:18px;background:#000;box-shadow:0 18px 40px -20px rgba(0,0,0,.6)}
@media (max-width:720px){.intro-video-el{height:auto;width:100%;max-width:330px}}
