/* ============================================================
   EcoWave Home Comfort — site
   Layout adapted from the Repairo study; brand tokens from
   ecowavehomecomfort.com (teal #31BDCD, lime #83C028, magenta #CC3366)
   ============================================================ */

:root {
  /* --- palette (EcoWave Home Comfort) --- */
  --navy:      #113039;   /* dark teal-charcoal: headings + dark sections */
  --navy-2:    #1b4650;   /* raised dark-teal surface */
  --blue:      #31bdcd;   /* EcoWave teal — primary accent / CTAs */
  --blue-ink:  #2699a8;   /* pressed teal */
  --yellow:    #83c028;   /* EcoWave lime — secondary CTA / highlight */
  --lime-ink:  #6ea31f;
  --magenta:   #cc3366;   /* sparing accent (logo "HOME COMFORT") */
  --mist:      #e9f6f8;   /* light teal tint / card bg */
  --paper:     #ffffff;
  --ink:       #113039;
  --muted:     #566b70;   /* body copy on light */
  --muted-2:   #9ec4cc;   /* body copy on dark */
  --line:      #dcecef;   /* hairline on light */
  --line-dk:   #2c5561;   /* hairline on dark */

  /* --- type --- */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --disp: "Inter", var(--sans);       /* display = Inter tight/black */

  /* --- rhythm --- */
  --shell: 1360px;               /* max content width */
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 22px;
  --radius-sm: 14px;
  --section-y: clamp(64px, 9vw, 130px);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- display type ---------- */
.display {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.eyebrow {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-lead {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 18px auto 0;
}
.section-title {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.75rem);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 46px; width: auto; display: block; }
.footer .logo img { background: #fff; padding: 9px 13px; border-radius: 12px; }

.nav { display: flex; gap: 34px; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--navy); letter-spacing: .01em; transition: color .2s; }
.nav a:hover { color: var(--blue); }

.hdr__cta { display: flex; align-items: center; gap: 12px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; font-size: .95rem; border-radius: 999px; padding: 14px 26px; transition: transform .2s var(--ease), background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-ink); }
.btn--yellow { background: var(--yellow); color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

.circle-arrow {
  width: 52px; height: 52px; border-radius: 999px; flex: none;
  background: var(--yellow); color: var(--navy);
  display: grid; place-items: center; font-size: 1.25rem;
  transition: transform .25s var(--ease);
}
.circle-arrow:hover { transform: rotate(-45deg); }
.circle-arrow--navy { background: var(--navy); color: #fff; }
.circle-arrow--blue { background: var(--blue); color: #fff; }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(30px, 5vw, 56px); }
.hero__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.hero h1 {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.7rem, 8.2vw, 6.6rem);
  line-height: .92; letter-spacing: -.025em; color: var(--navy);
  max-width: 14ch;
}
.hero__badges { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 10px; flex: none; }
.hero__badges img { height: 42px; width: auto; display: block; }
.badge {
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-size: .5rem; font-weight: 700; text-transform: uppercase; line-height: 1.1;
  color: var(--navy); border: 2px solid var(--navy);
  padding: 6px;
}
.badge--dark { background: var(--navy); color: var(--yellow); border-color: var(--navy); }
.badge span.big { display: block; font-size: .78rem; color: var(--yellow); }

.hero__media {
  margin-top: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
  background: var(--mist);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding-block: var(--section-y); }
.about__big {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 7rem); line-height: .9; letter-spacing: -.025em;
  color: var(--navy);
  display: flex; flex-wrap: wrap; align-items: center; gap: .12em .28em;
}
.about__big .inline-img {
  display: inline-block; width: clamp(120px, 12vw, 190px); aspect-ratio: 5/3;
  border-radius: 999px; overflow: hidden; vertical-align: middle; background: var(--mist);
}
.about__big .inline-img img { width: 100%; height: 100%; object-fit: cover; }

.about__sub {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.4rem, 3.2vw, 2.5rem); line-height: 1.05; letter-spacing: -.02em;
  color: var(--navy); max-width: 22ch; margin-top: clamp(34px, 5vw, 60px);
}
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px);
  align-items: center; margin-top: clamp(34px, 4vw, 56px);
}
.about__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.1; background: var(--mist); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__cols { display: grid; gap: 30px; }
.about__cols h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.about__cols p { color: var(--muted); font-size: 1rem; }
.about__note { color: var(--muted); font-size: 1.15rem; max-width: 46ch; margin-top: clamp(30px, 4vw, 50px); }

