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

:root {
  --green-deep:  #0f3d2e;
  --green:       #1a6648;
  --green-mid:   #228b5e;
  --green-light: #2db87a;
  --mint:        #a8f0c8;
  --cream:       #faf7f2;
  --cream2:      #f2ede4;
  --white:       #ffffff;
  --text:        #1a2820;
  --muted:       #6b7d72;
  --border:      #ddeee5;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--cream);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(15,61,46,0.06);
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-family: 'Fraunces', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--green-deep);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 700;
  font-family: 'Fraunces', serif;
}
.logo-slim { color: var(--green-deep); }
.logo-gpt  { color: var(--green-mid); }
.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; padding: 0.45rem 0.95rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); background: rgba(26,102,72,0.06); }
.nav-sub { font-size: 0.72rem; color: var(--muted); font-weight: 400; letter-spacing: 0.02em; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  background: var(--green); color: #fff;
  padding: 0.6rem 1.5rem; text-decoration: none;
  font-size: 0.88rem; font-weight: 600; border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(26,102,72,0.25);
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: calc(100vh - 68px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 5rem 5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(45,184,122,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-shape2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,102,72,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,102,72,0.08); color: var(--green);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 20px;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.5s ease 0.1s forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light); animation: blink 2.5s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--green-deep); margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
h1 em { font-style: italic; color: var(--green-mid); font-weight: 300; }

.hero-sub {
  font-size: 1.08rem; color: var(--muted); line-height: 1.8;
  max-width: 480px; margin-bottom: 2.8rem; font-weight: 400;
  opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}
.btn-green {
  background: var(--green); color: #fff;
  padding: 0.95rem 2.2rem; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border-radius: 10px; display: inline-block;
  box-shadow: 0 6px 22px rgba(26,102,72,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,102,72,0.35); }
.btn-outline-green {
  color: var(--green); font-size: 0.92rem; font-weight: 600;
  text-decoration: none; padding: 0.9rem 1.6rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-green:hover { border-color: var(--green); background: rgba(26,102,72,0.04); }

/* Hero right – card */
.hero-right {
  position: relative;
  opacity: 0; animation: fadeIn 0.9s ease 0.6s forwards;
}
.hero-card-main {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.2rem;
  box-shadow: 0 16px 56px rgba(15,61,46,0.1);
  position: relative; z-index: 2;
}
.hero-card-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-card-label::before {
  content: ''; width: 20px; height: 2px; background: var(--green-light); border-radius: 2px;
}
.chat-messages { display: flex; flex-direction: column; gap: 0.9rem; }
.chat-msg { display: flex; gap: 0.7rem; align-items: flex-start; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.chat-avatar.ai { background: linear-gradient(135deg, var(--green), var(--green-light)); color: #fff; }
.chat-avatar.human { background: var(--cream2); color: var(--green-deep); }
.chat-bubble {
  max-width: 78%; padding: 0.65rem 0.9rem;
  border-radius: 12px; font-size: 0.83rem; line-height: 1.55;
}
.chat-bubble.ai { background: var(--cream); color: var(--text); border-bottom-left-radius: 4px; }
.chat-bubble.human { background: var(--green); color: #fff; border-bottom-right-radius: 4px; }
.typing-indicator {
  display: flex; gap: 4px; padding: 0.5rem 0.9rem; align-items: center;
  background: var(--cream); border-radius: 12px; border-bottom-left-radius: 4px; width: fit-content;
}
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light); animation: typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

.hero-stat {
  position: absolute; background: var(--white); border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15,61,46,0.12); padding: 0.9rem 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
  animation: floatY 3.5s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero-stat.s1 { top: -16px; right: -20px; animation-delay: 0s; z-index: 3; }
.hero-stat.s2 { bottom: -16px; left: -20px; animation-delay: 1.5s; z-index: 3; }
.hero-stat-icon { font-size: 1.4rem; }
.hero-stat-val { font-size: 1.1rem; font-weight: 700; color: var(--green-deep); line-height: 1; }
.hero-stat-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 0.15rem; }
.hero-card-bg {
  position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 20px; opacity: 0.12; z-index: 1;
}

/* TRUST BAR */
.trust-bar {
  background: var(--green-deep); padding: 1.6rem 5rem;
  display: flex; align-items: center; gap: 3rem; overflow: hidden;
}
.trust-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); white-space: nowrap;
}
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.trust-items { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.trust-item {
  font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-item::before { content: '✓'; color: var(--mint); font-weight: 700; }

/* SECTIONS */
.section { padding: 6rem 5rem; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream2); }
.section-tag {
  display: inline-block; background: rgba(26,102,72,0.08); color: var(--green);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1rem;
}
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700;
  color: var(--green-deep); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--green-mid); font-weight: 300; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0 auto; }

/* WAAROM */
.waarom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.waarom-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.waarom-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem 1.6rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.waarom-item:hover { box-shadow: 0 8px 28px rgba(15,61,46,0.08); transform: translateY(-2px); }
.waarom-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(26,102,72,0.1), rgba(45,184,122,0.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.waarom-item h4 { font-size: 0.97rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.3rem; }
.waarom-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.waarom-visual { position: relative; }
.savings-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.2rem;
  box-shadow: 0 16px 48px rgba(15,61,46,0.1);
}
.savings-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.8rem;
}
.savings-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.savings-task { font-size: 0.82rem; color: var(--text); width: 140px; flex-shrink: 0; }
.savings-bar-wrap { flex: 1; }
.savings-bar-bg { height: 8px; background: var(--cream2); border-radius: 4px; overflow: hidden; }
.savings-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left;
  animation: growBar 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes growBar { to { transform: scaleX(1); } }
