/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --primary:                  #004cca;
  --primary-container:        #0062ff;
  --on-primary:               #ffffff;
  --on-primary-fixed:         #00174b;
  --secondary-container:      #bcd2fe;
  --on-secondary-container:   #445a7f;
  --tertiary:                 #0e5c86;
  --error:                    #ba1a1a;
  --on-error:                 #ffffff;
  --surface:                  #f7fafd;
  --surface-container-lowest: #ffffff;
  --surface-container-low:    #f1f4f7;
  --surface-container:        #ebeef1;
  --on-surface:               #181c1e;
  --on-surface-variant:       #424656;
  --outline-variant:          #c2c6d9;
  --r:     1rem;   /* radius default */
  --r-lg:  2rem;   /* radius large   */
  --r-xl:  3rem;
  --r-full:9999px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Public Sans', sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }
textarea { resize: vertical; }
::selection { background: var(--secondary-container); color: var(--on-secondary-container); }

/* ============================================================
   ICONS
============================================================ */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.icon-fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   NAVIGATION
============================================================ */

/* ---- Burger (CSS-only checkbox toggle) ---- */
.nav__toggle { display: none; }

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  margin-right: -.5rem;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-primary-fixed);
  border-radius: var(--r-full);
  transition: transform .3s ease, opacity .3s ease;
}
/* Animate to × when open */
.nav__toggle:checked ~ .nav__inner .nav__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle:checked ~ .nav__inner .nav__burger span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav__toggle:checked ~ .nav__inner .nav__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  padding: .5rem 1.5rem 1.5rem;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav__toggle:checked ~ .nav__drawer { display: block; }
.nav__drawer a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 0;
  color: var(--on-primary-fixed);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,76,202,.06);
  transition: color .2s;
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a:hover     { color: var(--primary); }
.nav__drawer__contact    { color: var(--primary) !important; font-weight: 600 !important; }
.nav__drawer__divider    { height: 1px; background: rgba(0,76,202,.1); margin: .5rem 0; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 8px rgba(0,76,202,.06);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.nav__left  { display: flex; align-items: center; gap: 2rem; }
.nav__logo { display: flex; align-items: center; gap: .75rem; }
.nav__logo img { height: 2.5rem; width: auto; object-fit: contain; }
.nav__logo-name { font-size: 1.25rem; font-weight: 800; color: var(--on-primary-fixed); letter-spacing: -0.02em; }

.nav__links { display: none; align-items: center; gap: 1.5rem; }
.nav__links a {
  color: rgba(0,23,75,.68);
  font-size: .875rem;
  display: flex; align-items: center; gap: .25rem;
  transition: color .25s;
}
.nav__links a:hover { color: var(--primary-container); }

.nav__right { display: flex; align-items: center; gap: 1.5rem; }
.nav__contact {
  display: none;
  align-items: center;
  gap: .5rem;
  color: var(--on-primary-fixed);
  font-weight: 600;
  font-size: .875rem;
}
.nav__contact .material-symbols-outlined { color: var(--primary); }
.nav__contact--phone { display: none; }
.nav__contact--email { display: none; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0 3rem;
  background: var(--surface);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--primary), var(--tertiary), var(--surface-container-lowest));
  opacity: .10;
}
.hero__glow-tr {
  position: absolute; top: -6rem; right: -6rem; z-index: 0;
  width: 24rem; height: 24rem;
  background: rgba(0,76,202,.2);
  border-radius: var(--r-full);
  filter: blur(120px);
}
.hero__glow-bl {
  position: absolute; bottom: -6rem; left: -6rem; z-index: 0;
  width: 24rem; height: 24rem;
  background: rgba(14,92,134,.2);
  border-radius: var(--r-full);
  filter: blur(120px);
}
.hero__body { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.hero__content { display: flex; flex-direction: column; gap: 1.5rem; }

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid;
  font-weight: 500;
  font-size: .875rem;
  width: fit-content;
  white-space: nowrap;
  animation: badge-toggle 10s infinite;
}
.hero__dot-wrap {
  position: relative;
  display: flex;
  height: .5rem; width: .5rem;
}
.hero__dot-ping {
  position: absolute;
  display: inline-flex;
  height: 100%; width: 100%;
  border-radius: var(--r-full);
  opacity: .75;
  animation: dot-toggle 10s infinite, shake .5s infinite;
}
.hero__dot {
  position: relative;
  display: inline-flex;
  border-radius: var(--r-full);
  height: .5rem; width: .5rem;
  animation: dot-toggle 10s infinite;
}
.hero__badge-text::after {
  content: "30 ans d'expertise en froid et climatisation";
  animation: text-toggle 10s infinite;
}

