/* =========================================================
   Darwish Tolkdiensten — style.css
   Palette: #105298 + gradients · White mode · Glass + blur
   ========================================================= */

:root {
  --brand: #105298;
  --brand-600: #0d447f;
  --brand-700: #0a2f5e;
  --brand-800: #07223f;
  --brand-light: #2b7de0;
  --brand-lighter: #5aa0ef;
  --accent: #1e6fd0;

  --grad-brand: linear-gradient(135deg, #105298 0%, #1e6fd0 55%, #2b8ae0 100%);
  --grad-deep: linear-gradient(135deg, #07223f 0%, #0a2f5e 50%, #105298 100%);
  --grad-soft: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);

  --wa: #25d366;
  --wa-dark: #1da851;

  --ink: #0f1b2d;
  --ink-soft: #44546b;
  --muted: #6b7a90;
  --line: #e4ebf5;
  --bg: #ffffff;
  --bg-alt: #f4f8ff;
  --white: #ffffff;

  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 4px 14px rgba(16, 82, 152, 0.08);
  --shadow-md: 0 14px 40px rgba(16, 82, 152, 0.12);
  --shadow-lg: 0 26px 70px rgba(16, 82, 152, 0.20);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1200px;
  --header-h: 80px;

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --t: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  margin-bottom: 1.1rem;
}
.eyebrow-dark {
  color: var(--brand);
  border-color: rgba(16, 82, 152, 0.2);
  background: rgba(16, 82, 152, 0.06);
}

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--ink);
}
.section-title--light { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1rem; }
.section-sub--light { color: rgba(255, 255, 255, 0.82); }

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }

.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; color: var(--brand); transform: translateY(-3px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
  height: 68px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand-logo { height: 42px; width: auto; transition: height var(--t); }
.site-header.scrolled .brand-logo { height: 36px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 0.35rem; }
.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  position: relative;
  transition: color var(--t), background var(--t);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0.3rem;
  width: 0; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--t);
}
.nav-link:hover::after, .nav-link.active::after { width: 45%; }
.site-header.scrolled .nav-link { color: var(--ink); }
.nav-link.active { color: #fff; }
.site-header.scrolled .nav-link.active { color: var(--brand); }
.nav-cta { color: #fff; }

/* close button inside mobile menu (hidden on desktop) */
.nav-close {
  display: none;
  position: absolute;
  top: 1rem; right: 1.1rem;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--brand);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.nav-close:hover { background: var(--brand); color: #fff; transform: rotate(90deg); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.site-header.scrolled .nav-toggle { background: rgba(16,82,152,0.08); border-color: var(--line); }
.site-header.scrolled .nav-toggle span { background: var(--brand); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
  z-index: -2;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(7,34,63,0.92) 0%, rgba(13,68,127,0.80) 45%, rgba(16,82,152,0.55) 100%),
    radial-gradient(ellipse at 80% 90%, rgba(43,138,224,0.35), transparent 60%);
  z-index: -1;
}
.hero-content { padding: calc(var(--header-h) + 2rem) 0 5rem; max-width: 820px; margin-inline: 0; }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 6px 30px rgba(0,0,0,0.25);
}
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-badge {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  display: flex; justify-content: center;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 4px;
  margin-top: 7px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{ transform: translateY(0); opacity:1 } 50%{ transform: translateY(12px); opacity:.3 } }

/* ============ INTRO ============ */
.intro { background: var(--grad-soft); padding: clamp(4rem, 8vw, 6.5rem) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro-text p { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.06rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.stat-card {
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-num span { font-size: 0.6em; }
.stat-label { display: block; margin-top: 0.5rem; color: var(--muted); font-size: 0.92rem; font-weight: 500; }

/* ============ DIENSTEN ============ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(16,82,152,0.1), rgba(43,138,224,0.12));
  color: var(--brand);
  margin-bottom: 1.3rem;
  transition: transform var(--t), background var(--t), color var(--t);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 1.22rem; color: var(--ink); margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-soft); font-size: 1rem; }
.service-card--accent { background: var(--grad-deep); border-color: transparent; }
.service-card--accent::before { display: none; }
.service-card--accent h3, .service-card--accent p { color: #fff; }
.service-card--accent p { color: rgba(255,255,255,0.85); }
.service-card--accent .service-icon { background: rgba(255,255,255,0.15); color: #fff; }
.service-card--accent:hover .service-icon { background: #fff; color: var(--brand); }
.lang-list { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.lang-list li {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ============ OVER MIJ ============ */
.about { background: var(--grad-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-photo:hover img { transform: scale(1.05); }
.about-photo--main { aspect-ratio: 3 / 4; }
.about-photo--sub {
  position: absolute;
  right: -12%; bottom: -12%;
  width: 52%;
  aspect-ratio: 3 / 4;
  padding: 6px;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.about-photo--sub img { border-radius: 16px; }
.about-text .section-title { margin-bottom: 0.3rem; }
.about-role { font-family: var(--font-head); font-weight: 600; color: var(--brand); margin-bottom: 1.3rem; }
.about-text p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.05rem; }
.about-text strong { color: var(--ink); font-weight: 700; }

.impact {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
}
.impact-photo { min-height: 280px; }
.impact-photo img { width: 100%; height: 100%; object-fit: cover; }
.impact-text { padding: clamp(2rem, 4vw, 3rem); }
.impact-text h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--ink); margin-bottom: 0.8rem; }
.impact-text p { color: var(--ink-soft); }

/* ============ WAAROM ============ */
.why { background: var(--grad-deep); position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,138,224,0.4), transparent 70%);
  filter: blur(40px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  position: relative;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.35); }
.why-check {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #fff; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 1.1rem;
}
.why-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.78); font-size: 0.98rem; }
.why-card--cta {
  background: #fff;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 0.6rem;
}
.why-card--cta h3 { color: var(--brand-700); }
.why-card--cta p { color: var(--ink-soft); }
.why-card--cta .btn { margin-top: 0.6rem; }

