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

:root {
  --ink: #071216;
  --ink-2: #10262c;
  --surface: #f3f5f1;
  --surface-2: #e9eeea;
  --white: #ffffff;
  --muted: #64767a;
  --line: rgba(7, 18, 22, 0.12);
  --teal: #19cbc3;
  --teal-2: #0aa59f;
  --teal-3: #08736f;
  --teal-soft: #dff9f6;
  --shadow: 0 22px 70px rgba(7, 18, 22, 0.14);
  --shadow-sm: 0 12px 32px rgba(7, 18, 22, 0.10);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --header-height: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(25, 203, 195, .25); }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-3);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.035em;
  line-height: 1.06;
}
h1 { font-size: clamp(3rem, 6.8vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.55rem); }
h3 { font-size: 1.28rem; line-height: 1.25; }
p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn > svg { width: 18px; height: 18px; flex: 0 0 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--ink);
  background: var(--teal);
  box-shadow: 0 10px 30px rgba(25, 203, 195, .28);
}
.btn-primary:hover { background: #42e5dc; }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-dark:hover { background: #102b32; }
.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
}
.btn-outline:hover { border-color: var(--teal); background: rgba(25,203,195,.10); }
.btn-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-icon { width: 18px; height: 18px; flex: 0 0 18px; }

.topbar {
  background: #031014;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
}
.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar strong { color: var(--teal); }
.topbar-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-list span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-list svg { width: 16px; height: 16px; flex: 0 0 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(7, 18, 22, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 245px;
  height: var(--header-height);
  overflow: visible;
}
.brand img {
  width: auto;
  height: 108px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.08);
  transform-origin: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  color: rgba(255,255,255,.82);
  font-size: .93rem;
  font-weight: 600;
}
.nav-links a { position: relative; padding: 11px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--teal);
  transition: right .22s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.nav-links a.is-active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  min-height: 48px;
  padding-inline: 18px;
  color: rgba(255,255,255,.92);
}
.header-phone svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  background: transparent;
}
.menu-toggle svg { width: 24px; height: 24px; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(25,203,195,.18), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(25,203,195,.13), transparent 32%),
    linear-gradient(135deg, #061a20 0%, #071216 55%, #021013 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(93,244,233,.09);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 590px; height: 590px; right: -280px; top: -260px; }
.hero::after { width: 420px; height: 420px; left: -245px; bottom: -210px; }
.hero-inner {
  min-height: calc(92vh - var(--header-height));
  padding: 92px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 68px;
}
.hero-copy { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--teal); }
.hero h1 { max-width: 830px; margin-bottom: 24px; }
.hero h1 .accent { color: var(--teal); }
.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.73);
  font-size: clamp(1rem, 1.4vw, 1.19rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, max-content));
  gap: 13px 38px;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 9px; }
.hero-proof svg { width: 17px; height: 17px; color: var(--teal); }

.hero-visual {
  position: relative;
  min-height: 615px;
  border-radius: 42px 42px 120px 42px;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 10px 0 0 44px;
  overflow: hidden;
  border-radius: 38px 38px 112px 38px;
  background: linear-gradient(135deg, #12363d, #07171b);
  box-shadow: 0 34px 80px rgba(0,0,0,.35);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.02);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,16,19,.05), rgba(2,16,19,.38));
}
.hero-logo-float {
  position: absolute;
  z-index: 4;
  width: 250px;
  left: -10px;
  top: 36px;
  padding: 22px 20px 18px;
  border-radius: 24px;
  background: rgba(5,20,24,.86);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(13px);
}
.hero-logo-float img { width: 100%; }
.hero-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(8,27,32,.88);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  color: var(--white);
}
.hero-card strong { display: block; margin-bottom: 2px; font-size: 1.03rem; }
.hero-card span { color: rgba(255,255,255,.65); font-size: .82rem; }
.hero-card-one { right: -20px; top: 90px; padding: 18px 20px; border-radius: 20px; }
.hero-card-two { left: 0; bottom: 28px; padding: 20px 22px; border-radius: 22px; }
.hero-card-two .card-row { display: flex; align-items: center; gap: 14px; }
.hero-card-two .round-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
}
.hero-card-two svg { width: 22px; height: 22px; }
.fabric-dots {
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -42px;
  bottom: -35px;
  opacity: .35;
  background-image: radial-gradient(var(--teal) 1.6px, transparent 1.6px);
  background-size: 13px 13px;
}