/* Heading */
.hero__title {
  font-size: clamp(2.025rem, 4.5vw, 3.375rem);
  font-weight: 800;
  color: var(--on-primary-fixed);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__lead {
  font-size: 1.125rem;
  color: var(--on-surface-variant);
  line-height: 1.65;
  max-width: 36rem;
}

/* CTA row */
.hero__ctas { display: flex; flex-direction: column; align-items: stretch; gap: 1rem; }
.hero__ctas .btn { width: 100%; justify-content: center; }

/* ---- Buttons (shared) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--r-full);
  padding: 1rem 2rem;
  transition: background .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
  border: 2px solid transparent;
  box-shadow: 0 20px 40px rgba(0,76,202,.2);
}
.btn--primary:hover { background: var(--primary-container); box-shadow: 0 20px 40px rgba(0,76,202,.3); }
.btn--ghost {
  background: var(--surface-container-lowest);
  color: var(--primary);
  border: 2px solid rgba(0,76,202,.2);
}
.btn--ghost:hover { border-color: var(--primary); }
.btn--white {
  background: #fff;
  color: var(--on-primary-fixed);
  border: 2px solid transparent;
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.btn--white:hover { background: #eff6ff; }
.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: var(--on-primary);
  border: 2px solid transparent;
  box-shadow: 0 20px 40px rgba(0,76,202,.2);
}
.btn--submit:hover { background: var(--primary-container); }

/* Hero image column */
.hero__img-col { position: relative; }
.hero__img-wrap { position: relative; }
.hero__img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.14);
  transform: rotate(1deg);
  transition: transform .5s ease;
}
.hero__img-wrap:hover .hero__img-frame { transform: rotate(0deg); }
.hero__img-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__rating {
  display: none;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(50%);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-radius: var(--r);
  box-shadow: 0 20px 40px rgba(0,76,202,.1);
  border: 1px solid rgba(255,255,255,.4);
  width: 18rem;
  z-index: 20;
  text-align: center;
}
.hero__stars { display: flex; gap: .25rem; justify-content: center; color: #f59e0b; margin-bottom: .25rem; }
.hero__stars .material-symbols-outlined { font-size: 1.25rem; }
.hero__rating-title { color: var(--on-primary-fixed); font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.hero__rating-sub   { font-size: .75rem; color: var(--on-surface-variant); }

/* ============================================================
   REASSURANCE BAR
============================================================ */
.reassurance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,76,202,.1);
  border-bottom: 1px solid rgba(0,76,202,.1);
}
.reassurance__item { display: flex; align-items: center; gap: .75rem; }
.reassurance__icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: rgba(0,76,202,.1);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.reassurance__icon .material-symbols-outlined { font-size: 1.2rem; }
.reassurance__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--on-primary-fixed);
  text-transform: uppercase;
  line-height: 1.3;
}

/* ============================================================
   TRUSTED BY
============================================================ */
.trusted { padding-top: 2rem; text-align: center; }
.trusted__label {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .2em;
  font-size: .625rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.trusted__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: .6;
  filter: grayscale(1);
  transition: opacity .5s, filter .5s;
}
.trusted__logos:hover { opacity: 1; filter: grayscale(0); }

