:root {
  --ink: #0f172a;
  --muted: #5f6f86;
  --line: #dbe8f4;
  --sky: #0ea5e9;
  --sky-dark: #0369a1;
  --navy: #071525;
  --soft: #f5faff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--soft);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), #7dd3fc);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.12rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.76;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
  color: #7dd3fc;
}

.header-actions,
.hero-actions,
.quote-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.16);
}

.site-header.scrolled .button.light {
  color: var(--white);
  background: var(--sky);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), #38bdf8);
  box-shadow: 0 22px 45px rgba(14, 165, 233, 0.34);
}

.button.glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?q=80&w=2070&auto=format&fit=crop") center / cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 12%, rgba(56, 189, 248, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(7, 21, 37, 0.96), rgba(7, 21, 37, 0.72) 45%, rgba(7, 21, 37, 0.22));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 136px 0 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.quote-section .eyebrow {
  color: #bae6fd;
}

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

h1,
h2 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 8vw, 6.9rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
}

h3 {
  line-height: 1.15;
}

.hero-copy > p {
  max-width: 640px;
  margin-bottom: 34px;
  color: #dceaf6;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin: 54px 0 0;
}

.stats div {
  min-width: 135px;
}

.stats dt {
  font-size: 2.4rem;
  font-weight: 900;
}

.stats dd {
  margin: 4px 0 0;
  color: #c9d9e8;
}

.hero-card {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 100%;
  height: min(68vh, 650px);
  border-radius: 24px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: -18px;
  bottom: 36px;
  max-width: 250px;
  border-radius: 22px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-badge strong,
.floating-badge span {
  display: block;
}

.floating-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 40px));
  margin: -42px auto 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-strip div {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

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

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 126px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro > p,
.section-heading p,
.split-section p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-area {
  padding-top: clamp(54px, 7vw, 90px);
}

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

.area-grid span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--sky-dark);
  background: var(--white);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.service-grid,
.pricing-grid,
.review-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.pricing-grid article,
.review-grid article,
.process-grid article,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.service-card span,
.process-grid span {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  color: var(--sky-dark);
  background: #e0f2fe;
  font-weight: 900;
}

.service-card h3,
.pricing-grid h3,
.process-grid h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.service-card p,
.pricing-grid p,
.review-grid p,
.process-grid p,
.pricing-grid li {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: min(250px, 70%);
  border-radius: 24px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  box-shadow: var(--shadow);
}

.experience-card strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

.check-list,
.pricing-grid ul {
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0 0;
}

.check-list li {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: var(--white);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--sky);
}

.process {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  background: var(--white);
}

.process-grid article,
.pricing-grid article,
.review-grid article {
  padding: 30px;
}

.pricing-grid article {
  display: grid;
  align-content: start;
}

.pricing-grid .featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy), #0f3d5e);
  transform: translateY(-12px);
}

.pricing-grid .featured p,
.pricing-grid .featured li {
  color: #d4e5f4;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 26px;
}

.pricing-grid li::before {
  content: "•";
  margin-right: 8px;
  color: var(--sky);
}

.pricing-grid a {
  align-self: end;
  color: var(--sky-dark);
  font-weight: 900;
}

.pricing-grid .featured a {
  color: #7dd3fc;
}

.reviews {
  padding-top: 30px;
}

.stars {
  margin-bottom: 14px;
  color: #f59e0b;
  letter-spacing: 0;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(72px, 10vw, 120px) max(20px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.32), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(14, 165, 233, 0.28), transparent 34%),
    var(--navy);
}

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

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

.quote-copy p {
  color: #cbdbea;
}

.quote-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label,
.radio-group legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group legend {
  flex: 1 0 100%;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.radio-group input {
  width: auto;
}

.submit-button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--soft);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 1fr 1fr;
  gap: 28px;
  padding: 48px max(20px, calc((100vw - 1240px) / 2));
  color: #d7e4f0;
  background: #050d18;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.34), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(14, 165, 233, 0.28), transparent 34%),
    var(--navy);
}

.thank-you-card {
  width: min(720px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: clamp(28px, 6vw, 58px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.thank-you-card .brand {
  color: var(--white);
  margin-bottom: 42px;
}

.thank-you-card h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}

.thank-you-card p {
  max-width: 560px;
  color: #d7e4f0;
  font-size: 1.15rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  color: #9fb1c6;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #c6d8e8;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open {
    color: var(--ink);
    background: var(--white);
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    position: absolute;
    left: 20px;
    right: 20px;
    display: grid;
    justify-items: start;
    border-radius: 22px;
    padding: 20px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .main-nav {
    top: 82px;
    gap: 14px;
  }

  .site-header.menu-open .header-actions {
    top: 270px;
  }

  .hero-inner,
  .intro,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .service-grid,
  .pricing-grid,
  .review-grid,
  .process-grid,
  .trust-strip,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .quote-copy {
    position: static;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 15px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-inner {
    width: min(100% - 32px, 1240px);
  }

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

  .stats {
    gap: 22px;
  }

  .check-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }
}
