/* ================================================
   Installatiebedrijf Keyzer B.V. — Demo Site
   Palette: #F5C400 (geel) / #1A1A1A (near-black) / #FFFFFF
   Typeface: Barlow Condensed (headers) + Inter (body)
================================================ */

/* ---------- RESET & CUSTOM PROPS ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:    #F5C400;
  --yellow-d:  #D4A800;
  --bg:        #1A1A1A;
  --bg2:       #2C2C2C;
  --bg3:       #383838;
  --text:      #FFFFFF;
  --text-muted:#A0A0A0;
  --accent:    #4A4A4A;
  --border:    rgba(255,255,255,0.1);

  --ff-head:  'Barlow Condensed', sans-serif;
  --ff-body:  'Inter', sans-serif;

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;

  --nav-h: 68px;
  --trans: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }

/* ---------- IMAGE-FILL UTILITY ---------- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img-wrap img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---------- CONTAINER ---------- */
.container { width: min(100%, 1200px); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 2rem); }

/* ---------- SECTION BASE ---------- */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--dark { background: var(--bg2); }

.section-header { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-label {
  display: inline-block; font-family: var(--ff-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 0.6rem;
}
.section-label--yellow { color: var(--yellow); }
.section-title {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 0.8rem;
}
.section-title--light { color: var(--text); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- BTNS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 0.7em 1.5em; border-radius: var(--r-sm);
  cursor: pointer; transition: background var(--trans), color var(--trans), transform var(--trans),
    box-shadow var(--trans); white-space: nowrap; border: 2px solid transparent;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-d); border-color: var(--yellow-d); box-shadow: 0 8px 24px rgba(245,196,0,0.35); }

.btn-dark { background: var(--bg); color: var(--yellow); border-color: var(--bg); }
.btn-dark:hover { background: #111; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn-outline:hover { background: var(--yellow); color: var(--bg); }

.btn-outline-dark { background: transparent; color: var(--bg); border-color: var(--bg); }
.btn-outline-dark:hover { background: var(--bg); color: var(--yellow); }

.btn-lg { font-size: 1.15rem; padding: 0.8em 2em; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-head); font-size: 1.45rem; font-weight: 800;
  letter-spacing: 0.02em; color: var(--text); flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; }
.logo-sub { color: var(--yellow); }

.desktop-nav { margin-left: auto; }
.desktop-nav ul { display: flex; gap: 2rem; }
.desktop-nav a {
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); transition: color var(--trans);
}
.desktop-nav a:hover { color: var(--yellow); }

.header-tel {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
  color: var(--yellow); background: rgba(245,196,0,0.12);
  padding: 0.45em 1em; border-radius: var(--r-sm);
  border: 1px solid rgba(245,196,0,0.25);
  transition: background var(--trans);
  flex-shrink: 0;
}
.header-tel svg { width: 1em; height: 1em; }
.header-tel:hover { background: rgba(245,196,0,0.22); }

.mobile-menu__trigger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06); align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; padding: 10px;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform var(--trans), opacity var(--trans), width var(--trans);
}
.hamburger span:nth-child(3) { width: 16px; }