/* Uniform white square tile */
.trusted__tile {
  width: 6.5rem;
  height: 6.5rem;
  background: #ffffff;
  border-radius: var(--r);
  box-shadow: 0 2px 12px rgba(0,76,202,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .875rem;
  flex-shrink: 0;
}
.trusted__tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* "+436 clients" tile */
.trusted__tile--count {
  flex-direction: column;
  gap: .2rem;
}
.trusted__count-num {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trusted__count-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--on-surface-variant);
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 6rem 0;
  background: var(--surface-container-low);
}
.services__head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.services__head-text { max-width: 42rem; }

.section-label {
  display: block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .875rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--on-primary-fixed);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.services__more {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: .9375rem;
  white-space: nowrap;
  transition: gap .2s;
}
.services__more:hover { gap: .75rem; }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.card {
  background: var(--surface-container-lowest);
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(194,198,217,.15);
  box-shadow: 0 2px 8px rgba(0,76,202,.04);
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: 0 20px 48px rgba(0,76,202,.1); transform: translateY(-.5rem); }

.card__icon {
  width: 3.5rem; height: 3.5rem;
  background: #eff6ff;
  color: var(--primary);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.card__icon .material-symbols-outlined { font-size: 1.75rem; }
.card__title { font-size: 1.25rem; font-weight: 700; color: var(--on-primary-fixed); margin-bottom: .75rem; }
.card__desc  { color: var(--on-surface-variant); font-size: .875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.card__link  {
  display: inline-flex; align-items: center;
  color: var(--primary); font-size: .875rem; font-weight: 700; gap: .25rem;
  transition: gap .2s;
}
.card__link:hover { gap: .5rem; }

/* ============================================================
   CONVERSION STRIP
============================================================ */
.strip {
  background: var(--on-primary-fixed);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,76,202,.1);
  mix-blend-mode: overlay;
}
.strip__inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  text-align: left;
}
.strip__left { display: flex; align-items: center; gap: 1.5rem; }
.strip__icon {
  width: 4rem; height: 4rem; flex-shrink: 0;
  background: var(--error);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}
.strip__icon .material-symbols-outlined { color: var(--on-error); font-size: 1.75rem; }
.strip__title { font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 700; color: #fff; }
.strip__sub   { color: rgba(186,230,253,.7); font-size: .9375rem; margin-top: .25rem; }

/* ============================================================
   QUOTE FORM
============================================================ */
.form-section { padding: 6rem 0; background: var(--surface); }
.form-section__head { text-align: center; margin-bottom: 3rem; }
.form-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--on-primary-fixed);
  letter-spacing: -0.02em;
  margin: 1rem 0 2rem;
}
.form-section__lead {
  color: var(--on-surface-variant);
  font-size: 1.125rem;
  max-width: 38rem;
  margin: 0 auto;
}

.form-card {
  background: var(--surface-container-lowest);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,76,202,.07);
  max-width: 48rem;
  margin: 0 auto;
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-col  { display: flex; flex-direction: column; gap: .5rem; }
.form-col + .form-col { margin-top: 0; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }

