:root {
  --primary: #0b6f86;
  --primary-deep: #09283f;
  --primary-soft: #dfecef;
  --soft: #effcff;
  --accent: #7fd3df;
  --accent-strong: #39a9ba;
  --ink: #102a43;
  --surface: #ffffff;
  --paper: #f8fdff;
  --muted: color-mix(in srgb, var(--ink), white 38%);
  --line: color-mix(in srgb, var(--primary), white 78%);
  --shadow: 0 24px 70px rgba(9, 40, 63, .13);
  --shadow-soft: 0 16px 40px rgba(9, 40, 63, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(127, 211, 223, .20), transparent 28rem),
    radial-gradient(circle at 96% 18%, rgba(11, 111, 134, .10), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 45%, #ffffff 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; object-fit: cover; }
button, input, textarea, select { font: inherit; }
.section-pad { padding: clamp(4.5rem, 7vw, 7.5rem) clamp(1.1rem, 5vw, 5rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem clamp(1rem, 5vw, 4rem);
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 16%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-weight: 900;
  letter-spacing: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent-strong));
  box-shadow: 0 12px 28px rgba(11, 111, 134, .25);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .94rem;
  color: var(--muted);
}
.main-nav a {
  padding: .72rem .82rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary-soft), transparent 36%);
}
.nav-cta {
  margin-left: .25rem;
  padding: .82rem 1.05rem !important;
  color: white !important;
  background: var(--primary-deep) !important;
}
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1.14fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  padding-top: clamp(3.2rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
  color: var(--primary);
  font-size: .76rem;
  margin-bottom: 1rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 6.4vw, 6.25rem);
  line-height: .92;
  letter-spacing: 0;
  margin-bottom: 1.35rem;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  letter-spacing: 0;
}
.hero-text,
.section-heading p,
.split-copy p,
.solution-copy p,
.showcase-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}
.hero-copy { max-width: 760px; }
.hero-text { max-width: 690px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .9rem 1.28rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent-strong));
  box-shadow: 0 16px 34px rgba(11, 111, 134, .24);
}
.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .84);
  border-color: var(--line);
}
.hero-media {
  position: relative;
  isolation: isolate;
  min-height: clamp(500px, 58vw, 690px);
  padding: 1.2rem 1.3rem 0 0;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 4.2rem 0 1.8rem 4.2rem;
  z-index: -1;
  border-radius: 34px 8px 34px 8px;
  background:
    linear-gradient(135deg, rgba(223, 236, 239, .95), rgba(127, 211, 223, .24)),
    var(--primary-soft);
}
.hero-media img {
  height: clamp(440px, 52vw, 610px);
  aspect-ratio: 1.12;
  border-radius: 34px 8px 34px 8px;
  box-shadow: var(--shadow);
}
.hero-photo-strip {
  position: absolute;
  right: -1rem;
  bottom: 2.7rem;
  display: grid;
  grid-template-columns: repeat(2, 104px);
  gap: .7rem;
  padding: .65rem;
  border-radius: 18px 6px 18px 6px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.hero-photo-strip img {
  width: 104px;
  height: 86px;
  aspect-ratio: auto;
  border-radius: 12px 4px 12px 4px;
  box-shadow: none;
}
.floating-card {
  position: absolute;
  left: -1.2rem;
  bottom: 4.4rem;
  width: min(250px, 78%);
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}
.floating-card strong,
.floating-card span { display: block; }
.floating-card span { color: var(--muted); font-size: .88rem; margin-top: .25rem; }
.service-path {
  position: absolute;
  left: 2rem;
  top: 0;
  width: min(390px, 82%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
  padding: .55rem;
  border-radius: 18px 6px 18px 6px;
  background: rgba(9, 40, 63, .92);
  box-shadow: var(--shadow-soft);
}
.service-path span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px 4px 13px 4px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  font-size: .78rem;
  font-weight: 850;
}

.stats-band {
  width: min(1120px, calc(100% - 2rem));
  margin: -1.9rem auto 0;
  padding: .7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}
.stats-band article {
  padding: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, var(--primary-soft));
}
.stats-band strong {
  display: block;
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--primary);
}
.stats-band span { color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: .32fr 1.1fr .72fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.section-label {
  color: var(--primary);
  font-weight: 900;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.insight-card,
.service-card,
.step,
.plan,
.quote,
.faq-item,
.lead-form {
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.insight-card {
  padding: 1.55rem;
  border-top: 4px solid var(--accent);
}
.insight-card span { color: var(--primary); font-weight: 900; }
.insight-card p { color: var(--muted); line-height: 1.7; margin-bottom: 0; }

.solution,
.showcase,
.contact {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.photo-mosaic {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  align-items: end;
}
.photo-mosaic::before {
  content: "";
  position: absolute;
  inset: 2.4rem 2.2rem 2.2rem 0;
  z-index: -1;
  border-radius: 32px 8px 32px 8px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(127, 211, 223, .18));
}
.photo-mosaic figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow);
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-mosaic figcaption {
  padding: .85rem 1rem 1rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
  background: rgba(255, 255, 255, .92);
}
.photo-main {
  grid-row: 1 / 3;
  min-height: 500px;
  border-radius: 34px 8px 34px 8px;
}
.photo-side {
  min-height: 260px;
  border-radius: 26px 8px 26px 8px;
  transform: translateY(1.5rem);
}
.photo-note {
  align-self: end;
  padding: 1rem;
  border-radius: 18px 6px 18px 6px;
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: var(--shadow);
}
.photo-note strong,
.photo-note span { display: block; }
.photo-note span {
  margin-top: .3rem;
  color: rgba(255,255,255,.76);
  line-height: 1.45;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: .85rem;
}
.benefit-list li {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(255,255,255,.72));
}
.benefit-list strong { color: var(--primary); }
.benefit-list span { color: var(--muted); }

.section-heading {
  max-width: 840px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  position: relative;
  min-height: 218px;
  padding: 1.35rem;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -3rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(127, 211, 223, .18);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--primary), white 36%);
  box-shadow: var(--shadow);
}
.service-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}
.service-card p,
.step p,
.plan p,
.quote p {
  color: var(--muted);
  line-height: 1.65;
}
.showcase-gallery {
  position: relative;
  padding: 0 0 5rem 2.2rem;
}
.showcase-gallery::before {
  content: "";
  position: absolute;
  inset: 2.2rem 1.5rem 2.2rem 0;
  z-index: -1;
  border-radius: 34px 8px 34px 8px;
  background: linear-gradient(135deg, rgba(11, 111, 134, .11), rgba(127, 211, 223, .24));
}
.showcase-gallery > img {
  aspect-ratio: 1.15;
  border-radius: 34px 8px 34px 8px;
  box-shadow: var(--shadow);
}
.showcase-thumbs {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(420px, 86%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: .8rem;
  border-radius: 22px 6px 22px 6px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.showcase-thumbs img {
  height: 88px;
  border-radius: 14px 4px 14px 4px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step {
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(127, 211, 223, .24);
}
.step small {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.plan {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
}
.plan.featured {
  color: white;
  background: linear-gradient(145deg, var(--primary-deep), var(--primary));
  transform: translateY(-14px);
  box-shadow: 0 24px 58px rgba(9, 40, 63, .24);
}
.plan.featured p,
.plan.featured .plan-tag { color: rgba(255,255,255,.78); }
.plan-tag {
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.price {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--primary);
  font-weight: 950;
  letter-spacing: 0;
  margin: .65rem 0;
}
.plan.featured .price { color: white; }
.btn-plan {
  margin-top: auto;
  background: var(--primary-soft);
  color: var(--ink);
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.quote { padding: 1.5rem; }
.quote p { font-size: 1.05rem; }
.quote strong { color: var(--primary); }
.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: .75rem;
}
.faq-item { overflow: hidden; }
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}
.faq-item b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
}
.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: var(--muted);
  line-height: 1.65;
  transition: max-height .25s ease, padding .25s ease;
}
.faq-item.active p {
  max-height: 170px;
  padding: 0 1.2rem 1.2rem;
}
.lead-form {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}
.lead-form label {
  display: grid;
  gap: .45rem;
  font-weight: 800;
  color: var(--ink);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .9rem 1rem;
  background: color-mix(in srgb, var(--surface), transparent 2%);
  color: var(--ink);
  outline: none;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary), transparent 84%);
}
.form-status { margin: 0; color: var(--primary); font-weight: 800; }
.final-cta {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  text-align: center;
  padding: clamp(2.2rem, 6vw, 5rem);
  border-radius: 30px 8px 30px 8px;
  color: white;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  box-shadow: var(--shadow);
}
.final-cta .eyebrow { color: color-mix(in srgb, var(--accent), white 20%); }
.final-cta h2 { max-width: 820px; margin-left: auto; margin-right: auto; }
.site-footer {
  padding: 2rem clamp(1rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero,
  .solution,
  .showcase,
  .contact,
  .split-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media {
    min-height: auto;
  }
  .hero-media img {
    height: auto;
    aspect-ratio: 1.35;
  }
  .section-label { writing-mode: horizontal-tb; }
  .service-grid,
  .plans-grid,
  .quotes-grid,
  .timeline,
  .stats-band { grid-template-columns: 1fr; }
  .photo-mosaic { min-height: 420px; }
  .plan.featured { transform: none; }
  .site-footer { flex-direction: column; }
  h1 { font-size: clamp(2.8rem, 13vw, 5rem); }
}

@media (max-width: 620px) {
  .section-pad { padding-inline: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-media {
    padding: .6rem .6rem 0 0;
  }
  .hero-media::before { inset: 0 0 1rem 1rem; }
  .service-path {
    position: static;
    width: 100%;
    margin-bottom: .8rem;
    grid-template-columns: 1fr;
  }
  .service-path span {
    min-height: 40px;
  }
  .hero-photo-strip {
    position: static;
    margin-top: .8rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-photo-strip img {
    width: 100%;
    height: 86px;
  }
  .floating-card { position: static; margin-top: 1rem; width: 100%; }
  .photo-mosaic {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .photo-mosaic::before { inset: 1rem 0 1rem 1rem; }
  .photo-main,
  .photo-side {
    min-height: auto;
    transform: none;
  }
  .photo-main img,
  .photo-side img {
    aspect-ratio: 1.1;
  }
  .showcase-gallery {
    padding: 0 0 0 1rem;
  }
  .showcase-thumbs {
    position: static;
    width: 100%;
    margin-top: .8rem;
  }
  .showcase-thumbs img { height: 78px; }
  .benefit-list li { grid-template-columns: 1fr; }
}