.trust-strip {
  position: relative;
  z-index: 8;
  margin-top: -38px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.trust-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 14px;
  color: var(--teal-3);
  background: var(--teal-soft);
}
.trust-icon svg { width: 23px; height: 23px; }
.trust-item strong { display: block; font-size: .96rem; line-height: 1.25; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted); font-size: .79rem; }

.section { padding: 118px 0; }
.section-sm { padding: 86px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-dark p { color: rgba(255,255,255,.68); }
.section-dark .eyebrow { color: var(--teal); }
.section-head {
  max-width: 790px;
  margin-bottom: 54px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { max-width: 670px; font-size: 1.05rem; }
.section-head.center p { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 84px;
}
.about-visual {
  position: relative;
  min-height: 575px;
}
.about-panel {
  position: absolute;
  inset: 0 58px 48px 0;
  border-radius: 36px 36px 115px 36px;
  background:
    linear-gradient(145deg, rgba(25,203,195,.18), transparent 42%),
    #0a242b;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2,16,19,.52));
}
.about-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  padding: 25px;
  border-radius: 26px;
  background: var(--teal);
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; margin-bottom: 7px; font-size: 1.13rem; }
.about-badge p { margin: 0; color: rgba(7,18,22,.76); font-size: .88rem; }
.about-list { display: grid; gap: 14px; margin: 31px 0 36px; }
.about-list-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}
.about-list-item .check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--teal-3);
  background: var(--teal-soft);
}
.about-list-item .check svg { width: 18px; height: 18px; }
.about-list-item strong { display: block; margin-bottom: 2px; }
.about-list-item p { margin: 0; font-size: .9rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: #0d282e;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,16,19,.08) 10%, rgba(2,16,19,.84) 82%),
    linear-gradient(135deg, #0f3b41, #06191d);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}
.service-card-content { position: relative; z-index: 2; }
.service-num { color: var(--teal); font-size: .77rem; font-weight: 700; letter-spacing: .13em; }
.service-card h3 { margin: 9px 0 10px; font-size: 1.55rem; }
.service-card p { margin: 0 0 18px; color: rgba(255,255,255,.69); font-size: .92rem; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; font-size: .9rem; }
.service-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

.process-wrap {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 10%, rgba(25,203,195,.20), transparent 30%),
    linear-gradient(145deg, #092229, #061519);
}
.process-wrap h2 { color: var(--white); }
.process-wrap .section-head p { color: rgba(255,255,255,.64); }

.process-wrap::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  bottom: -270px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-step {
  min-height: 245px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}
.process-step .step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--teal);
  font-weight: 800;
}
.process-step h3 { color: var(--white); }
.process-step p { margin: 0; color: rgba(255,255,255,.62); font-size: .91rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 7px 25px rgba(7,18,22,.05);
}
.why-card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 16px;
  color: var(--teal-3);
  background: var(--teal-soft);
}
.why-card-icon svg { width: 25px; height: 25px; }
.why-card p { margin: 0; font-size: .9rem; }