/* ---------- MOBILE MENU ---------- */
.mobile-menu__overlay {
  position: fixed; inset: 0;
  width: 100%; height: 100svh;
  background: var(--bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay.is-open { transform: translateX(0); }
.mobile-menu__panel { padding: 2rem 1.5rem; min-height: 100svh; display: flex; flex-direction: column; }
.mobile-menu__close {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 2rem; margin-left: auto;
  background: var(--bg2); border-radius: var(--r-sm);
  color: var(--text);
}
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu__logo {
  font-family: var(--ff-head); font-size: 1.8rem; font-weight: 800;
  color: var(--yellow); margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__list { flex: 1; }
.mobile-menu__item {
  display: block; font-family: var(--ff-head); font-size: 2rem; font-weight: 700;
  color: var(--text); padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans), padding-left var(--trans);
}
.mobile-menu__item:hover { color: var(--yellow); padding-left: 0.5rem; }
.mobile-menu__cta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26,26,26,0.88) 0%,
    rgba(26,26,26,0.72) 50%,
    rgba(26,26,26,0.4) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 680px;
  padding-block: clamp(3rem, 8vw, 5rem);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,196,0,0.15); border: 1px solid rgba(245,196,0,0.4);
  color: var(--yellow); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4em 0.9em; border-radius: 4px; margin-bottom: 1.5rem;
}
.hero__badge svg { width: 1em; height: 1em; }
.hero__title {
  font-family: var(--ff-head); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.02em;
  margin-bottom: 1.25rem; color: var(--text);
}
.hero__title .accent { color: var(--yellow); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--yellow);
  padding-block: 1rem;
}
.trust-bar__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 0.5rem 1rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
  color: var(--bg); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.trust-item svg { width: 1.1em; height: 1.1em; stroke: var(--bg); flex-shrink: 0; }
.trust-divider {
  width: 1px; height: 1.4em;
  background: rgba(26,26,26,0.25);
}

/* ---------- CARD GRID ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg2); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

.card__img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.04); }

.card__body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem;
}
.card__body--tall { padding: 2rem; }
.card__body--accent { padding: 2rem; }

.card__icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(245,196,0,0.12); border: 1px solid rgba(245,196,0,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--yellow); margin-bottom: 0.4rem;
}
.card__icon svg { width: 22px; height: 22px; }
.card__icon--dark {
  background: rgba(26,26,26,0.2); border-color: rgba(26,26,26,0.3);
  color: var(--bg);
}
.card__tag {
  display: inline-flex; align-items: center;
  background: rgba(26,26,26,0.2); color: var(--bg);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25em 0.7em; border-radius: 4px; width: fit-content;
}
.card__title {
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800;
  line-height: 1.1; color: var(--text);
}
.card__title--dark { color: var(--bg); }
.card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; flex: 1; }
.card__text--dark { color: rgba(26,26,26,0.75); }

.card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--ff-head); font-size: 0.95rem; font-weight: 700;
  color: var(--yellow); text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: auto; padding-top: 0.75rem;
  transition: gap var(--trans);
}
.card__link svg { width: 1em; height: 1em; }
.card__link:hover { gap: 0.7rem; }

.card__list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; flex: 1; }
.card__list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.card__list svg { width: 1em; height: 1em; color: var(--yellow); flex-shrink: 0; }

.card--accent { background: var(--yellow); border-color: var(--yellow-d); }
.card--accent:hover { box-shadow: 0 12px 40px rgba(245,196,0,0.3); }

/* ---------- OVER ONS ---------- */
.over-ons-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.over-ons__text {
  color: var(--text-muted); font-size: 1rem; line-height: 1.7;
  margin-bottom: 1rem;
}
.over-ons__feats { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.feat-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; background: var(--bg3);
  border-radius: var(--r-md); border-left: 3px solid var(--yellow);
}
.feat-item svg { width: 24px; height: 24px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.feat-item strong { display: block; font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 0.1rem; }
.feat-item span { font-size: 0.85rem; color: var(--text-muted); }

.over-ons__visual { position: relative; }
.over-ons__img-wrap {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r-lg);
  border: 2px solid var(--border);
}
.over-ons__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.kiwa-badge {
  position: absolute; bottom: -1rem; left: -1rem;
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--yellow); color: var(--bg);
  padding: 0.9rem 1.25rem; border-radius: var(--r-md);
  box-shadow: 0 8px 28px rgba(245,196,0,0.35);
}
.kiwa-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.kiwa-badge strong { display: block; font-family: var(--ff-head); font-size: 1.1rem; font-weight: 800; line-height: 1; }
.kiwa-badge span { display: block; font-size: 0.75rem; font-weight: 600; opacity: 0.75; }

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--bg2); border-radius: var(--r-lg);
  padding: 2rem; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.review-card--featured {
  border-color: rgba(245,196,0,0.3);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(245,196,0,0.06) 100%);
}