.form-label { font-size: .875rem; font-weight: 700; color: var(--on-primary-fixed); }
.form-control {
  width: 100%;
  background: var(--surface-container-low);
  border: 1.5px solid transparent;
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  font-size: 1rem;
  color: var(--on-surface);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-control:focus   { border-color: var(--primary); }
.form-control::placeholder { color: var(--outline-variant); }

.antispam {
  padding: 1rem;
  background: rgba(188,210,254,.1);
  border-radius: var(--r);
  border: 1px solid rgba(0,76,202,.1);
  margin-bottom: 1.5rem;
}
.antispam__hint {
  font-size: .75rem;
  color: var(--on-surface-variant);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .75rem;
}
.antispam__hint .material-symbols-outlined { font-size: .875rem; }
.antispam__row  { display: flex; align-items: center; gap: 1rem; }
.antispam__q    { font-weight: 700; color: var(--on-primary-fixed); }
.antispam__input {
  width: 5rem;
  background: var(--surface-container-low);
  border: 1.5px solid transparent;
  border-radius: var(--r);
  padding: .5rem .75rem;
  font-size: 1rem;
  color: var(--on-surface);
  outline: none;
  transition: border-color .2s;
}
.antispam__input:focus { border-color: var(--primary); }
.form-feedback {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--r);
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.form-feedback--error {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(186,26,26,.08);
  color: #ba1a1a;
  border: 1px solid rgba(186,26,26,.18);
}
.form-feedback--success {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,76,202,.08);
  color: #00174b;
  border: 1px solid rgba(0,76,202,.18);
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #f8fafc; border-top: 1px solid rgba(186,230,253,.25); }
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer__brand-name { font-size: 1.25rem; font-weight: 700; color: #1e3a5f; margin-bottom: 1rem; }
.footer__brand-desc { color: rgba(30,58,95,.6); font-size: .9375rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer__socials    { display: flex; gap: 1rem; }
.footer__social {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--r-full);
  background: rgba(186,230,253,.5);
  display: flex; align-items: center; justify-content: center;
  color: #1e3a5f;
  transition: background .25s, color .25s;
}
.footer__social:hover { background: var(--primary); color: #fff; }

.footer__col-title {
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  margin-bottom: 1.5rem;
}
.footer__contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-item {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(30,58,95,.6);
  font-size: .9375rem;
}
.footer__contact-item .material-symbols-outlined { color: var(--primary); }
.footer__nav-list   { display: flex; flex-direction: column; gap: 1rem; }
.footer__nav-list a { color: rgba(30,58,95,.6); font-size: .9375rem; transition: color .25s; }
.footer__nav-list a:hover { color: #1d4ed8; }

.footer__bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid rgba(186,230,253,.1);
}
.footer__copy { color: rgba(30,58,95,.4); font-size: .75rem; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes badge-toggle {
  0%,49.9%  { background-color: rgba(0,23,75,.08);   border-color: rgba(0,23,75,.18);    color: #00174b; }
  50%,100%  { background-color: rgba(0,76,202,.10);  border-color: rgba(0,76,202,.22);   color: #004cca; }
}
@keyframes dot-toggle {
  0%,49.9% { background-color: #00174b; }
  50%,100% { background-color: #004cca; }
}
@keyframes shake {
  0%,50%,100%            { transform: translate(0,0); }
  5%,15%,25%,35%,45%    { transform: translate(-1px,-1px); }
  10%,20%,30%,40%       { transform: translate(1px,1px); }
}
@keyframes text-toggle {
  0%,49.9% { content: "30 ans d'expertise en froid commercial"; }
  50%,100% { content: "30 ans d'expertise en climatisation"; }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.75; transform:scale(.93); }
}

/* ============================================================
   RESPONSIVE — mobile only (< 640px)
============================================================ */
@media (max-width: 639px) {
  .wrap            { padding: 0 1.25rem; }
  .nav__inner      { padding: .875rem 1.25rem; }

  /* Hero */
  .hero            { padding: 1rem 0 2rem; }
  .hero__grid      { gap: 1.75rem; margin-bottom: 1.75rem; }
  .hero__title     { font-size: 1.875rem; }
  .hero__lead      { font-size: 1rem; }
  .btn             { font-size: .9375rem; padding: .875rem 1.5rem; }
  .btn--white      { font-size: .9375rem; padding: .875rem 1.5rem; }

  /* Buttons — full-width, equal size, centered */
  .hero__ctas           { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn      { width: 100%; justify-content: center; }

  /* Reassurance — keep 2-col but tighter */
  .reassurance     { gap: 1rem; }
  .reassurance__label { font-size: .625rem; }

  /* Trusted logos — 3 per row at 5.5rem */
  .trusted__tile   { width: 5.5rem; height: 5.5rem; padding: .625rem; }
  .trusted__logos  { gap: .875rem; }
  .trusted__count-num { font-size: 1.125rem; }

  /* Sections */
  .services        { padding: 3rem 0; }
  .services__head  { gap: 1rem; margin-bottom: 2rem; }
  .card            { padding: 1.5rem; }

  /* Conversion strip */
  .strip           { padding: 2rem 0; }
  .strip__left     { gap: 1rem; }
  .strip__title    { font-size: 1.125rem; }
  .strip .btn--white { width: 100%; justify-content: center; }

  /* Form */
  .form-section    { padding: 3rem 0; }
  .form-section__title { font-size: 1.75rem; }
  .form-section__lead  { font-size: 1rem; }
  .form-card       { padding: 1.5rem; }

  /* Footer */
  .footer__main    { padding: 2.5rem 1.25rem; gap: 2rem; }
  .footer__bottom  { padding: 1.25rem; }
}

/* ============================================================
   RESPONSIVE — md 768px
============================================================ */
@media (min-width: 768px) {
  .reassurance         { grid-template-columns: repeat(4,1fr); }
  .services__head      { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .services__grid      { grid-template-columns: 1fr 1fr; }
  .form-row            { grid-template-columns: 1fr 1fr; }
  .footer__main        { grid-template-columns: repeat(3,1fr); }
  .trusted__logos { gap: 1.75rem; }
  .trusted__tile  { width: 7.5rem; height: 7.5rem; }
}

/* ============================================================
   RESPONSIVE — lg 1024px
============================================================ */
@media (min-width: 1024px) {
  .nav__burger          { display: none; }
  .nav__drawer          { display: none !important; }
  .nav__links           { display: flex; }
  .nav__contact--phone  { display: flex; }
  .hero                 { padding: 1.5rem 0 3rem; }
  .hero__grid           { grid-template-columns: 1fr 1fr; }
  .hero__rating         { display: block; }
  .hero__img-col        { padding-bottom: 3.5rem; }
  .services__grid       { grid-template-columns: repeat(4,1fr); }
  .strip__inner         { flex-direction: row; text-align: left; justify-content: space-between; }
}

/* ============================================================
   RESPONSIVE — xl 1280px
============================================================ */
@media (min-width: 1280px) {
  .nav__contact--email { display: flex; }
}

/* ============================================================
   INNER PAGE HERO
============================================================ */
.page-hero {
  background: linear-gradient(135deg, #00174b 0%, #004cca 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero__label {
  display: inline-block;
  color: rgba(188,210,254,.8);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  max-width: 36rem;
  margin: 0 auto;
}

/* Content sections */
.content-section {
  padding: 5rem 0;
  background: var(--surface);
}
.content-section--alt {
  background: var(--surface-container-low);
}
.content-section__header {
  margin-bottom: 3rem;
}
.prose {
  color: var(--on-surface-variant);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 48rem;
}
.prose p + p { margin-top: 1.25rem; }

/* Shop product card */
.product-card {
  background: var(--surface-container-lowest);
  border-radius: var(--r-lg);
  border: 1px solid rgba(194,198,217,.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: box-shadow .3s, transform .3s;
}
.product-card:hover { box-shadow: 0 20px 48px rgba(0,76,202,.1); transform: translateY(-.5rem); }
.product-card__icon {
  width: 4rem; height: 4rem;
  background: rgba(0,76,202,.08);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.product-card__icon .material-symbols-outlined { font-size: 2rem; }
.product-card__name { font-weight: 700; color: var(--on-primary-fixed); font-size: 1rem; }
.product-card__badge {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  background: rgba(0,76,202,.08);
  padding: .25rem .75rem;
  border-radius: var(--r-full);
}

/* Legal/privacy pages */
.legal-content {
  max-width: 52rem;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-primary-fixed);
  margin: 2.5rem 0 .75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--on-surface-variant);
  font-size: .9375rem;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: .5rem;
}
.legal-content li + li { margin-top: .375rem; }

/* Active nav link */
.nav__links a.active,
.nav__drawer a.active { color: var(--primary); font-weight: 700; }

@media (max-width: 639px) {
  .page-hero { padding: 3rem 0 2.5rem; }
  .content-section { padding: 3rem 0; }
}
