:root {
  --v2-ink: #071b2d;
  --v2-blue: #087fc1;
  --v2-blue-bright: #13a8dc;
  --v2-red: #e8493f;
  --v2-green: #4aa541;
  --v2-paper: #f5f7f8;
  --v2-soft-blue: #eaf6fb;
  --v2-line: #dce5e9;
  --v2-shadow: 0 30px 80px rgba(7, 27, 45, .13);
}

.home-modern {
  overflow-x: hidden;
  color: #263b4a;
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.home-modern .container {
  width: min(1240px, calc(100% - 56px));
}

.v2-topbar {
  position: relative;
  z-index: 102;
  color: rgba(255, 255, 255, .78);
  background: var(--v2-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .045em;
}

.v2-topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-topbar-location,
.v2-topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.v2-topbar-location i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--v2-blue-bright);
}

.v2-topbar a {
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
}

.v2-header {
  top: 0;
  border-bottom: 1px solid rgba(7, 27, 45, .08);
  background: rgba(255, 255, 255, .92);
  box-shadow: none;
  backdrop-filter: saturate(160%) blur(18px);
  transition: box-shadow .3s ease, background-color .3s ease;
}

.v2-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 35px rgba(7, 27, 45, .08);
}

.v2-nav-wrap {
  min-height: 90px;
  gap: 26px;
}

.v2-brand {
  width: 320px;
  margin-right: auto;
}

.v2-brand img {
  width: 320px;
  height: auto;
}

.v2-main-nav {
  gap: 24px;
}

.v2-main-nav a {
  position: relative;
  padding: 34px 0;
  color: #263d4f;
  font-size: 13px;
  font-weight: 740;
}

.v2-main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--v2-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.v2-main-nav a:hover::after,
.v2-main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.v2-quote-button {
  gap: 14px;
  min-width: 152px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0790d1, #0878b7);
  box-shadow: 0 0 0 0 rgba(8, 127, 193, .35), 0 10px 30px rgba(8, 127, 193, .22);
  animation: v2-quote-pulse 2.6s ease-in-out infinite;
}

.v2-quote-button i {
  font-size: 17px;
  font-style: normal;
}

@keyframes v2-quote-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(8, 127, 193, .28), 0 10px 30px rgba(8, 127, 193, .22); }
  48% { box-shadow: 0 0 0 8px rgba(8, 127, 193, 0), 0 14px 36px rgba(8, 127, 193, .32); }
}

.v2-hero {
  position: relative;
  min-height: calc(100vh - 124px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(28, 178, 220, .1), transparent 28%),
    linear-gradient(145deg, #fff 0%, #f7f9fa 55%, #eef4f6 100%);
}

.v2-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -250px;
  bottom: -250px;
  border: 1px solid rgba(8, 127, 193, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(8, 127, 193, .035), 0 0 0 150px rgba(8, 127, 193, .025);
}

.v2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 6vw, 92px);
  padding: 62px 0 84px;
}

.v2-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.v2-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid var(--v2-line);
  border-radius: 999px;
  color: #4d6270;
  background: rgba(255, 255, 255, .8);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.v2-status i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.v2-status i::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid currentColor;
  border-radius: 50%;
  animation: v2-status-pulse 1.55s ease-out infinite;
}

.v2-status-green i { color: var(--v2-green); background: var(--v2-green); }
.v2-status-red i { color: var(--v2-red); background: var(--v2-red); }
.v2-status-red i::after { animation-delay: .55s; }

@keyframes v2-status-pulse {
  0% { opacity: .75; transform: scale(.6); }
  80%, 100% { opacity: 0; transform: scale(1.55); }
}

