/* ═══════════════════════════════════════════════════
   LEK CONTROLE — SHARED STYLESHEET v2025
   Design: Licht blauw + wit | Zakelijk & vertrouwd
   ═══════════════════════════════════════════════════ */

:root {
  /* Blue palette */
  --b900: #0D2951; --b800: #1565C0; --b700: #1976D2;
  --b600: #1E88E5; --b500: #2196F3; --b400: #42A5F5;
  --b300: #90CAF9; --b200: #BBDEFB; --b100: #E3F2FD; --b50: #F0F7FF;
  /* Neutrals */
  --n900: #0A0F1A; --n800: #1A2332; --n700: #263347;
  --n600: #374B5C; --n500: #4A6078; --n400: #697B8D;
  --n300: #9AAAB8; --n200: #C5CDD6; --n100: #E8EDEF; --n50: #F5F7F9;
  --white: #FFFFFF;
  /* Semantic */
  --red: #C62828; --redl: #FFEBEE; --redm: #FFCDD2;
  --green: #1B5E20; --greenl: #E8F5E9; --greenm: #A5D6A7;
  --amber: #F57F17; --amberl: #FFF8E1;
  /* Typography */
  --font-ui: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  /* Shadows */
  --sh-xs: 0 1px 3px rgba(21,101,192,.07);
  --sh-sm: 0 2px 8px rgba(21,101,192,.09);
  --sh-md: 0 4px 20px rgba(21,101,192,.11);
  --sh-lg: 0 8px 40px rgba(21,101,192,.14);
  --sh-xl: 0 16px 64px rgba(21,101,192,.16);
  /* Radii */
  --r4: 8px; --r6: 12px; --r8: 16px; --r10: 20px; --rpill: 100px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--n800);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--b700); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
img { max-width: 100%; display: block; height: auto; }
::selection { background: var(--b200); color: var(--b900); }
:focus-visible { outline: 2px solid var(--b600); outline-offset: 3px; border-radius: 3px; }