.savings-pct { font-size: 0.78rem; font-weight: 700; color: var(--green); width: 40px; text-align: right; }
.savings-footer {
  margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.savings-footer-label { font-size: 0.8rem; color: var(--muted); }
.savings-footer-val { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-deep); }
.savings-footer-val span { color: var(--green-mid); }
.visual-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--green); color: #fff;
  border-radius: 12px; padding: 0.8rem 1.1rem;
  box-shadow: 0 8px 24px rgba(26,102,72,0.35);
  font-size: 0.78rem; font-weight: 600; text-align: center;
}
.visual-badge .vb-num { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; line-height: 1; display: block; }

/* DIENSTEN */
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.dienst-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.dienst-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  opacity: 0; transition: opacity 0.3s;
}
.dienst-card:hover { box-shadow: 0 14px 44px rgba(15,61,46,0.1); transform: translateY(-3px); }
.dienst-card:hover::after { opacity: 1; }
.dienst-icon {
  width: 50px; height: 50px; border-radius: 12px; margin-bottom: 1.3rem;
  background: linear-gradient(135deg, rgba(26,102,72,0.08), rgba(45,184,122,0.1));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.dienst-card h3 { font-size: 1rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.6rem; }
.dienst-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }
.dienst-examples { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dienst-ex {
  font-size: 0.68rem; padding: 0.18rem 0.55rem;
  background: rgba(26,102,72,0.06); color: var(--green);
  border: 1px solid rgba(26,102,72,0.15); border-radius: 20px; font-weight: 500;
}

/* WERKWIJZE */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--mint));
  opacity: 0.3; z-index: 0;
}
.step-card { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.3rem;
  background: var(--white); border: 2px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--green);
  position: relative;
}
.step-num::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(45,184,122,0.15), transparent);
}
.step-card h3 { font-size: 0.97rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* CTA BANNER */
.cta-banner {
  margin: 0 5rem 5rem;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 60%, var(--green-mid) 100%);
  border-radius: 24px; padding: 4.5rem 5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -60px; top: -80px; width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute; left: -40px; bottom: -60px; width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(168,240,200,0.08), transparent 70%);
}
.cta-banner h2 { font-size: 2.2rem; color: #fff; margin-bottom: 0.7rem; }
.cta-banner h2 em { color: var(--mint); }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; max-width: 460px; }
.btn-white {
  flex-shrink: 0; background: #fff; color: var(--green-deep);
  padding: 1rem 2.4rem; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-left p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; gap: 1rem; align-items: center; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(26,102,72,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-val { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.contact-val a { color: var(--green); text-decoration: none; }
.contact-val a:hover { color: var(--green-mid); }
.contact-also {
  margin-top: 2rem; padding: 1.2rem 1.4rem;
  background: rgba(26,102,72,0.06); border: 1px solid rgba(26,102,72,0.12);
  border-radius: 12px; font-size: 0.83rem; color: var(--muted); line-height: 1.65;
}
.contact-also a { color: var(--green); text-decoration: none; font-weight: 600; }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(15,61,46,0.07);
}
.form-title { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700; color: var(--green-deep); margin-bottom: 1.6rem; }
form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.4rem; }
input, textarea, select,
.form-input {
  width: 100%; background: var(--cream); border: 1.5px solid var(--border);
  color: var(--text); padding: 0.82rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  border-radius: 10px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus,
.form-input:focus {
  border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(26,102,72,0.1); background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--green); color: #fff; border: none;
  padding: 0.95rem 2.2rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  border-radius: 10px; align-self: flex-start;
  box-shadow: 0 6px 20px rgba(26,102,72,0.28);
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
.form-success {
  color: #1a6648; font-size: 0.85rem; font-weight: 600;
  padding: 0.8rem 1rem; background: rgba(45,184,122,0.1);
  border: 1.5px solid rgba(45,184,122,0.3); border-radius: 10px;
  margin-bottom: 1rem;
}
.form-error { color: #c0392b; font-size: 0.78rem; font-weight: 600; margin-top: 0.3rem; }

/* FOOTER */
footer {
  background: var(--green-deep); color: rgba(255,255,255,0.45);
  padding: 3rem 5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-logo span { color: var(--mint); }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-right { text-align: right; }
.footer-copy { font-size: 0.75rem; }
.footer-slimmit { font-size: 0.72rem; margin-top: 0.3rem; color: rgba(255,255,255,0.25); }
.footer-slimmit a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-slimmit a:hover { color: rgba(255,255,255,0.6); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* MOBILE */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-sub { display: none; }
  .hero { grid-template-columns: 1fr; padding: 3.5rem 1.5rem 3rem; min-height: auto; gap: 3rem; }
  .hero-right { display: none; }
  .section { padding: 4rem 1.5rem; }
  .trust-bar { padding: 1.5rem; gap: 1.5rem; flex-wrap: wrap; }
  .waarom-grid { grid-template-columns: 1fr; gap: 3rem; }
  .diensten-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .cta-banner { margin: 0 1.5rem 3rem; flex-direction: column; padding: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-right { text-align: center; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}