.v2-kicker,
.v2-eyebrow {
  display: inline-block;
  margin: 0 0 17px;
  color: var(--v2-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.v2-hero h1 {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(58px, 6.1vw, 88px);
  font-weight: 760;
  letter-spacing: -.066em;
  line-height: .94;
}

.v2-hero h1 span {
  position: relative;
  color: transparent;
  background: linear-gradient(90deg, #087fc1 5%, #18a7ce 55%, #3aa56a 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.v2-hero-lead {
  max-width: 590px;
  margin: 29px 0 32px;
  color: #506573;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
}

.v2-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.v2-primary-button,
.v2-dark-button,
.v2-form-submit {
  gap: 25px;
  min-height: 56px;
  padding: 16px 23px;
  border-radius: 999px;
  color: #fff;
  background: var(--v2-ink);
  box-shadow: 0 16px 36px rgba(7, 27, 45, .18);
}

.v2-primary-button span,
.v2-dark-button span,
.v2-form-submit span {
  font-size: 18px;
}

.v2-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--v2-ink);
}

.v2-phone-link svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--v2-line);
  border-radius: 50%;
  fill: none;
  stroke: var(--v2-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.v2-phone-link small,
.v2-phone-link strong {
  display: block;
  line-height: 1.2;
}

.v2-phone-link small {
  margin-bottom: 5px;
  color: #738590;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.v2-phone-link strong {
  font-size: 14px;
  letter-spacing: .02em;
}

.v2-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
}

.v2-hero-meta > i {
  width: 1px;
  height: 34px;
  background: var(--v2-line);
}

.v2-hero-meta strong,
.v2-hero-meta small {
  display: block;
  line-height: 1.25;
}

.v2-hero-meta strong {
  color: var(--v2-ink);
  font-size: 15px;
}

.v2-hero-meta small {
  margin-top: 3px;
  color: #7b8b95;
  font-size: 10px;
}

.v2-hero-visual {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: visible;
}

.v2-hero-visual > img {
  width: 100%;
  height: 590px;
  border-radius: 32px;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: var(--v2-shadow);
}

.v2-hero-visual::before {
  content: "";
  position: absolute;
  inset: -13px 48px 23px -13px;
  z-index: -1;
  border-radius: 36px;
  background: linear-gradient(145deg, #d7edf4, #f6ddda);
}

.v2-hero-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 17px;
  color: #fff;
  background: rgba(4, 19, 31, .68);
  backdrop-filter: blur(15px);
}