/* ============ CONTACT ============ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.contact-card {
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.35rem;
  transition: transform var(--t), box-shadow var(--t);
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.contact-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(16,82,152,0.1), rgba(43,138,224,0.14));
  color: var(--brand);
  margin-bottom: 0.9rem;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-label { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-value { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; word-break: break-word; }
.contact-card--whatsapp { background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(29,168,81,0.06)); border-color: rgba(37,211,102,0.3); }
.contact-card--whatsapp .contact-icon { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; }

/* ============ FOOTER ============ */
.site-footer { background: var(--brand-800); color: rgba(255,255,255,0.75); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.98rem; max-width: 360px; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  transition: transform var(--t), background var(--t);
}
.socials a svg { width: 20px; height: 20px; }
.socials a:hover { transform: translateY(-4px); background: var(--grad-brand); }
.footer-links h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { transition: color var(--t); }
.footer-links a:hover { color: var(--brand-lighter); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.4rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-credit a { color: var(--brand-lighter); font-weight: 700; transition: color var(--t); }
.footer-credit a:hover { color: #fff; }

/* ============ FLOATING WHATSAPP (left) ============ */
.wa-float {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: transform var(--t);
}
.wa-float svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--wa);
  animation: waPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse { 0%{ transform: scale(1); opacity:.6 } 100%{ transform: scale(1.8); opacity:0 } }

/* ============ SCROLL TO TOP (right) ============ */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-brand);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16,82,152,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(16,82,152,0.5); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84%, 340px);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 5.5rem 1.6rem 2rem;
    background: #ffffff;
    background-image: linear-gradient(180deg, #f4f8ff 0%, #ffffff 30%);
    box-shadow: -20px 0 60px rgba(7,34,63,0.28);
    transform: translateX(105%);
    transition: transform var(--t);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-close { display: flex; }
  .nav-list { flex-direction: column; gap: 0.2rem; }
  .nav-link { color: var(--ink); padding: 0.85rem 1rem; border-radius: 12px; }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { background: var(--bg-alt); color: var(--brand); }
  .nav-cta { justify-content: center; margin-top: 0.6rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 0 auto 2.5rem; }
  .impact { grid-template-columns: 1fr; }
  .impact-photo { min-height: 240px; }
}

@media (max-width: 560px) {
  .services-grid, .why-grid, .contact-grid, .stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-photo--sub { right: 0; width: 46%; }
  .wa-float { width: 54px; height: 54px; left: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

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