/* LAYOUT */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(16px,3vw,28px); }
.section { padding: 72px 0; }
.section-alt { background: var(--n50); }
.section-blue { background: var(--b50); }
.section-dark { background: var(--b900); }
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-header-center .lead { max-width: 600px; margin-left: auto; margin-right: auto; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5 { font-family: var(--font-ui); line-height: 1.15; color: var(--n900); }
h1 { font-size: clamp(2rem,4.5vw,3.125rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; letter-spacing: -.022em; }
h3 { font-size: clamp(1.05rem,2vw,1.35rem); font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 700; }
h5 { font-size: .9375rem; font-weight: 700; }
.eyebrow { font-family: var(--font-ui); font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--b700); display: block; margin-bottom: 10px; }
.lead { font-size: 1.0625rem; line-height: 1.78; color: var(--n600); }
.body-sm { font-size: .9375rem; line-height: 1.72; color: var(--n600); }
.caption { font-family: var(--font-ui); font-size: .75rem; color: var(--n400); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 700; font-size: .9375rem;
  line-height: 1; border: none; cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  text-decoration: none; border-radius: var(--r4); padding: 13px 24px; letter-spacing: -.01em;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--b800); color: #fff; box-shadow: 0 2px 8px rgba(21,101,192,.28); }
.btn-primary:hover { background: var(--b900); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,101,192,.35); color: #fff; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 3px 12px rgba(198,40,40,.28); }
.btn-red:hover { background: #B71C1C; transform: translateY(-1px); color: #fff; }
.btn-outline { background: transparent; color: var(--b800); border: 2px solid var(--b300); }
.btn-outline:hover { background: var(--b50); border-color: var(--b600); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost { background: transparent; color: var(--b700); border: 1.5px solid var(--b200); }
.btn-ghost:hover { background: var(--b50); border-color: var(--b400); }
.btn-lg { padding: 15px 30px; font-size: 1rem; border-radius: var(--r6); }
.btn-xl { padding: 18px 36px; font-size: 1.0625rem; border-radius: var(--r6); }
.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* BADGES */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--rpill); font-family: var(--font-ui); font-size: .75rem; font-weight: 700; }
.badge-blue { background: var(--b100); color: var(--b800); border: 1px solid var(--b200); }
.badge-green { background: var(--greenl); color: var(--green); border: 1px solid var(--greenm); }
.badge-red { background: var(--redl); color: var(--red); border: 1px solid var(--redm); }
.badge-amber { background: var(--amberl); color: var(--amber); border: 1px solid #FFE082; }
.badge-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22C55E; animation: livepulse 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes livepulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

/* TOPBAR */
.topbar { background: var(--b900); color: rgba(255,255,255,.8); font-family: var(--font-ui); font-size: .8125rem; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-items { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 5px; opacity: .75; white-space: nowrap; }
.topbar-phone { display: flex; align-items: center; gap: 7px; background: var(--red); color: #fff; padding: 5px 14px; border-radius: var(--rpill); font-weight: 800; font-size: .875rem; text-decoration: none; transition: background .2s; white-space: nowrap; }
.topbar-phone:hover { background: #B71C1C; color: #fff; text-decoration: none; }
.topbar-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: livepulse 1.5s ease-in-out infinite; }

/* NAVIGATION */
.site-header { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--n100); position: sticky; top: 0; z-index: 500; box-shadow: var(--sh-sm); }
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.logo-mark { width: 40px; height: 40px; background: linear-gradient(135deg,var(--b700),var(--b900)); border-radius: var(--r6); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(21,101,192,.22); flex-shrink: 0; }
.logo-name { font-family: var(--font-ui); font-size: 1.0625rem; font-weight: 800; color: var(--n900); letter-spacing: -.02em; line-height: 1.15; }
.logo-sub { font-family: var(--font-ui); font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--n400); display: block; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { font-family: var(--font-ui); font-size: .875rem; font-weight: 600; color: var(--n600); padding: 7px 12px; border-radius: var(--r4); transition: all .15s; text-decoration: none; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.nav-links a:hover { color: var(--b800); background: var(--b50); text-decoration: none; }
.nav-links a.active { color: var(--b800); background: var(--b100); }
.nav-links .has-dd { position: relative; }
.nav-links .dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: white; border: 1px solid var(--n100); border-radius: var(--r8); box-shadow: var(--sh-lg); padding: 8px; z-index: 200; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s; }
.nav-links .has-dd:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 8px 12px; border-radius: var(--r4); font-family: var(--font-ui); font-size: .875rem; font-weight: 600; color: var(--n600); }
.dropdown a:hover { background: var(--b50); color: var(--b800); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { font-family: var(--font-ui); font-size: 1rem; font-weight: 800; color: var(--n900); text-decoration: none; display: flex; align-items: center; gap: 7px; letter-spacing: -.01em; }
.nav-phone:hover { color: var(--b800); text-decoration: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: var(--r4); background: transparent; border: none; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--n700); border-radius: 2px; transition: all .25s; }
.mobile-nav { display: none; position: fixed; inset: 0; top: 64px; background: white; z-index: 490; padding: 24px; overflow-y: auto; border-top: 1px solid var(--n100); box-shadow: var(--sh-lg); }
.mobile-nav.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav-links a { font-family: var(--font-ui); font-size: 1.0625rem; font-weight: 600; color: var(--n700); padding: 12px 16px; border-radius: var(--r4); text-decoration: none; display: block; border-bottom: 1px solid var(--n50); }
.mobile-nav-links a:hover { background: var(--b50); color: var(--b800); }

/* BREADCRUMB */
.bc { background: var(--n50); border-bottom: 1px solid var(--n100); padding: 9px 0; }
.bc-inner { display: flex; gap: 5px; align-items: center; font-family: var(--font-ui); font-size: .8rem; color: var(--n400); flex-wrap: wrap; }
.bc-inner a { color: var(--n500); text-decoration: none; }
.bc-inner a:hover { color: var(--b700); }
.bc-sep { color: var(--n300); }
.bc-current { color: var(--n700); font-weight: 500; }

/* CARDS */
.card { background: var(--white); border: 1.5px solid var(--n100); border-radius: var(--r8); padding: 24px; transition: all .25s; }
.card:hover { border-color: var(--b200); box-shadow: var(--sh-lg); transform: translateY(-3px); }
.card-elevated { box-shadow: var(--sh-md); }

/* INFO BLOCKS */
.info-block { background: var(--b100); border: 1px solid var(--b200); border-radius: var(--r6); padding: 14px 18px; font-family: var(--font-ui); font-size: .9rem; font-weight: 500; color: var(--b900); display: flex; align-items: flex-start; gap: 10px; }
.info-block-icon { flex-shrink: 0; font-size: 1.125rem; line-height: 1.3; }
.warning-block { background: var(--amberl); border: 1px solid #FFE082; border-radius: var(--r6); padding: 14px 18px; font-family: var(--font-ui); font-size: .9rem; font-weight: 600; color: var(--amber); display: flex; align-items: flex-start; gap: 10px; }
.danger-block { background: var(--redl); border: 1px solid var(--redm); border-radius: var(--r6); padding: 14px 18px; font-family: var(--font-ui); font-size: .9rem; font-weight: 600; color: var(--red); display: flex; align-items: flex-start; gap: 10px; }
.success-block { background: var(--greenl); border: 1px solid var(--greenm); border-radius: var(--r6); padding: 14px 18px; font-family: var(--font-ui); font-size: .9rem; font-weight: 600; color: var(--green); display: flex; align-items: flex-start; gap: 10px; }

/* FAQ */
.faq-wrap { display: flex; flex-direction: column; gap: 6px; }
.faq-item { background: var(--white); border: 1.5px solid var(--n100); border-radius: var(--r6); overflow: hidden; transition: border-color .18s; }
.faq-item:hover { border-color: var(--b200); }
.faq-item[open] { border-color: var(--b300); box-shadow: var(--sh-sm); }
details summary { padding: 17px 20px; font-family: var(--font-ui); font-size: .9375rem; font-weight: 700; color: var(--n800); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; list-style: none; user-select: none; }
details summary::-webkit-details-marker { display: none; }
details[open] summary { color: var(--b800); border-bottom: 1px solid var(--n100); }
details summary::after { content: '+'; font-size: 1.375rem; color: var(--b400); font-weight: 300; flex-shrink: 0; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-ans { padding: 15px 20px; font-size: .9375rem; color: var(--n600); line-height: 1.78; }
.faq-ans strong { color: var(--n800); }

/* FOOTER */
footer { background: var(--n900); padding: 52px 0 24px; color: rgba(255,255,255,.55); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 22px; }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin: 12px 0 14px; max-width: 252px; color: rgba(255,255,255,.42); }
.footer-phone { font-family: var(--font-ui); font-size: 1.25rem; font-weight: 800; color: var(--b300); text-decoration: none; transition: color .2s; }
.footer-phone:hover { color: var(--b200); text-decoration: none; }
.footer-email { font-size: .875rem; color: rgba(255,255,255,.42); margin-top: 4px; }
.footer-email a { color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s; }
.footer-email a:hover { color: var(--b300); }
.footer-addr { font-size: .8125rem; color: rgba(255,255,255,.28); margin-top: 5px; line-height: 1.5; }
.footer-col h5 { font-family: var(--font-ui); font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.42); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: var(--b300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 9px; font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.24); }
.footer-bottom a { color: rgba(255,255,255,.24); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.55); }
.footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; }
.footer-logo-mark { width: 34px; height: 34px; border-radius: var(--r4); background: linear-gradient(135deg,var(--b700),var(--b900)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-name { font-family: var(--font-ui); font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.footer-stars { display: flex; gap: 2px; margin-top: 8px; }
.footer-star { color: #F9A825; font-size: .875rem; }

/* FLOAT CTA */
.float-cta { position: fixed; bottom: 20px; right: 20px; z-index: 600; background: var(--red); color: #fff; padding: 12px 20px; border-radius: var(--rpill); font-family: var(--font-ui); font-size: .9375rem; font-weight: 800; text-decoration: none; display: flex; align-items: center; gap: 7px; box-shadow: 0 6px 24px rgba(198,40,40,.4); transition: all .2s; animation: ftin .5s 1.5s both; letter-spacing: -.01em; }
.float-cta:hover { transform: scale(1.04); color: #fff; text-decoration: none; }
@keyframes ftin { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* SCROLL REVEAL */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .08s; } .rd2 { transition-delay: .16s; } .rd3 { transition-delay: .24s; }

/* SERVICE CARDS */
.service-card { background: var(--white); border: 1.5px solid var(--n100); border-radius: var(--r8); padding: 26px 24px; position: relative; overflow: hidden; transition: all .3s; cursor: default; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--b700),var(--b500)); transform: scaleX(0); transform-origin: left; transition: transform .3s; border-radius: 0 0 3px 3px; }
.service-card:hover { border-color: var(--b200); box-shadow: var(--sh-xl); transform: translateY(-5px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 50px; height: 50px; border-radius: var(--r6); background: var(--b100); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: all .2s; }
.service-card:hover .service-icon { background: var(--b200); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--b700); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-link { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-ui); font-size: .8125rem; font-weight: 700; color: var(--b700); margin-top: 14px; text-decoration: none; transition: gap .2s; }
.service-link:hover { gap: 8px; text-decoration: none; }

/* REVIEW CARDS */
.review-card { background: var(--white); border: 1.5px solid var(--n100); border-radius: var(--r8); padding: 22px; transition: all .22s; }
.review-card:hover { border-color: var(--b200); box-shadow: var(--sh-md); transform: translateY(-2px); }
.review-stars { display: flex; gap: 2px; margin-bottom: 11px; }
.review-stars span { color: #F9A825; font-size: 1rem; }
.review-text { font-size: .9375rem; color: var(--n600); line-height: 1.75; font-style: italic; margin-bottom: 13px; }
.review-author { font-family: var(--font-ui); font-size: .875rem; font-weight: 700; color: var(--n800); }
.review-loc { font-family: var(--font-ui); font-size: .8125rem; color: var(--n400); margin-top: 2px; }
.review-badge { font-family: var(--font-ui); font-size: .75rem; font-weight: 600; padding: 2px 8px; border-radius: var(--rpill); background: var(--b100); color: var(--b800); border: 1px solid var(--b200); display: inline-block; margin-top: 6px; }

/* PROCESS STEPS */
.process-num { width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 2px solid var(--b300); color: var(--b800); font-family: var(--font-ui); font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: var(--sh-md); transition: all .3s; }
.process-step:hover .process-num { background: var(--b800); color: white; border-color: var(--b800); }

/* HOURS */
.hour-day { background: var(--white); border: 1.5px solid var(--n100); border-radius: var(--r6); padding: 13px 10px; text-align: center; }
.hour-day.today { border-color: var(--b500); background: var(--b50); }
.hour-day-name { font-family: var(--font-ui); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--n400); margin-bottom: 5px; }
.hour-day.today .hour-day-name { color: var(--b700); }
.hour-day-status { font-family: var(--font-ui); font-size: .8125rem; font-weight: 800; color: var(--green); }
.hour-badge { font-family: var(--font-ui); font-size: .625rem; font-weight: 700; padding: 2px 5px; border-radius: var(--rpill); background: var(--greenl); color: var(--green); border: 1px solid var(--greenm); display: inline-block; margin-top: 3px; }

/* ═══ WHATSAPP BUTTON ═══ */
.wa-wrap {
  position: fixed;
  bottom: 82px;
  right: 20px;
  z-index: 601;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  animation: ftin .5s 2s both;
  flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }
.wa-bubble {
  background: #fff;
  border: 1.5px solid var(--n100);
  border-radius: var(--r8);
  box-shadow: var(--sh-xl);
  padding: 16px 18px;
  min-width: 240px;
  max-width: 280px;
  display: none;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px; right: 18px;
  width: 14px; height: 14px;
  background: #fff;
  border-right: 1.5px solid var(--n100);
  border-bottom: 1.5px solid var(--n100);
  transform: rotate(45deg);
}
.wa-bubble.open { display: flex; }
.wa-bubble-header { font-family: var(--font-ui); font-size: .8125rem; font-weight: 700; color: var(--n500); letter-spacing: .04em; text-transform: uppercase; }
.wa-number {
  font-family: var(--font-ui); font-size: 1.25rem; font-weight: 800;
  color: var(--n900); letter-spacing: .02em;
  text-decoration: none; display: block;
}
.wa-number:hover { color: #25D366; text-decoration: none; }
.wa-open-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #25D366; color: #fff; border: none; border-radius: var(--r4);
  font-family: var(--font-ui); font-size: .9rem; font-weight: 700;
  padding: 10px 16px; cursor: pointer; text-decoration: none;
  transition: background .2s; width: 100%;
}
.wa-open-btn:hover { background: #1ebe5d; color: #fff; text-decoration: none; }
.wa-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; cursor: pointer;
  font-size: 1.125rem; color: var(--n400); line-height: 1;
  padding: 2px 4px; border-radius: 4px;
}
.wa-close:hover { color: var(--n700); background: var(--n50); }
.wa-badge {
  position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-ui); font-size: .625rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  animation: livepulse 2s ease-in-out infinite;
}

/* ═══ CONTACT FORM ═══ */
.cf-wrap {
  background: #fff;
  border: 1.5px solid var(--n100);
  border-radius: var(--r10);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--sh-lg);
}
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 5px; }
.cf-field.full { grid-column: 1 / -1; }
.cf-label {
  font-family: var(--font-ui); font-size: .8125rem; font-weight: 700;
  color: var(--n700); letter-spacing: .01em;
}
.cf-label span { color: var(--red); margin-left: 2px; }
.cf-input, .cf-select, .cf-textarea {
  font-family: var(--font-ui); font-size: .9375rem; color: var(--n800);
  background: var(--n50); border: 1.5px solid var(--n200);
  border-radius: var(--r4); padding: 11px 14px;
  transition: border-color .18s, box-shadow .18s;
  outline: none; width: 100%;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: var(--b500); background: #fff;
  box-shadow: 0 0 0 3px rgba(33,150,243,.12);
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--n300); }
.cf-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.cf-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6078' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.cf-submit {
  background: var(--b800); color: #fff;
  font-family: var(--font-ui); font-size: 1rem; font-weight: 700;
  border: none; border-radius: var(--r6); padding: 14px 32px;
  cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 3px 12px rgba(21,101,192,.28);
}
.cf-submit:hover { background: var(--b900); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(21,101,192,.35); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.cf-success {
  display: none; background: var(--greenl); border: 1.5px solid var(--greenm);
  border-radius: var(--r8); padding: 20px 24px;
  font-family: var(--font-ui); font-size: .9375rem; font-weight: 600; color: var(--green);
  text-align: center; gap: 10px; align-items: center; flex-direction: column;
}
.cf-success.show { display: flex; }
.cf-success-icon { font-size: 2rem; }
.cf-error {
  display: none; font-family: var(--font-ui); font-size: .875rem;
  color: var(--red); margin-top: 8px;
}
.cf-error.show { display: block; }
.cf-privacy { font-family: var(--font-ui); font-size: .8rem; color: var(--n400); line-height: 1.6; }
.cf-privacy a { color: var(--n500); text-decoration: underline; }

/* RESPONSIVE */
@media(max-width:1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:900px) { .nav-links { display: none; } .hamburger { display: flex; } .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px) {
  .section { padding: 52px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .float-cta { left: 12px; right: 12px; border-radius: var(--r6); justify-content: center; bottom: 12px; }
  .wa-wrap { bottom: 74px; right: 12px; }
  .cf-grid { grid-template-columns: 1fr; }
}
@media(min-width:901px) { .mobile-nav { display: none !important; } }