.v2-hero-visual figcaption span {
  color: rgba(255, 255, 255, .67);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.v2-hero-visual figcaption strong {
  font-size: 12px;
  text-align: right;
}

.v2-hero-card {
  position: absolute;
  top: 40px;
  left: -35px;
  width: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 20px;
  color: var(--v2-ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 50px rgba(7, 27, 45, .16);
  backdrop-filter: blur(16px);
}

.v2-hero-card span,
.v2-hero-card strong {
  display: block;
  line-height: 1.2;
}

.v2-hero-card span {
  color: #778995;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.v2-hero-card svg {
  width: 34px;
  margin: 13px 0;
  fill: none;
  stroke: var(--v2-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.v2-hero-card strong {
  font-size: 12px;
}

.v2-scroll-hint {
  position: absolute;
  bottom: 19px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #80919a;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.v2-scroll-hint i {
  position: relative;
  width: 1px;
  height: 24px;
  overflow: hidden;
  background: #c2cdd2;
}

.v2-scroll-hint i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--v2-blue);
  transform: translateY(-100%);
  animation: v2-scroll 1.8s ease-in-out infinite;
}

@keyframes v2-scroll {
  45%, 100% { transform: translateY(100%); }
}

.v2-section {
  padding: 116px 0;
}

.v2-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.v2-heading h2,
.v2-thermo-copy h2,
.v2-story-copy h2,
.v2-contact-copy h2,
.v2-local h2 {
  margin: 0;
  color: var(--v2-ink);
  font-size: clamp(39px, 4.5vw, 62px);
  font-weight: 745;
  letter-spacing: -.052em;
  line-height: 1.02;
}

.v2-heading > p {
  margin: 0 0 4px;
  color: #687c89;
  font-size: 15px;
  line-height: 1.7;
}

.v2-service-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.v2-service-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 23px;
  background: #fff;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.v2-service-card:hover {
  border-color: #c7d7de;
  box-shadow: 0 24px 58px rgba(7, 27, 45, .1);
  transform: translateY(-7px);
}

.v2-service-icon {
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  border-radius: 19px;
}

.v2-service-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.v2-blue { color: #087fc1; background: #eaf6fb; }
.v2-green { color: #479f42; background: #edf7ec; }
.v2-red { color: #df4d43; background: #fff0ee; }
.v2-cyan { color: #0d92b9; background: #eaf8fa; }
.v2-mix { color: #188dae; background: linear-gradient(135deg, #e8f7fa, #f4f7ed); }

.v2-service-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #a7b5bd;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
}

.v2-new-label {
  margin: 20px 0 -11px;
  color: var(--v2-green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.v2-service-card h3 {
  min-height: 54px;
  margin: 25px 0 12px;
  color: var(--v2-ink);
  font-size: 21px;
  letter-spacing: -.025em;
  line-height: 1.16;
}

.v2-service-card p {
  margin: 0 0 25px;
  color: #687c89;
  font-size: 13px;
  line-height: 1.62;
}

.v2-service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e7edef;
  color: var(--v2-ink);
  font-size: 12px;
  font-weight: 850;
}

.v2-service-card > a span {
  color: var(--v2-blue);
  font-size: 17px;
  transition: transform .2s ease;
}

.v2-service-card:hover > a span { transform: translateX(4px); }

.v2-projects {
  color: #fff;
  background: var(--v2-ink);
}

.v2-heading-light h2 { color: #fff; }
.v2-heading-light > p { color: rgba(255, 255, 255, .59); }
.v2-heading-light .v2-eyebrow { color: #55c7e7; }

.v2-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 310px 310px 300px;
  gap: 16px;
}

.v2-project {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #0d2a40;
}

.v2-project-large {
  grid-column: span 2;
  grid-row: span 2;
}

.v2-project-wide { grid-column: span 3; }

.v2-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}

.v2-project-large img { object-position: center; }
.v2-project:nth-child(3) img { object-position: center 55%; }
.v2-project-wide img { object-position: center 55%; }
.v2-project:hover img { transform: scale(1.035); }

.v2-project::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(2, 13, 22, .84));
  pointer-events: none;
}

.v2-project figcaption {
  position: absolute;
  right: 25px;
  bottom: 22px;
  left: 25px;
  z-index: 1;
}

.v2-project figcaption span,
.v2-project figcaption strong {
  display: block;
}

.v2-project figcaption span {
  margin-bottom: 6px;
  color: #78d4ea;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.v2-project figcaption strong {
  color: #fff;
  font-size: 18px;
}

.v2-thermo {
  background: linear-gradient(140deg, #f3f8f5 0%, #fff 58%, #eef7fa 100%);
}

.v2-thermo-grid,
.v2-story-grid,
.v2-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .87fr) minmax(0, 1.13fr);
  align-items: center;
  gap: clamp(65px, 8vw, 116px);
}

.v2-thermo-visual {
  position: relative;
  max-width: 520px;
  margin: 0;
}

.v2-thermo-visual::before {
  content: "";
  position: absolute;
  inset: -18px 36px 28px -18px;
  z-index: 0;
  border: 1px solid #c9e3d4;
  border-radius: 29px;
}

.v2-thermo-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 610px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: var(--v2-shadow);
}

.v2-thermo-visual figcaption {
  position: absolute;
  right: -24px;
  bottom: 34px;
  z-index: 2;
  min-width: 230px;
  padding: 20px 22px;
  border-radius: 17px;
  color: #fff;
  background: var(--v2-ink);
  box-shadow: 0 18px 45px rgba(7, 27, 45, .22);
}

.v2-thermo-visual figcaption strong,
.v2-thermo-visual figcaption span { display: block; }
.v2-thermo-visual figcaption strong { font-size: 15px; }
.v2-thermo-visual figcaption span { margin-top: 3px; color: rgba(255,255,255,.62); font-size: 11px; }

.v2-thermo-copy h2 { max-width: 650px; }

.v2-lead {
  margin: 25px 0 0;
  color: #5d7180;
  font-size: 17px;
  line-height: 1.75;
}

.v2-checks {
  display: grid;
  gap: 0;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.v2-checks li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--v2-line);
}

.v2-checks li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--v2-green);
  font-size: 13px;
  font-weight: 900;
}

