:root {
  --blue: #6f9fac;
  --blue-dark: #547b87;
  --blue-soft: #cce6e3;
  --frozen-water: #cce6e3;
  --light-cyan: #cae0df;
  --ash-grey: #9bbebf;
  --cool-steel: #95a8b2;
  --charcoal: #1f252c;
  --gray: #5d6774;
  --line: #dfe6ef;
  --soft: #f3faf9;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(51, 82, 91, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 230, 239, 0.9);
  backdrop-filter: blur(14px);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: #39424e;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 22px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(84, 123, 135, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(84, 123, 135, 0.27);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.button-ghost {
  background: var(--cool-steel);
  box-shadow: none;
}

.button-secondary {
  background: var(--cool-steel);
  box-shadow: none;
}

.button-light {
  background: var(--blue-soft);
  color: var(--charcoal);
  box-shadow: none;
}

.button-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: none;
}

.hero {
  display: grid;
  min-height: 78vh;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 56px;
  background:
    linear-gradient(135deg, #ffffff 0%, var(--frozen-water) 54%, var(--light-cyan) 100%);
}

.hero-inner {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(420px, 0.82fr) minmax(500px, 1.18fr);
  gap: 42px;
  align-items: start;
}

.hero-copy-block {
  min-width: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: #101820;
  font-size: clamp(2.35rem, 4.15vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: #2e3845;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fast-note {
  width: fit-content;
  margin: 16px 0 0;
  color: #43505e;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-proof {
  display: grid;
  gap: 28px;
}

.hero-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-before-after figure {
  min-width: 0;
}

.hero-before-after img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(38, 68, 78, 0.22);
}

.trust-bar {
  background: var(--cool-steel);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.trust-grid div {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--cool-steel);
  color: #f4f8ff;
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 88px 0;
}

.services-section {
  background: var(--soft);
}

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

.bundle-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: stretch;
  border: 1px solid rgba(84, 123, 135, 0.22);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.deal-label {
  display: inline-flex;
  margin: 0 0 14px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--blue-soft);
  color: #17262d;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bundle-copy h2 {
  margin: 0;
  color: #16232a;
  font-size: clamp(2.1rem, 3.45vw, 3.1rem);
  line-height: 1.02;
  white-space: nowrap;
}

.deal-service {
  margin: 16px 0 0;
  color: #20323a;
  font-size: 1.2rem;
  font-weight: 800;
}

.deal-price {
  margin: 8px 0 18px;
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
}

.bundle-copy p {
  color: var(--gray);
  font-size: 1.03rem;
}

.bundle-copy .deal-price {
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.deal-upsell {
  margin-top: 18px;
  font-weight: 700;
}

.deal-disclaimer {
  margin-bottom: 0;
  color: #697786;
  font-size: 0.86rem;
}

.bundle-includes {
  display: grid;
  align-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: 26px;
  background: var(--soft);
}

.bundle-includes h3 {
  margin: 0;
  color: #17262d;
  font-size: 1.2rem;
}

.bundle-includes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 21px;
  color: #354150;
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.quote-copy h2,
.about-inner h2,
.final-inner h2 {
  margin: 0;
  color: #161d25;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.quote-copy p,
.about-copy p,
.final-inner p {
  color: var(--gray);
  font-size: 1.04rem;
}

.section-heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 30px;
}

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

.service-card {
  min-height: 228px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 31, 44, 0.04);
}

.primary-service {
  border-color: rgba(111, 159, 172, 0.38);
}

.service-card h3,
.result-card h3 {
  margin: 0 0 12px;
  color: #19212a;
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: var(--gray);
}

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

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.comparison::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--blue);
  content: "";
  transform: translateX(-50%);
}

figure {
  position: relative;
  margin: 0;
}

.result-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.comparison img {
  aspect-ratio: 4 / 5;
}

figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(84, 123, 135, 0.96);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.muted {
  margin-top: 18px;
}

.quote-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.quote-contact-card {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.quote-contact-card .button {
  width: 100%;
}

.email-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #303a45;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8e5;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfdff;
  color: #17202a;
  font: inherit;
  font-weight: 600;
}

fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

legend {
  padding: 0 6px;
  color: #303a45;
  font-size: 0.88rem;
  font-weight: 800;
}

.addon-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.addon-field label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3b4653;
  font-size: 0.9rem;
  font-weight: 700;
}

.addon-field input {
  width: auto;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 107, 220, 0.14);
}

textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status {
  min-height: 22px;
  margin: 0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.form-status:not(:empty) {
  padding: 12px 14px;
}

.form-status[data-status="success"] {
  background: #e7f5ef;
  color: #1d6b4d;
}

.form-status[data-status="error"] {
  background: #fff1f1;
  color: #9b2f2f;
}

.form-status[data-status="pending"] {
  background: var(--blue-soft);
  color: var(--charcoal);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.about-copy p:first-child {
  margin-top: 0;
}

.final-cta {
  padding: 88px 0;
  background: #6f9fac;
  color: var(--white);
}

.final-inner {
  max-width: 850px;
  text-align: center;
}

.final-inner h2,
.final-inner p {
  color: var(--white);
}

.final-inner .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 32px 0 92px;
  background: #111820;
  color: #dce6f2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.site-footer p {
  margin: 8px 0 0;
  color: #aebdce;
}

address {
  display: grid;
  gap: 7px;
  font-style: normal;
  text-align: right;
}

address a {
  color: #ffffff;
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  z-index: 25;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -10px 30px rgba(22, 29, 37, 0.12);
  backdrop-filter: blur(14px);
}

.mobile-cta .button {
  min-height: 46px;
  padding: 12px 10px;
}

@media (max-width: 1040px) {
  .site-header {
    position: absolute;
  }

  .header-actions .nav-link {
    display: none;
  }

  .trust-grid,
  .services-grid,
  .results-grid,
  .section-heading-split,
  .bundle-card,
  .quote-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .trust-grid {
    gap: 0;
  }

  .trust-grid div {
    min-height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quote-copy {
    position: static;
  }

}

@media (min-width: 681px) and (max-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 136px;
    height: 42px;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 78vh;
    padding: 104px 0 38px;
  }

  .hero h1 {
    font-size: clamp(2.18rem, 12vw, 3.55rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .services-grid,
  .results-grid {
    gap: 14px;
  }

  .service-card,
  .result-card,
  .quote-form,
  .bundle-card,
  .bundle-includes {
    padding: 18px;
  }

  .bundle-copy h2 {
    white-space: normal;
  }

  .hero-before-after {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-before-after img {
    aspect-ratio: 4 / 3;
  }

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

  .comparison::after {
    display: none;
  }

  .comparison img {
    aspect-ratio: 16 / 11;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .addon-field {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  address {
    text-align: left;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-cta {
    display: grid;
  }
}