.review-stars { display: flex; gap: 0.2rem; }
.star { width: 18px; height: 18px; }

.review-quote {
  font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.85);
  line-height: 1.65; flex: 1;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 0.9rem; font-weight: 800;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--yellow);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.cta-band__content { display: flex; align-items: center; gap: 1.25rem; }
.cta-band__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: rgba(26,26,26,0.12); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--bg);
}
.cta-band__icon svg { width: 28px; height: 28px; }
.cta-band__title {
  font-family: var(--ff-head); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--bg); line-height: 1.1;
}
.cta-band__sub { font-size: 0.95rem; color: rgba(26,26,26,0.65); margin-top: 0.3rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.contact-intro { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; line-height: 1.6; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--bg3);
  border-radius: var(--r-md);
}
.contact-item svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.contact-item span { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.1rem; }
.contact-item strong { display: block; font-size: 0.95rem; }
.contact-item a { color: var(--yellow); font-weight: 600; font-size: 0.95rem; transition: color var(--trans); }
.contact-item a:hover { color: #fff; }

/* ---------- FORM ---------- */
.contact-form-wrap { background: var(--bg3); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--border); }
.contact-form h3 { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
label span { color: var(--yellow); }
input, textarea, select {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text);
  padding: 0.75rem 1rem; font-family: var(--ff-body); font-size: 0.95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,0.15);
}
textarea { resize: vertical; min-height: 110px; }
select option { background: var(--bg2); }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }
.form-note a { color: var(--yellow); }

/* ---------- FOOTER ---------- */
.footer-kit {
  background: #0F0F0F;
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800;
  color: var(--text); margin-bottom: 1rem;
}
.footer-logo small { color: var(--yellow); }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.footer-cert {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--yellow);
  background: rgba(245,196,0,0.08); padding: 0.5em 0.8em;
  border-radius: var(--r-sm); border: 1px solid rgba(245,196,0,0.2);
  width: fit-content;
}
.footer-cert svg { width: 1em; height: 1em; }

.footer-col h4 {
  font-family: var(--ff-head); font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem; color: var(--text-muted);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--yellow); }

.footer-col--contact address p {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.footer-col--contact svg { width: 1em; height: 1em; flex-shrink: 0; margin-top: 3px; color: var(--yellow); }
.footer-col--contact a { color: var(--text-muted); transition: color var(--trans); }
.footer-col--contact a:hover { color: var(--yellow); }

.footer-hours { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.footer-hours strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.footer-hours p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.footer-emergency { color: var(--yellow) !important; font-weight: 600 !important; }
.footer-emergency a { color: var(--yellow) !important; }

.footer-bottom { padding-block: 1.25rem; }
.footer-bottom__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- STICKY CTA (MOBILE) ---------- */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.sticky-cta__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.85em 1em; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--bg);
  transition: background var(--trans);
}
.sticky-cta__btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.sticky-cta__btn:hover { background: var(--yellow-d); }
.sticky-cta__btn--outline {
  background: var(--bg2); color: var(--text);
  border: 1px solid var(--border); max-width: 130px;
}
.sticky-cta__btn--outline:hover { background: var(--bg3); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .over-ons-grid { grid-template-columns: 1fr; }
  .over-ons__visual { order: -1; }
  .kiwa-badge { left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .desktop-nav, .header-tel { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .trust-bar__inner { gap: 0.4rem 0.8rem; }
  .trust-divider { display: none; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__content { flex-direction: column; text-align: center; }
  .cta-band__actions { width: 100%; flex-direction: column; }

  .footer-kit__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .sticky-cta { display: flex; }
  .footer-kit { padding-bottom: 4.5rem; }
  body { padding-bottom: 0; }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .trust-item { font-size: 0.85rem; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
