:root {
  --ink: #101b35;
  --muted: #617086;
  --blue: #075b96;
  --blue-dark: #064876;
  --indigo: #2d277c;
  --cyan: #08a9df;
  --pale: #f2f8fc;
  --line: #dce8f0;
  --white: #fff;
  --shadow: 0 22px 60px rgba(20, 55, 82, .12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img, svg { display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(215, 228, 238, .75);
  backdrop-filter: blur(14px);
}
.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; color: var(--blue-dark); }
.brand img { width: 110px; object-fit: contain; }
.brand span { padding-left: 11px; border-left: 1px solid var(--line); font-size: 32px; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 35px; font-size: 14px; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 2px;
  background: var(--cyan);
  transition: right .25s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta {
  padding: 13px 20px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(7,91,150,.2);
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { width: 25px; height: 2px; margin: 5px; background: var(--ink); transition: .25s; }

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  padding-top: 82px;
  overflow: hidden;
  background: #f7fafc;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 32%, rgba(255,255,255,.68) 49%, transparent 69%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: -140px;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border: 80px solid rgba(8,169,223,.08);
  border-radius: 50%;
}
.hero-photo {
  position: absolute;
  inset: 82px 0 0;
  background: url("assets/hero-sofa.png") center / cover no-repeat;
}
.hero-grid { position: relative; z-index: 4; display: grid; grid-template-columns: 57% 43%; }
.hero-copy { max-width: 640px; padding: 75px 0 70px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: var(--cyan); }
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-text { max-width: 540px; margin: 28px 0 32px; color: var(--muted); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: white; background: var(--blue); box-shadow: 0 14px 30px rgba(7,91,150,.24); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 18px 34px rgba(7,91,150,.3); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 750; }
.text-link span { color: var(--cyan); font-size: 20px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.text-link.blue { color: var(--blue); }
.text-link.blue:hover span { transform: translateX(4px); }
.trust-row { display: flex; gap: 34px; margin-top: 48px; padding-top: 25px; border-top: 1px solid var(--line); }
.trust-row > div { display: flex; align-items: center; gap: 10px; }
.trust-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.4; }
.trust-row strong { display: block; color: var(--ink); }
.check { display: grid; place-items: center; flex: 0 0 30px; height: 30px; color: var(--blue); background: #e6f6fc; border-radius: 50%; font-weight: 900; }

.services { background: white; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 55px; }
.section-heading h2, .process h2, .coverage h2, .quote h2 { margin: 0; font-size: clamp(38px, 4vw, 56px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p { max-width: 420px; margin: 0 0 6px; color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 345px;
  padding: 35px 28px;
  overflow: hidden;
  background: var(--pale);
  border: 1px solid transparent;
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: #d7e8f3; box-shadow: var(--shadow); }
.service-card.featured { color: white; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); }
.service-card.featured::after {
  content: "";
  position: absolute;
  right: -75px; bottom: -90px;
  width: 210px; height: 210px;
  border: 38px solid rgba(8,169,223,.25);
  border-radius: 50%;
}
.service-number { position: absolute; right: 23px; top: 22px; color: #bdd0dc; font-size: 13px; font-weight: 800; }
.featured .service-number { color: rgba(255,255,255,.45); }
.service-icon { width: 65px; height: 65px; display: grid; place-items: center; color: var(--blue); background: white; border-radius: 17px; box-shadow: 0 10px 25px rgba(27,65,92,.09); }
.service-icon svg { width: 39px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; z-index: 1; margin: 48px 0 13px; font-size: 20px; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.featured p { color: rgba(255,255,255,.76); }

.process { position: relative; overflow: hidden; color: white; background: var(--indigo); }
.process::after {
  content: "GF1";
  position: absolute;
  right: -35px; bottom: -105px;
  color: rgba(255,255,255,.035);
  font-size: 330px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.1em;
}
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 130px; align-items: center; }
.eyebrow.light { color: #8ddcf5; }
.process-copy > p:not(.eyebrow) { max-width: 470px; margin: 26px 0 32px; color: rgba(255,255,255,.7); line-height: 1.7; }
.button-light { color: var(--indigo); background: white; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 62px 1fr; gap: 23px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.steps li:last-child { border-bottom: 0; }
.steps li > span { width: 58px; height: 58px; display: grid; place-items: center; color: #9ee4f8; border: 1px solid rgba(142,221,245,.4); border-radius: 50%; font-size: 19px; font-weight: 800; }
.steps h3 { margin: 2px 0 7px; font-size: 20px; }
.steps p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; }

.coverage { background: #f7fafc; }
.coverage-card {
  min-height: 380px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  overflow: hidden;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-graphic { align-self: stretch; display: grid; place-items: center; background: linear-gradient(145deg, #e9f7fc, #f2f6fc); }
.map-graphic svg { width: min(72%, 280px); fill: rgba(7,91,150,.08); stroke: var(--blue); stroke-width: 2; }
.map-graphic circle:first-of-type { fill: var(--cyan); stroke: white; stroke-width: 6; }
.map-graphic circle:last-of-type { fill: none; stroke: var(--cyan); stroke-width: 1; stroke-dasharray: 5 5; }
.coverage-copy { padding: 65px 80px; }
.coverage-copy h2 { max-width: 600px; }
.coverage-copy > p:not(.eyebrow) { max-width: 560px; margin: 22px 0; color: var(--muted); line-height: 1.75; }

.quote { padding-top: 20px; background: #f7fafc; }
.quote-card { display: grid; grid-template-columns: 1fr .95fr; gap: 80px; padding: 75px 80px; color: white; background: linear-gradient(135deg, #075b96 0%, #063f6a 100%); border-radius: var(--radius); box-shadow: 0 26px 60px rgba(6,63,106,.22); }
.quote-intro > p:not(.eyebrow) { max-width: 420px; color: rgba(255,255,255,.7); line-height: 1.7; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label:first-child, .quote-form label:nth-child(2), .quote-form button, .quote-form small { grid-column: span 2; }
.quote-form label { display: grid; gap: 8px; }
.quote-form label span { font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.quote-form input, .quote-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: white;
  border: 1px solid transparent;
  border-radius: 10px;
  outline: 0;
}
.quote-form input:focus, .quote-form select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(8,169,223,.18); }
.button-accent { width: 100%; margin-top: 4px; color: #052f4e; background: var(--cyan); }
.button-accent:hover { background: #24b7e8; box-shadow: 0 12px 25px rgba(0,0,0,.15); }
.quote-form small { color: rgba(255,255,255,.5); text-align: center; }

.site-footer { padding: 45px 0; background: #f7fafc; border-top: 1px solid var(--line); }
.footer-inner { gap: 35px; }
.footer-inner > p { color: var(--muted); font-size: 13px; }
.copyright { white-space: nowrap; }
.footer-brand img { width: 52px; height: 37px; }
.floating-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.service-card:nth-child(2), .steps li:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3), .steps li:nth-child(3) { transition-delay: .16s; }
.service-card:nth-child(4) { transition-delay: .24s; }

@media (max-width: 960px) {
  .main-nav { gap: 19px; }
  .hero::before { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.94) 48%, rgba(255,255,255,.43) 75%, rgba(255,255,255,.12)); }
  .hero-grid { grid-template-columns: 68% 32%; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { gap: 60px; }
  .quote-card { gap: 45px; padding: 60px 45px; }
  .coverage-copy { padding: 50px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 600px); }
  .section { padding: 80px 0; }
  .site-header { height: 70px; }
  .brand img { width: 80px; }
  .brand span { font-size: 25px; }
  .menu-toggle { position: relative; z-index: 22; display: block; }
  .menu-toggle span { display: block; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    inset: auto;
    top: 69px;
    left: 0;
    z-index: 21;
    width: 100vw;
    height: calc(100dvh - 69px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    visibility: hidden;
    opacity: 0;
    background: white;
    font-size: 20px;
    transition: .25s ease;
  }
  .menu-open .main-nav { visibility: visible; opacity: 1; }
  .nav-cta { font-size: 15px; }
  .hero { min-height: 760px; padding-top: 70px; align-items: end; }
  .hero-photo { inset: 70px 0 44%; background-position: 64% center; }
  .hero::before { background: linear-gradient(0deg, #fff 0%, #fff 46%, rgba(255,255,255,.05) 71%); }
  .hero::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 330px 0 45px; }
  .hero h1 { font-size: clamp(45px, 13vw, 61px); }
  .hero-text { margin: 22px 0 26px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .trust-row { gap: 15px; justify-content: space-between; margin-top: 35px; }
  .trust-row > div { gap: 7px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .process-grid, .coverage-card, .quote-card { grid-template-columns: 1fr; }
  .process-grid { gap: 50px; }
  .process::after { font-size: 190px; }
  .coverage-card { overflow: visible; }
  .map-graphic { min-height: 270px; border-radius: var(--radius) var(--radius) 0 0; }
  .coverage-copy { padding: 38px 28px 45px; }
  .quote { padding-top: 0; }
  .quote-card { gap: 40px; padding: 48px 26px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form label, .quote-form label:first-child, .quote-form label:nth-child(2), .quote-form button, .quote-form small { grid-column: 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-inner > p { margin: 0; }
  .floating-cta {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 18;
    display: flex;
    align-items: center;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    color: white;
    background: #129c52;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(18,156,82,.3);
    font-size: 13px;
    font-weight: 800;
  }
  .floating-cta svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .floating-cta span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}

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