:root {
  --bg: #ffffff;
  --bg-soft: #f5f6f7;
  --bg-deep: #121417;
  --bg-deep-2: #1f2328;
  --text: #101214;
  --text-soft: #646b74;
  --line: rgba(16, 18, 20, 0.09);
  --accent: #c62828;
  --accent-dark: #a01f1f;
  --white: #ffffff;
  --container: 1100px;
  --container-narrow: 980px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(16, 18, 20, 0.08);
  --shadow-soft: 0 12px 36px rgba(16, 18, 20, 0.05);
  --section-space: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 18, 20, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(102px, 12vw, 138px);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 0.96rem;
  font-weight: 700;
  color: #2a2f35;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(198, 40, 40, 0.2);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(16,18,20,0.82) 0%, rgba(16,18,20,0.68) 42%, rgba(16,18,20,0.58) 100%),
    radial-gradient(circle at top left, rgba(198, 40, 40, 0.18), transparent 35%),
    url('../images/hero-hassellbouw-banner.png') center bottom/cover no-repeat,
    linear-gradient(135deg, #101214 0%, #161b20 55%, #1f2328 100%);
  color: var(--white);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  width: min(100%, var(--container-narrow));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  padding: 92px 0 110px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(198, 40, 40, 0.12);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ========================
   Handwriting animatie
   ======================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-handwrite {
  margin-bottom: 18px;
  overflow: visible;
}

.hero-handwrite svg {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  display: block;
}

.hw-line-1,
.hw-line-2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 58px;
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 1.4px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hw-line-1 {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation:
    hw-draw 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s,
    hw-fill 0.5s ease forwards 2.1s;
}

.hw-line-2 {
  stroke-dasharray: 3500;
  stroke-dashoffset: 3500;
  animation:
    hw-draw 2.0s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.8s,
    hw-fill 0.5s ease forwards 3.8s;
}

@keyframes hw-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes hw-fill {
  to {
    fill: rgba(255, 255, 255, 0.95);
    stroke: transparent;
  }
}

.hero-copy h1,
.section-title,
.hero-panel h2,
.contact-cta h2,
.contact-card h3,
.service-card h3,
.process-card h3,
.project-content h3,
.feature-list h3 {
  font-family: 'Montserrat', sans-serif;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.mini-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.hero-list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.4rem;
}

.hero-contact-box {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-contact-box span,
.contact-card li span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 4px;
}

.hero-contact-box a {
  font-weight: 800;
}

.stats {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}

.stat-card span {
  color: var(--text-soft);
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-text {
  margin: 0;
  color: var(--text-soft);
  max-width: 720px;
  font-size: 1.04rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-text-right {
  max-width: 420px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-list article,
.service-card,
.process-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-list article {
  padding: 22px 24px;
}

.feature-list h3,
.service-card h3,
.process-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.feature-list p,
.service-card p,
.process-card p,
.project-content p,
.contact-card li,
.contact-cta p {
  margin: 0;
  color: var(--text-soft);
}

.visual-card {
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(16,18,20,0.08), rgba(16,18,20,0.48)),
    url('../images/project-nieuwbouw-baksteen.jpg') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.visual-card::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
}

.visual-card::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(198, 40, 40, 0.85), rgba(198, 40, 40, 0.2));
  transform: rotate(22deg);
}

.visual-card-inner {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  color: #fff;
}

.visual-label,
.project-content span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.88rem;
  font-weight: 700;
}

.visual-card-inner strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.visual-card-inner p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,0.75);
}

.services-section {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
  transition: transform 0.2s ease;
}

.service-card:hover,
.process-card:hover,
.project-card:hover {
  transform: translateY(-3px);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(198, 40, 40, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.service-icon svg {
  display: block;
  flex-shrink: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  padding: 28px;
}

.process-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #111417;
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.projects-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
}

/* ── Navigatiebalk boven de grid ── */
.projects-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.projects-counter {
  font-size: 0.85rem;
  color: var(--muted);
  margin-right: auto;
  font-variant-numeric: tabular-nums;
}

.projects-nav-btns {
  display: flex;
  gap: 8px;
}

.proj-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.proj-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.proj-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ── Zoom-icoon op kaart ── */
.project-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}

.project-card {
  cursor: pointer;
}

.project-card:hover .project-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,12,14,0.93);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-inner img {
  max-height: 78vh;
  max-width: 100%;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.lightbox-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-align: center;
}

.lightbox-caption span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}

.lightbox-caption strong {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}

.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}

.lightbox-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.projects-grid {
  display: flex;
  flex-direction: row;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #e5e7eb;
}

.projects-grid::-webkit-scrollbar {
  height: 6px;
}

.projects-grid::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 99px;
}

.projects-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 99px;
}

.project-card {
  min-height: 420px;
  min-width: 340px;
  flex: 0 0 340px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.project-a,
.project-b,
.project-c,
.project-d,
.project-e,
.project-f,
.project-g,
.project-h {
  background-size: cover;
  background-position: center;
}

.project-a {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.14), rgba(18,20,23,0.56)), url('../images/project-nieuwbouw-baksteen.jpg');
}

.project-b {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.12), rgba(18,20,23,0.52)), url('../images/project-appartement-renovatie.jpg');
}

.project-c {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.12), rgba(18,20,23,0.52)), url('../images/project-woning-aanbouw.jpg');
}

.project-d {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.10), rgba(18,20,23,0.52)), url('../images/project-keuken-interieur.jpg');
}

.project-e {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.14), rgba(18,20,23,0.56)), url('../images/hero-gevel-stucwerk.jpg');
}

.project-f {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.10), rgba(18,20,23,0.50)), url('../images/project-badkamer-douche.jpg');
}

.project-g {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.14), rgba(18,20,23,0.58)), url('../images/project-vloerverwarming.jpg');
}

.project-h {
  background-image: linear-gradient(140deg, rgba(18,20,23,0.12), rgba(18,20,23,0.52)), url('../images/project-balkons-nieuwbouw.jpg');
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,18,20,0.05), rgba(16,18,20,0.7));
}

.project-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}

.project-content h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.project-content p {
  color: rgba(255,255,255,0.78);
}

.contact-section {
  background: linear-gradient(135deg, #111417 0%, #1f2328 100%);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.contact-cta {
  padding: 42px;
  border-radius: 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-cta p {
  color: rgba(255,255,255,0.75);
  max-width: 620px;
}

.contact-card {
  padding: 34px;
  color: var(--text);
}

.contact-card h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.contact-card li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card li span {
  color: var(--text-soft);
}

.contact-card li strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-top: 2px;
}

.site-footer {
  background: #0b0d0f;
  color: rgba(255,255,255,0.72);
  padding: 22px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
}

.footer-credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  flex: 1;
}

.footer-credit a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: #fff;
}

.footer-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.footer-top-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* =====================
   Sticky WhatsApp knop
   ===================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
}

.wa-float.visible {
  opacity: 1;
  pointer-events: auto;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.46);
}

@media (max-width: 860px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 13px 16px;
  }

  .wa-float span {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    /* blijft flex scroll, geen override nodig */
  }

  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    align-items: start;
  }
}

@media (max-width: 860px) {
  :root {
    --section-space: 54px;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-nav.mobile-open {
    display: flex;
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .services-grid,
  .process-grid,
  .stats-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 72px 0 92px;
  }

  .hero-panel,
  .contact-cta,
  .contact-card,
  .service-card,
  .process-card {
    padding: 24px;
  }

  .stats {
    margin-top: -28px;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .visual-card {
    min-height: 400px;
  }

  .visual-card-inner {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}