.wordmark {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(4rem, 20vw, 17rem); line-height: 1; letter-spacing: -.03em;
  text-align: center; margin-top: clamp(20px, 3vw, 40px);
  color: transparent; -webkit-text-stroke: 1px var(--line);
  user-select: none;
}

/* =========================================================
   SERVICES (dark accordion)
   ========================================================= */
.services { background: var(--navy); color: #fff; padding-block: var(--section-y); border-radius: 34px; margin-inline: clamp(8px, 2vw, 20px); }
.services__accordion { display: flex; gap: 20px; }
.svc {
  background: var(--navy-2); border: 1px solid var(--line-dk); border-radius: var(--radius);
  padding: 26px; overflow: hidden; position: relative;
  flex: 1 1 0; min-width: 0;
  transition: flex-grow .55s var(--ease), background .55s var(--ease), color .55s var(--ease);
  display: flex; flex-direction: column; will-change: flex-grow;
}
.svc.is-open { flex-grow: 4; background: var(--mist); color: var(--navy); }
.svc__num {
  position: absolute; top: 24px; left: 26px;
  font-family: var(--disp); font-weight: 800; font-size: 3rem; color: rgba(255,255,255,.16); line-height: 1;
  transition: opacity .35s var(--ease);
}
.svc.is-open .svc__num { opacity: 0; }
.svc__media {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/8; background: #cfd6e2;
  max-height: 0; opacity: 0; margin-bottom: 0;
  transition: max-height .55s var(--ease), opacity .45s var(--ease) .1s, margin-bottom .55s var(--ease);
}
.svc.is-open .svc__media { max-height: 340px; opacity: 1; margin-bottom: 22px; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-size: 1.3rem; margin-top: auto; flex: none;
  transition: margin-top .55s var(--ease), transform .3s var(--ease);
}
.svc.is-open .svc__icon { margin-top: 0; }
.svc:hover .svc__icon { transform: scale(1.08) rotate(-4deg); }
.svc__title { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; letter-spacing: -.01em; margin-top: 16px; line-height: 1.1; }
.svc:not(.is-open) .svc__title { font-size: 16px; }
.svc__desc {
  color: var(--muted); font-size: .98rem; max-width: 46ch; overflow: hidden;
  max-height: 0; opacity: 0; margin-top: 0;
  transition: max-height .55s var(--ease), opacity .45s var(--ease) .1s, margin-top .55s var(--ease);
}
.svc.is-open .svc__desc { max-height: 220px; opacity: 1; margin-top: 14px; }
.svc:not(.is-open) { cursor: pointer; }

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testi { padding-block: var(--section-y); }
.testi__grid { display: grid; grid-template-columns: .95fr 1.15fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.testi__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/4.4; background: var(--mist); }
.testi__img img { width: 100%; height: 100%; object-fit: cover; }
.testi__top { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.testi__score { font-family: var(--disp); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); color: var(--navy); line-height: 1; }
.stars { display: inline-flex; gap: 3px; background: var(--yellow); padding: 6px 10px; border-radius: 8px; color: var(--navy); font-size: .85rem; }
.testi__reviews { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.testi__side { color: var(--muted); font-size: .95rem; max-width: 24ch; }
.testi__quote { font-family: var(--disp); font-weight: 500; text-transform: none; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.35; letter-spacing: -.01em; color: var(--navy); margin-top: 34px; }
.testi__author { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.testi__author img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.testi__author b { display: block; font-family: var(--disp); text-transform: uppercase; font-size: 1.2rem; color: var(--navy); }
.testi__author span { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   BLUE CTA BAND
   ========================================================= */
.cta-band {
  background: var(--blue); color: #fff; border-radius: 30px;
  margin-inline: clamp(8px, 2vw, 20px);
  padding: clamp(44px, 7vw, 90px) clamp(24px, 5vw, 70px);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after { content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background: rgba(255,255,255,.08); }
.cta-band h2 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.02em; max-width: 16ch; position: relative; }

/* =========================================================
   COMPARISON
   ========================================================= */
.compare { padding-block: var(--section-y); }
.compare__cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 34px); margin-top: clamp(40px, 5vw, 64px); }
.cmp {
  border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
}
.cmp--bad { background: var(--mist); }
.cmp--good { background: var(--navy); color: #fff; border-color: var(--navy); }
.cmp__head { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.cmp__brand-mark { width: 24px; height: 24px; border-radius: 6px; background: var(--yellow); display: inline-grid; place-items: center; position: relative; }
.cmp__brand-mark::before, .cmp__brand-mark::after { content:""; position:absolute; background: var(--navy); border-radius:1px; }
.cmp__brand-mark::before { width:11px; height:3px; } .cmp__brand-mark::after { width:3px; height:11px; }
.cmp__list li { display: flex; align-items: center; gap: 14px; padding: 18px 0; font-size: 1rem; }
.cmp__list li + li { border-top: 1px solid var(--line); }
.cmp--good .cmp__list li + li { border-top: 1px solid var(--line-dk); }
.cmp__ic { width: 22px; height: 22px; border-radius: 6px; flex: none; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.cmp__ic--x { background: #d7deea; color: var(--navy); }
.cmp__ic--v { background: var(--yellow); color: var(--navy); }

/* =========================================================
   CONTACT CTA + FORM
   ========================================================= */
.connect { background: var(--mist); padding-block: var(--section-y); border-radius: 34px; margin-inline: clamp(8px, 2vw, 20px); }
.connect__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.connect h2 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: .98; letter-spacing: -.02em; color: var(--navy); max-width: 12ch; }
.connect p { color: var(--muted); font-size: 1.1rem; margin-top: 22px; max-width: 40ch; }
.avatars { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.avatars__imgs { display: flex; }
.avatars__imgs img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--mist); margin-left: -16px; }
.avatars__imgs img:first-child { margin-left: 0; }
.avatars small { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.avatars b { font-family: var(--disp); text-transform: uppercase; font-size: 1.25rem; color: var(--navy); }

.form { background: #fff; border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: 0 30px 60px -30px rgba(20,47,69,.28); display: grid; gap: 16px; }
.form label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); }
.field { display: grid; gap: 8px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 15px 18px; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: inherit; font-size: 1rem; color: var(--navy); background: #fbfcfe;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(49,189,205,.20); }
.form textarea { resize: vertical; min-height: 96px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__msg { font-size: .9rem; color: var(--blue); min-height: 1.1em; }

/* =========================================================
   FEATURES GRID
   ========================================================= */
.features { padding-block: var(--section-y); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(40px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feat { padding: clamp(28px, 3vw, 44px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feat-grid .feat:nth-child(3n) { border-right: none; }
.feat-grid .feat:nth-last-child(-n+3) { border-bottom: none; }
.feat__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: var(--blue); font-size: 1.6rem; margin-bottom: 26px; }
.feat h3 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1.2rem; letter-spacing: -.01em; color: var(--navy); }
.feat p { color: var(--muted); font-size: .98rem; margin-top: 14px; }

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process { padding-block: var(--section-y); background: var(--navy); color: #fff; border-radius: 34px; margin-inline: clamp(8px, 2vw, 20px); }
.process .section-title { color: #fff; }
.process .section-lead { color: var(--muted-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(40px, 5vw, 64px); }
.step { border: 1px solid var(--line-dk); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); background: var(--navy-2); }
.step__n { font-family: var(--disp); font-weight: 800; font-size: 1rem; color: var(--yellow); }
.step__ic { width: 56px; height: 56px; border-radius: 14px; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 1.5rem; margin: 22px 0 24px; }
.step h3 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; }
.step p { color: var(--muted-2); font-size: .98rem; margin-top: 14px; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { padding-block: var(--section-y); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); margin-top: clamp(40px, 5vw, 64px); align-items: start; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 3vw, 42px); background: #fff; position: relative; }
.plan--hot { background: var(--blue); color: #fff; border-color: var(--blue); }
.plan__pop { position: absolute; top: 20px; right: 20px; background: var(--yellow); color: var(--navy); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 12px; border-radius: 8px; }
.plan__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 28px; }
.plan--hot .plan__icon { background: #fff; color: var(--blue); }
.plan h3 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; }
.plan__blurb { font-size: .95rem; color: var(--muted); margin-top: 8px; }
.plan--hot .plan__blurb { color: rgba(255,255,255,.82); }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 24px 0; }
.plan__price b { font-family: var(--disp); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; }
.plan__price span { font-size: .9rem; color: var(--muted); }
.plan--hot .plan__price span { color: rgba(255,255,255,.8); }
.plan__buy { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.plan__buy .btn { flex: 1; }
.plan--hot .btn--blue { background: var(--yellow); color: var(--navy); }
.plan__devices { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.plan--hot .plan__devices { border-color: rgba(255,255,255,.22); }
.plan__list { margin-top: 20px; display: grid; gap: 16px; }
.plan__list li { display: flex; align-items: center; gap: 12px; font-size: .98rem; }
.plan__check { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; font-size: .7rem; flex: none; opacity: .8; }
.pricing__foot { text-align: center; margin-top: 34px; color: var(--muted); }
.pricing__foot .secure { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }

/* =========================================================
   BLOG
   ========================================================= */
.blog { padding-block: var(--section-y); }
.blog__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.blog h2 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: .98; letter-spacing: -.02em; color: var(--navy); max-width: 14ch; }
.blog__lead { color: var(--muted); max-width: 40ch; }
.blog__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); margin-top: clamp(36px, 4vw, 56px); }
.post__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/8.6; background: var(--mist); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__media img { transform: scale(1.04); }
.post__meta { position: absolute; left: 22px; bottom: 18px; color: #fff; }
.post__meta b { display: block; font-family: var(--disp); text-transform: uppercase; font-size: 1.05rem; }
.post__meta span { font-size: .8rem; opacity: .85; }
.post__tag { position: absolute; right: 22px; bottom: 18px; background: rgba(20,47,69,.7); color: #fff; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 7px 12px; border-radius: 8px; }
.post h3 { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; letter-spacing: -.01em; color: var(--navy); margin-top: 22px; }
.post p { color: var(--muted); margin-top: 12px; }
.post__more { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--navy); margin-top: 18px; }
.post__more:hover { color: var(--blue); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); color: #fff; padding-top: clamp(56px, 7vw, 90px); overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.2fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 40px; }
.footer .logo { color: #fff; }
.footer__tag { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; line-height: 1.05; margin-top: 24px; max-width: 16ch; }
.footer__copy { color: var(--muted-2); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; margin-top: 34px; }
.footer__copy a { color: var(--yellow); }
.footer__col h5 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.footer__col a { display: block; padding: 8px 0; color: #fff; font-size: .98rem; transition: color .2s; }
.footer__col a:hover { color: var(--yellow); }
.sub__field { display: flex; align-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--line-dk); border-radius: 999px; padding: 6px 6px 6px 20px; }
.sub__field input { flex: 1; background: none; border: none; color: #fff; font-size: 1rem; padding: 10px 0; }
.sub__field input::placeholder { color: var(--muted-2); }
.sub__field input:focus { outline: none; }
.footer__watermark {
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  font-size: clamp(4rem, 24vw, 22rem); line-height: .8; letter-spacing: -.03em; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(255,218,51,.35);
  margin-bottom: -.14em; padding-top: 20px; user-select: none;
}

/* =========================================================
   scroll-reveal
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--reveal-delay, 0s); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Framer-style hover motion ---------- */
.feat, .step, .post, .cmp { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.feat:hover, .step:hover, .post:hover { transform: translateY(-7px); }
.cmp:hover { transform: translateY(-4px); }
.feat__icon, .step__ic { transition: transform .4s var(--ease); }
.feat:hover .feat__icon, .step:hover .step__ic { transform: scale(1.12) rotate(-5deg); }
.about__img, .testi__img, .quote__card { overflow: hidden; }
.about__img img, .testi__img img { transition: transform .7s var(--ease); }
.about__img:hover img, .testi__img:hover img { transform: scale(1.06); }
.wordmark, .footer__watermark { transition: letter-spacing .6s var(--ease); }
.about:hover .wordmark, .footer:hover .footer__watermark { letter-spacing: -.01em; }
.circle-arrow { transition: transform .3s var(--ease), background .3s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  .feat:hover, .step:hover, .post:hover, .cmp:hover,
  .feat:hover .feat__icon, .step:hover .step__ic, .svc:hover .svc__icon,
  .about__img:hover img, .testi__img:hover img { transform: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid .feat:nth-child(3n) { border-right: 1px solid var(--line); }
  .feat-grid .feat:nth-child(2n) { border-right: none; }
  .feat-grid .feat:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .feat-grid .feat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 900px) {
  .nav, .hdr__cta .btn { display: none; }
  .burger { display: flex; }
  .hdr__cta .circle-arrow { display: none; }
  .services__accordion { flex-direction: column; }
  .svc { flex: none; }
  .svc:not(.is-open) .svc__num { font-size: 2rem; }
  .about__grid, .testi__grid, .connect__grid, .compare__cards { grid-template-columns: 1fr; }
  .testi__img { aspect-ratio: 16/10; }
  .steps, .price-grid { grid-template-columns: 1fr; }
  .price-grid { max-width: 460px; margin-inline: auto; }
  .blog__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid .feat { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .feat-grid .feat:last-child { border-bottom: none !important; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__badges { display: none; }
}

/* mobile nav drawer */
.drawer { position: fixed; inset: 0; z-index: 80; background: var(--navy); color: #fff; display: flex; flex-direction: column; padding: 28px var(--gutter); transform: translateX(100%); transition: transform .35s var(--ease); }
.drawer.open { transform: none; }
.drawer__x { align-self: flex-end; font-size: 2rem; color: #fff; width: 44px; height: 44px; }
.drawer a { font-family: var(--disp); text-transform: uppercase; font-size: 2rem; padding: 16px 0; border-bottom: 1px solid var(--line-dk); }

/* =========================================================
   FREE IN-HOME QUOTE
   ========================================================= */
.quote { padding-block: var(--section-y); }
.quote__card {
  background: var(--mist); border-radius: 34px; text-align: center;
  padding: clamp(40px, 6vw, 82px) clamp(24px, 5vw, 60px);
}
.quote__card .eyebrow { display: inline-block; }
.quote__card .section-title { margin-top: 14px; }
.quote__card .section-lead { margin-inline: auto; max-width: 640px; }
.quote__steps { display: flex; justify-content: center; gap: clamp(16px, 3vw, 44px); flex-wrap: wrap; margin: 34px 0 36px; }
.quote__step { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); font-size: 1rem; }
.quote__step span { font-size: 1.4rem; }
.quote__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) { .quote__steps { flex-direction: column; align-items: center; gap: 14px; } }

/* =========================================================
   ACCESSIBILITY — visible keyboard focus
   ========================================================= */
a:focus-visible, button:focus-visible, .btn:focus-visible, .circle-arrow:focus-visible,
.svc:focus-visible, .nav a:focus-visible, .footer__col a:focus-visible, .post__more:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
.svc:focus-visible { outline-offset: -3px; }
@media (prefers-reduced-motion: reduce) {
  .btn:hover, .circle-arrow:hover, .post:hover .post__media img { transform: none !important; }
}

/* =========================================================
   FOOTER — address, social, testimonial note
   ========================================================= */
.footer__addr { font-style: normal; color: var(--muted-2); font-size: .92rem; line-height: 1.8; margin-top: 20px; }
.footer__addr a { color: #fff; }
.footer__addr a:hover { color: var(--yellow); }
.footer__social { display: flex; gap: 18px; margin-top: 18px; }
.footer__social a { color: var(--yellow); font-size: .9rem; font-weight: 600; }
.footer__social a:hover { text-decoration: underline; }
.footer__copy { margin-top: 18px; }
.testi__note { margin-top: 18px; font-size: .8rem; color: var(--muted); font-style: italic; opacity: .8; }