.area-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf2ee 0%, #f7f8f5 68%);
}
.area-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 80px;
  align-items: center;
}
.coverage-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 38px;
  background: #e6ece7;
  border: 1px solid rgba(7,18,22,.09);
  box-shadow: var(--shadow-sm);
}
.coverage-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(.98);
}
.service-pins {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.service-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  border: 4px solid rgba(255,255,255,.96);
  box-shadow: 0 12px 28px rgba(7,18,22,.24);
  transform: translate(-50%, -100%) rotate(-45deg);
}
.service-pin::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: var(--white);
}
.service-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(25,203,195,.62);
  animation: mapPulse 2s ease-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}
.pin-toronto { left: 56%; top: 62%; }
.pin-mississauga { left: 34%; top: 75%; --pulse-delay: .2s; }
.pin-brampton { left: 27%; top: 57%; --pulse-delay: .45s; }
.pin-vaughan { left: 43%; top: 40%; --pulse-delay: .7s; }
.pin-markham { left: 58%; top: 32%; --pulse-delay: .95s; }
.pin-scarborough { left: 71%; top: 45%; --pulse-delay: 1.2s; }
@keyframes mapPulse {
  0% { opacity: .72; transform: translate(-50%, -50%) rotate(45deg) scale(.38); }
  75%, 100% { opacity: 0; transform: translate(-50%, -50%) rotate(45deg) scale(1.55); }
}
.map-overlay-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: auto;
  top: 24px;
  bottom: auto;
  width: min(245px, calc(100% - 48px));
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,18,22,.12);
  box-shadow: 0 22px 54px rgba(7,18,22,.18);
  backdrop-filter: blur(12px);
}
.map-overlay-card span {
  color: var(--teal-3);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.map-overlay-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.08rem;
}
.map-overlay-card p {
  margin: 5px 0 0;
  color: #52696d;
  font-size: .76rem;
  line-height: 1.35;
  font-weight: 650;
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 34px;
}
.city-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3e5559;
  background: rgba(255,255,255,.65);
  font-size: .84rem;
  font-weight: 600;
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  border: 0;
  text-align: left;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
}
.faq-question svg { width: 21px; height: 21px; flex: 0 0 21px; transition: transform .25s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 24px 23px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.quote-section {
  position: relative;
  color: var(--white);
  background: #06171b;
  overflow: hidden;
}
.quote-section .eyebrow, .page-hero .eyebrow { color: var(--teal); }
.quote-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -200px;
  border-radius: 50%;
  background: rgba(25,203,195,.08);
}
.quote-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  align-items: start;
}
.quote-copy { position: sticky; top: 130px; }
.quote-copy h2 { margin-bottom: 24px; }
.quote-copy > p { color: rgba(255,255,255,.68); }
.contact-details { display: grid; gap: 13px; margin-top: 34px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(255,255,255,.82);
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal);
  background: rgba(255,255,255,.07);
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail small { display: block; color: rgba(255,255,255,.5); }
.quote-form {
  padding: 34px;
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .84rem; font-weight: 700; }
.form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(7,18,22,.15);
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcfa;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus { border-color: var(--teal-2); box-shadow: 0 0 0 4px rgba(25,203,195,.12); }
input[type="file"].form-control {
  min-height: auto;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f5faf8);
}
input[type="file"].form-control::file-selector-button {
  margin-right: 14px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--teal);
  font-weight: 700;
  cursor: pointer;
}
.form-help {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-note { margin: 15px 0 0; font-size: .78rem; }
.form-status { margin: 14px 0 0; min-height: 23px; font-size: .87rem; font-weight: 600; }
.form-status.success { color: #147c56; }
.form-status.error { color: #b12626; }

.page-hero {
  padding: 105px 0 85px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(25,203,195,.18), transparent 29%),
    linear-gradient(135deg, #071f25, #061216 68%);
}
.page-hero-inner { display: grid; grid-template-columns: 1fr .55fr; gap: 60px; align-items: center; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
.page-hero p { max-width: 690px; color: rgba(255,255,255,.69); font-size: 1.05rem; }
.page-hero-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}
.page-hero-visual img { width: 82%; max-height: 260px; object-fit: contain; }

.content-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: start; }
.content-card {
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.content-card h2 { font-size: clamp(2rem, 3.3vw, 3.2rem); }
.sidebar-card {
  position: sticky;
  top: 118px;
  padding: 28px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
}
.sidebar-card p { color: rgba(255,255,255,.65); }
.detail-list { display: grid; gap: 13px; margin: 24px 0; }
.detail-list li { display: flex; gap: 10px; color: #40575b; }
.detail-list svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 4px; color: var(--teal-3); }

.site-footer {
  padding: 76px 0 28px;
  color: rgba(255,255,255,.7);
  background: #031014;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .8fr .8fr;
  gap: 48px;
}
.footer-brand img { width: 255px; max-height: 125px; object-fit: contain; object-position: left; }
.footer-brand p { max-width: 430px; margin-top: 18px; }
.footer-title { color: var(--white); font-size: .92rem; font-weight: 700; margin-bottom: 19px; }
.footer-links { display: grid; gap: 10px; font-size: .9rem; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .79rem;
}

.mobile-cta {
  display: none;
  position: fixed;
  z-index: 900;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 60px;
  padding: 8px;
  gap: 8px;
  border-radius: 18px;
  background: rgba(4,16,20,.94);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 55px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}
.mobile-cta .btn { min-height: 44px; flex: 1; padding-inline: 12px; font-size: .88rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .nav-links { gap: 18px; }
  .nav-actions .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero-visual { min-height: 540px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --header-height: 92px; }
  .topbar-list span:last-child { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: calc(34px + var(--header-height)) 14px auto;
    display: grid;
    gap: 0;
    padding: 15px;
    border-radius: 20px;
    background: #06181d;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a:last-child { border-bottom: 0; }
  .navbar { gap: 12px; }
  .brand { min-width: 180px; }
  .brand img { height: 86px; width: auto; max-width: none; transform: scale(1.06); transform-origin: left center; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-visual { min-height: 520px; max-width: 650px; width: 100%; margin-inline: auto; }
  .hero-card-one { right: 0; }
  .split, .area-grid, .quote-grid, .page-hero-inner, .content-layout { grid-template-columns: 1fr; }
  .about-visual { min-height: 530px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .quote-copy, .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar-inner { justify-content: center; }
  .topbar-inner > span { display: none; }
  .site-header { top: 0; }
  .nav-actions .btn-primary { display: none; }
  .brand { min-width: 140px; }
  .brand img { height: 70px; width: auto; max-width: none; transform: scale(1.04); transform-origin: left center; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .section { padding: 88px 0; }
  .section-sm { padding: 70px 0; }
  .hero-inner { min-height: auto; padding: 65px 0 86px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 450px; }
  .hero-photo { inset: 0; border-radius: 30px 30px 80px 30px; }
  .hero-logo-float { width: 185px; left: 15px; top: 18px; }
  .hero-card-one { top: auto; bottom: 18px; right: 10px; }
  .hero-card-two { display: none; }
  .fabric-dots { display: none; }
  .trust-strip { margin-top: -28px; }
  .coverage-map { min-height: 520px; border-radius: 28px; }
  .map-overlay-card {
    left: 16px;
    right: auto;
    top: 16px;
    bottom: auto;
    width: min(250px, calc(100% - 32px));
    padding: 13px 15px;
    border-radius: 18px;
  }
  .map-overlay-card strong { font-size: 1rem; }
  .map-overlay-card p { font-size: .74rem; }
  .trust-grid, .services-grid, .why-grid, .process-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .about-visual { min-height: 435px; }
  .about-panel { inset: 0 24px 35px 0; }
  .about-badge { width: 205px; padding: 20px; }
  .service-card { min-height: 370px; }
  .process-wrap { padding: 26px; border-radius: 27px; }
  .process-step { min-height: 215px; }
  .quote-form { padding: 22px; }
  .form-group.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

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