.v2-checks strong,
.v2-checks small { display: block; }
.v2-checks strong { color: var(--v2-ink); font-size: 14px; }
.v2-checks small { margin-top: 4px; color: #738590; font-size: 12px; line-height: 1.5; }

.v2-pricing { background: var(--v2-paper); }

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

.v2-price-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--v2-line);
  border-radius: 23px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.v2-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(7, 27, 45, .08);
}

.v2-price-card > span {
  color: var(--v2-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.v2-price-card h3 {
  min-height: 52px;
  margin: 11px 0 29px;
  color: var(--v2-ink);
  font-size: 19px;
  line-height: 1.25;
}

.v2-price-card .v2-from {
  margin: 0 0 4px;
  color: #738590;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v2-price-card > strong {
  color: var(--v2-ink);
  font-size: 34px;
  letter-spacing: -.045em;
  line-height: 1;
}

.v2-price-card > strong small {
  font-size: 10px;
  letter-spacing: .04em;
}

.v2-price-card > p:not(.v2-from) {
  margin: 18px 0 25px;
  color: #758793;
  font-size: 12px;
  line-height: 1.55;
}

.v2-price-card > a {
  margin-top: auto;
  color: var(--v2-blue);
  font-size: 11px;
  font-weight: 850;
}

.v2-price-disclaimer {
  margin: 19px 0 0;
  color: #7b8c96;
  font-size: 11px;
  text-align: center;
}

.v2-story { background: #fff; }

.v2-story-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }

.v2-story-visual {
  position: relative;
  min-height: 660px;
}

.v2-story-visual img {
  width: 100%;
  height: 660px;
  border-radius: 27px;
  object-fit: cover;
  box-shadow: var(--v2-shadow);
}

.v2-story-visual > div {
  position: absolute;
  right: -32px;
  bottom: 30px;
  left: 32px;
  padding: 25px 27px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(8,127,193,.96), rgba(8,86,135,.96));
  box-shadow: 0 20px 55px rgba(8, 105, 160, .26);
}

.v2-story-visual span,
.v2-story-visual strong,
.v2-story-visual small { display: block; }
.v2-story-visual span { color: rgba(255,255,255,.66); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.v2-story-visual strong { margin: 4px 0; font-size: 27px; letter-spacing: -.03em; }
.v2-story-visual small { font-size: 12px; }

.v2-story-copy > p {
  margin: 20px 0;
  color: #5e7280;
  font-size: 15px;
  line-height: 1.75;
}

.v2-story-copy > p strong { color: var(--v2-ink); }

.v2-story-copy blockquote {
  margin: 29px 0 0;
  padding: 21px 0 21px 24px;
  border: 0;
  border-left: 3px solid var(--v2-green);
  border-radius: 0;
  color: var(--v2-ink);
  background: transparent;
  font-size: 19px;
  line-height: 1.55;
  box-shadow: none;
}

.v2-brands { background: var(--v2-paper); }

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

.v2-brand-logo {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--v2-line);
  border-radius: 17px;
  color: var(--v2-ink);
  background: #fff;
  transition: border-color .25s ease, transform .25s ease;
}

.v2-brand-logo:hover { border-color: #becdd4; transform: translateY(-3px); }

.v2-brand-note {
  margin: 18px 0 0;
  color: #7a8a94;
  font-size: 10px;
  text-align: right;
}

.v2-local {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(112deg, #082039 0%, #0c4c73 58%, #087fa9 100%);
}

.v2-local-grid {
  display: grid;
  grid-template-columns: .8fr 1fr auto;
  align-items: center;
  gap: 62px;
}

.v2-local .v2-eyebrow { color: #76d6ec; }
.v2-local h2 { color: #fff; font-size: clamp(37px, 4vw, 54px); }
.v2-local p { margin: 0; color: rgba(255, 255, 255, .67); font-size: 14px; line-height: 1.75; }
.v2-local a { display: inline-flex; gap: 22px; padding: 14px 19px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: #fff; font-size: 11px; font-weight: 850; white-space: nowrap; }

.v2-contact {
  color: #fff;
  background: #061827;
}

.v2-contact-grid {
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.02fr);
  align-items: start;
}

.v2-contact-copy h2 { color: #fff; }
.v2-contact-copy > p { max-width: 540px; margin: 24px 0 35px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; }
.v2-contact .v2-eyebrow { color: #5cc8e7; }

.v2-contact-list { display: grid; gap: 0; }
.v2-contact-list > a,
.v2-contact-list > div { display: grid; grid-template-columns: 43px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.v2-contact-icon { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; }
.v2-contact-icon svg { width: 19px; height: 19px; fill: none; stroke: #63c8e5; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.v2-contact-list small,
.v2-contact-list strong { display: block; }
.v2-contact-list small { margin-bottom: 3px; color: rgba(255,255,255,.42); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.v2-contact-list strong { color: #fff; font-size: 14px; line-height: 1.45; }

.v2-contact-form {
  gap: 15px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  color: var(--v2-ink);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0,0,0,.26);
}

.v2-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--v2-line);
}

.v2-form-heading span { color: var(--v2-blue); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.v2-form-heading strong { color: var(--v2-ink); font-size: 13px; }
.v2-contact-form label { font-size: 11px; }
.v2-contact-form input,
.v2-contact-form select,
.v2-contact-form textarea { padding: 13px 14px; border-color: #d5e0e5; border-radius: 10px; background: #fbfcfc; font-size: 13px; }
.v2-form-submit { width: 100%; justify-content: space-between; border-radius: 12px; background: linear-gradient(135deg, #087fc1, #096da5); }
.v2-contact-form > small { color: #7a8b95; font-size: 9px; line-height: 1.5; }

.v2-floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--v2-green);
  box-shadow: 0 15px 40px rgba(51, 139, 62, .35);
  animation: v2-call-pulse 2.3s ease-in-out infinite;
}

.v2-floating-call svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

@keyframes v2-call-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 15px 40px rgba(51,139,62,.35), 0 0 0 0 rgba(74,165,65,.38); }
  50% { transform: scale(1.055); box-shadow: 0 18px 45px rgba(51,139,62,.45), 0 0 0 10px rgba(74,165,65,0); }
}

.v2-footer {
  padding: 62px 0 20px;
  color: rgba(255,255,255,.57);
  background: #03111c;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr .9fr;
  gap: 46px;
}

.v2-footer-brand img {
  width: 260px;
  height: auto;
  margin-bottom: 22px;
  padding: 9px 11px;
  border-radius: 9px;
  background: #fff;
}

.v2-footer p { margin: 8px 0; font-size: 11px; line-height: 1.75; }
.v2-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.78); font-size: 11px; }
.v2-footer-title { margin-top: 2px !important; color: #fff; font-size: 12px !important; font-weight: 850; }
.v2-copyright { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-service-card:nth-child(2),
.v2-price-card:nth-child(2),
.v2-brand-logo:nth-child(2) { transition-delay: .07s; }
.v2-service-card:nth-child(3),
.v2-price-card:nth-child(3),
.v2-brand-logo:nth-child(3) { transition-delay: .14s; }
.v2-service-card:nth-child(4),
.v2-price-card:nth-child(4),
.v2-brand-logo:nth-child(4) { transition-delay: .21s; }
.v2-service-card:nth-child(5) { transition-delay: .28s; }

@media (max-width: 1120px) {
  .v2-brand, .v2-brand img { width: 245px; }
  .v2-main-nav { gap: 16px; }
  .v2-main-nav a { font-size: 12px; }
  .v2-quote-button { min-width: auto; padding-inline: 16px; }
  .v2-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr); gap: 50px; }
  .v2-service-rail { grid-template-columns: repeat(3, 1fr); }
  .v2-service-card:nth-child(4), .v2-service-card:nth-child(5) { min-height: 320px; }
  .v2-contact-grid { grid-template-columns: .85fr 1.15fr; gap: 65px; }
}

@media (max-width: 940px) {
  .home-modern .container { width: min(100% - 40px, 760px); }
  .v2-hours { display: none; }
  .v2-nav-wrap { min-height: 75px; }
  .v2-brand img { width: 255px; }
  .v2-brand { width: 255px; }
  .v2-menu-toggle { display: grid; place-items: center; order: 3; }
  .menu-lines { position: relative; width: 22px; height: 16px; display: block; }
  .menu-lines i { position: absolute; left: 0; width: 22px; height: 2px; border-radius: 2px; background: var(--v2-ink); transition: transform .2s ease, top .2s ease; }
  .menu-lines i:first-child { top: 3px; }
  .menu-lines i:last-child { top: 11px; }
  .v2-menu-toggle[aria-expanded="true"] .menu-lines i:first-child { top: 7px; transform: rotate(45deg); }
  .v2-menu-toggle[aria-expanded="true"] .menu-lines i:last-child { top: 7px; transform: rotate(-45deg); }
  .v2-main-nav {
    position: absolute;
    top: 75px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--v2-line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 25px 60px rgba(7,27,45,.16);
  }
  .v2-main-nav.open { display: grid; }
  .v2-main-nav a { padding: 12px 13px; border-radius: 10px; font-size: 14px; }
  .v2-main-nav a::after { display: none; }
  .v2-main-nav a:hover { background: var(--v2-paper); }
  .v2-header .desktop-cta { margin-left: auto; }
  .v2-hero { min-height: auto; }
  .v2-hero-grid { grid-template-columns: 1fr; gap: 55px; padding: 72px 0 92px; }
  .v2-hero-copy { max-width: 680px; }
  .v2-hero-visual { min-height: 560px; }
  .v2-hero-visual > img { height: 560px; }
  .v2-heading { grid-template-columns: 1fr; gap: 20px; }
  .v2-service-rail { grid-template-columns: repeat(2, 1fr); }
  .v2-project-grid { grid-template-rows: 260px 260px 270px; }
  .v2-thermo-grid, .v2-story-grid, .v2-contact-grid { grid-template-columns: 1fr; }
  .v2-thermo-visual { width: min(100%, 540px); margin-inline: auto; }
  .v2-story-visual { min-height: 520px; }
  .v2-story-visual img { height: 520px; }
  .v2-price-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-brand-grid { grid-template-columns: repeat(3, 1fr); }
  .v2-local-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .v2-local-grid > a { grid-column: 2; justify-self: start; }
  .v2-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .v2-footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 72px; }
  .home-modern .container { width: min(100% - 30px, 540px); }
  .v2-topbar-inner { min-height: 32px; }
  .v2-topbar-location { font-size: 9px; }
  .v2-topbar a { font-size: 11px; }
  .v2-nav-wrap { min-height: 70px; gap: 8px; }
  .v2-brand img { width: 205px; }
  .v2-brand { width: 205px; }
  .v2-header .desktop-cta { display: none; }
  .v2-main-nav { top: 70px; right: 15px; left: 15px; }
  .v2-hero-grid { gap: 42px; padding: 54px 0 76px; }
  .v2-status { font-size: 8px; }
  .v2-kicker, .v2-eyebrow { font-size: 9px; }
  .v2-hero h1 { font-size: clamp(49px, 15.4vw, 68px); line-height: .96; }
  .v2-hero-lead { margin: 23px 0 28px; font-size: 16px; }
  .v2-hero-actions { align-items: flex-start; gap: 19px; }
  .v2-primary-button { width: 100%; justify-content: space-between; }
  .v2-hero-meta { gap: 12px; margin-top: 33px; }
  .v2-hero-meta > i { height: 29px; }
  .v2-hero-meta strong { font-size: 13px; }
  .v2-hero-meta small { font-size: 8px; }
  .v2-hero-visual { min-height: 430px; }
  .v2-hero-visual > img { height: 430px; border-radius: 24px; }
  .v2-hero-visual::before { inset: -9px 25px 20px -9px; border-radius: 28px; }
  .v2-hero-card { top: 22px; left: -7px; width: 112px; padding: 14px; }
  .v2-hero-visual figcaption { right: 11px; bottom: 11px; left: 11px; display: block; padding: 14px; }
  .v2-hero-visual figcaption strong { display: block; margin-top: 3px; text-align: left; }
  .v2-scroll-hint { display: none; }
  .v2-section { padding: 82px 0; }
  .v2-heading { margin-bottom: 35px; }
  .v2-heading h2, .v2-thermo-copy h2, .v2-story-copy h2, .v2-contact-copy h2, .v2-local h2 { font-size: 39px; }
  .v2-heading > p { font-size: 14px; }
  .v2-service-rail {
    width: calc(100% + 15px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(275px, 82vw);
    gap: 12px;
    overflow-x: auto;
    padding: 2px 15px 25px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .v2-service-rail::-webkit-scrollbar { display: none; }
  .v2-service-card { min-height: 335px; scroll-snap-align: start; }
  .v2-project-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
  .v2-project, .v2-project-large, .v2-project-wide { grid-column: auto; grid-row: auto; height: 320px; border-radius: 19px; }
  .v2-project-large { height: 410px; }
  .v2-project:nth-child(3) { height: 390px; }
  .v2-thermo-grid, .v2-story-grid, .v2-contact-grid { gap: 55px; }
  .v2-thermo-visual img { height: 520px; }
  .v2-thermo-visual figcaption { right: -5px; bottom: 20px; min-width: 210px; }
  .v2-price-grid { grid-template-columns: 1fr; }
  .v2-price-card { min-height: 320px; }
  .v2-story-visual { min-height: 450px; }
  .v2-story-visual img { height: 450px; }
  .v2-story-visual > div { right: -5px; bottom: 20px; left: 20px; }
  .v2-story-copy > p { font-size: 14px; }
  .v2-brand-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .v2-brand-logo { min-height: 94px; padding: 13px; transform: none !important; }
  .v2-brand-logo strong { font-size: 15px; }
  .brand-mitsubishi strong { font-size: 10px; }
  .mitsubishi-mark { transform: scale(.82); }
  .v2-local { padding: 64px 0; }
  .v2-local-grid { grid-template-columns: 1fr; }
  .v2-local-grid > a { grid-column: auto; }
  .v2-contact-form { grid-template-columns: 1fr; padding: 24px; }
  .v2-contact-form .full { grid-column: 1; }
  .v2-form-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .v2-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .v2-footer-grid > div:last-child { grid-column: auto; }
  .v2-footer-brand img { width: 245px; }
  .v2-copyright { display: grid; gap: 7px; }
  .v2-floating-call { right: 15px; bottom: 15px; width: 54px; height: 54px; }
}

@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; }
}
