/* ==========================================================================
   Houtmeester Noord — style.css
   Warm-oak palette afgeleid van het houtkarakter van het merk.
   ========================================================================== */

:root {
  /* Accent — warm eiken/walnoot, afgeleid van het logo & het product (hout) */
  --primary:        #B5793E;   /* warm oak amber */
  --primary-hover:  #9E6932;   /* ~10% donkerder */
  --primary-deep:   #7C4F23;   /* ~20% donkerder, voor accents */
  --primary-tint:   #FBF5EC;   /* zeer licht, voor backgrounds */
  --primary-tint-2: #F1E2CD;   /* licht, voor pills/badges */

  --ink:        #2A2118;   /* deep espresso voor headings/text */
  --text:       #3C322A;
  --text-soft:  #6B5C4D;
  --text-muted: #9A8A78;

  --white:      #FFFFFF;
  --bg:         #FFFFFF;
  --bg-alt:     #FAF6F0;   /* lichte warme sectie-achtergrond */
  --bg-dark:    #382B1D;   /* donker walnoot voor calc/forms */
  --bg-darker:  #251B11;   /* nog donkerder voor footer */

  --line:       #EADFCF;
  --line-soft:  #F3ECE0;

  --gold:       #C99A4E;
  --star:       #E0A92A;

  --shadow-sm:  0 2px 8px rgba(42,33,24,.06);
  --shadow-md:  0 14px 40px rgba(42,33,24,.10);
  --shadow-lg:  0 30px 70px rgba(42,33,24,.16);

  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1240px;
  --nav-h:      76px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--primary-tint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--primary); display: inline-block; }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 14px; }
.section-head p { color: var(--text-soft); font-size: 18px; }
.lead { font-size: 19px; color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 15.5px;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .4s var(--ease), background-color .4s var(--ease), color .35s var(--ease), border-color .4s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
/* Gevuld goud -> bij hover transparant met gouden rand */
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 10px 26px rgba(181,121,62,.32); }
.btn--primary:hover { background: transparent; color: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: none; }
/* Transparant met rand -> bij hover gevuld goud */
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(181,121,62,.34); }
/* Transparant op donker -> bij hover gevuld goud */
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(181,121,62,.38); }
/* Gevuld wit (op donker) -> bij hover transparant met witte rand */
.btn--white { background: #fff; color: var(--primary-deep); border-color: #fff; }
.btn--white:hover { background: transparent; color: #fff; border-color: #fff; transform: translateY(-2px); box-shadow: none; }
/* WhatsApp groen -> bij hover transparant met groene rand */
.btn--wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn--wa:hover { background: transparent; color: #1da851; border-color: #25D366; transform: translateY(-2px); box-shadow: none; }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 16.5px; }

/* ==========================================================================
   NAVIGATIE
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.nav__logo { display: flex; align-items: center; transition: opacity .35s var(--ease); }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 10px 14px; font-weight: 600; font-size: 15px;
  color: var(--ink); border-radius: 10px; transition: color .3s, background .3s;
}
.nav__link:hover { color: var(--primary-deep); }
.nav__item { position: relative; }
.nav__item:hover > .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__caret { display: inline-block; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 5px; opacity: .6; }
.nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .26s var(--ease);
}
.nav__dropdown a { display: block; padding: 11px 14px; border-radius: 9px; font-size: 14.5px; font-weight: 600; color: var(--text); transition: background .2s, color .2s; }
.nav__dropdown a:hover { background: var(--primary-tint); color: var(--primary-deep); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--ink); transition: color .35s; }
.nav__phone svg { width: 17px; height: 17px; }
.nav__lang {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px;
  border: 1.5px solid var(--line); font-weight: 700; font-size: 13px; color: var(--ink);
  transition: border-color .35s, color .35s;
}
.nav__hamburger { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1.5px solid var(--line); }
.nav__hamburger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .35s; }

/* Scrolled state */
.nav.is-scrolled { background: var(--ink); border-bottom-color: rgba(255,255,255,.08); }
.nav.is-scrolled .nav__logo { opacity: 0; pointer-events: none; }
.nav.is-scrolled .nav__link { color: rgba(255,255,255,.86); }
.nav.is-scrolled .nav__link:hover { color: #fff; }
.nav.is-scrolled .nav__phone { color: #fff; }
.nav.is-scrolled .nav__lang { border-color: rgba(255,255,255,.35); color: #fff; }
.nav.is-scrolled .nav__hamburger { border-color: rgba(255,255,255,.3); }
.nav.is-scrolled .nav__hamburger span { background: #fff; }

/* Mobile menu */
.mnav-backdrop { position: fixed; inset: 0; background: rgba(20,14,8,.5); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: all .35s; z-index: 1099; }
.mnav-backdrop.open { opacity: 1; visibility: visible; }
.mnav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(370px, 86vw);
  background: #fff; z-index: 1100; transform: translateX(100%);
  transition: transform .42s var(--ease); overflow-y: auto; padding: 26px 24px 40px;
  box-shadow: -20px 0 60px rgba(0,0,0,.2);
}
.mnav.open { transform: translateX(0); }
.mnav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mnav__top img { height: 40px; }
.mnav__close { width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--line); font-size: 22px; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.mnav a { display: block; padding: 13px 4px; font-weight: 700; font-size: 17px; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mnav a.sub { font-weight: 600; font-size: 14.5px; color: var(--text-soft); padding-left: 18px; }
.mnav__cta { margin-top: 24px; display: grid; gap: 10px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--primary-deep); opacity: 0; transform: scale(1.05);
  transition: opacity 1.6s ease-in-out, transform 1.8s ease-in-out;
  will-change: opacity, transform; backface-visibility: hidden;
}
.hero__slide.active { opacity: 1; animation: heroKenburns 9.5s ease-out forwards; }
@keyframes heroKenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.17); }
}
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(31,22,13,.86) 0%, rgba(31,22,13,.62) 42%, rgba(124,79,35,.42) 100%); }
.hero__inner { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero__content { max-width: 720px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(40px, 6.6vw, 76px); line-height: 1.04; margin: 20px 0 22px; }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero__desc { color: rgba(255,255,255,.9); font-size: clamp(17px, 2vw, 20px); max-width: 560px; margin-bottom: 34px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; gap: 46px; margin-top: 64px; flex-wrap: wrap; }
.hero__stat .n { font-size: 40px; font-weight: 800; color: #fff; line-height: 1; }
.hero__stat .n span { color: var(--primary); }
.hero__stat .l { color: rgba(255,255,255,.75); font-size: 14px; margin-top: 6px; font-weight: 600; }

/* Subhero (inner pages) */
.subhero { position: relative; padding: calc(var(--nav-h) + 70px) 0 70px; overflow: hidden; }
.subhero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--primary-deep); }
.subhero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,22,13,.88), rgba(124,79,35,.5)); }
.subhero__inner { position: relative; z-index: 2; max-width: 760px; }
.subhero .eyebrow { color: var(--gold); }
.subhero .eyebrow::before { background: var(--gold); }
.subhero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); margin: 16px 0 14px; }
.subhero p { color: rgba(255,255,255,.88); font-size: 18px; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.7); margin-bottom: 4px; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .5; }

/* ==========================================================================
   OVER ONS (2-koloms)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; background: var(--primary-tint-2); }
.split__img.r45 { aspect-ratio: 4/5; }
.split__img.r43 { aspect-ratio: 4/3; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 16px 0 18px; }
.split__body p { color: var(--text-soft); margin-bottom: 16px; }
.split__badge {
  position: absolute; bottom: 22px; left: 22px; background: #fff; border-radius: 14px;
  padding: 14px 20px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
}
.split__badge .n { font-size: 30px; font-weight: 800; color: var(--primary-deep); line-height: 1; }
.split__badge .t { font-size: 13px; color: var(--text-soft); font-weight: 600; line-height: 1.25; }

/* ==========================================================================
   UNIEK — 3 kaarten (flip)
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.ucard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .4s var(--ease); }
.ucard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.badge-num { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; border: 2px solid transparent; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; margin-bottom: 22px; box-shadow: 0 8px 20px rgba(181,121,62,.3); transition: background-color .45s var(--ease), color .4s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease); }
.ucard:hover .badge-num { background: transparent; color: var(--primary); border-color: var(--primary); box-shadow: none; }
.ucard h3 { font-size: 21px; margin-bottom: 12px; }
.ucard p { color: var(--text-soft); font-size: 15.5px; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 58px; text-align: center; }
.stat-big .n { font-size: clamp(40px, 6vw, 60px); font-weight: 800; color: var(--primary-deep); line-height: 1; }
.stat-big .l { color: var(--text-soft); font-weight: 600; margin-top: 8px; }

/* ==========================================================================
   DIENST-KAARTEN (service cards met calculator-CTA)
   ========================================================================== */
.scard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .32s var(--ease), box-shadow .32s; display: flex; flex-direction: column; position: relative; }
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.scard__img { aspect-ratio: 16/11; background: var(--primary-tint-2); background-size: cover; background-position: center; }
.scard__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.scard__body h3 { font-size: 22px; margin-bottom: 14px; }
.scard__list { margin-bottom: 22px; display: grid; gap: 9px; }
.scard__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-soft); }
.scard__list li::before { content: ""; flex: 0 0 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--primary-tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C4F23' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; }
@keyframes vinkHop { 0% { transform: translateY(0); } 40% { transform: translateY(-8px); } 70% { transform: translateY(1px); } 100% { transform: translateY(0); } }
.scard:hover .scard__list li:nth-child(1)::before { animation: vinkHop .55s var(--ease) 0s; }
.scard:hover .scard__list li:nth-child(2)::before { animation: vinkHop .55s var(--ease) .09s; }
.scard:hover .scard__list li:nth-child(3)::before { animation: vinkHop .55s var(--ease) .18s; }
.scard:hover .scard__list li:nth-child(4)::before { animation: vinkHop .55s var(--ease) .27s; }
.scard:hover .scard__list li:nth-child(5)::before { animation: vinkHop .55s var(--ease) .36s; }
.scard:hover .scard__list li:nth-child(6)::before { animation: vinkHop .55s var(--ease) .45s; }
.scard__cta { margin-top: auto; }
.pop-badge { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: 999px; letter-spacing: .03em; box-shadow: 0 6px 16px rgba(181,121,62,.4); }

/* ==========================================================================
   WERKWIJZE — 4 stappen
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; position: relative; z-index: 0; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s, border-color .4s var(--ease); }
.step::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at top right, rgba(181,121,62,.5), rgba(181,121,62,0) 62%); opacity: 0; transform: scale(.7); transform-origin: top right; transition: opacity .55s var(--ease), transform .7s var(--ease); z-index: -1; pointer-events: none; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.step:hover::after { opacity: 1; transform: scale(1); }
.step .badge-num { margin-bottom: 18px; }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-soft); }

/* ==========================================================================
   PORTFOLIO — Bento grid
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.btile { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--primary-tint-2); display: block; }
.btile__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .9s var(--ease); }
.btile:hover .btile__bg { transform: scale(1.07); }
.btile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,8,.82) 0%, rgba(20,14,8,.15) 55%, transparent 100%); }
.btile__txt { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; }
.btile__txt .tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.btile__txt h3 { color: #fff; font-size: 20px; }
.btile__txt p { color: rgba(255,255,255,.78); font-size: 13.5px; margin-top: 4px; }
.btile--big { grid-column: span 2; grid-row: span 2; }
.btile--wide { grid-column: span 2; }

/* ==========================================================================
   MARQUEE (tips & reviews)
   ========================================================================== */
.marquee { overflow: hidden; position: relative; width: 100%; }
.marquee__track { display: flex; gap: 22px; width: max-content; animation: marquee 46s linear infinite; will-change: transform; }
@keyframes marquee { to { transform: translateX(-50%); } }

.tip-card { flex: 0 0 340px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s; user-select: none; }
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tip-card__img { aspect-ratio: 16/10; background: var(--primary-tint-2); background-size: cover; background-position: center; }
.tip-card__body { padding: 20px 22px 24px; }
.pill { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary-deep); background: var(--primary-tint-2); padding: 5px 11px; border-radius: 999px; }
.tip-card__body h3 { font-size: 18px; margin: 12px 0 8px; }
.tip-card__body p { font-size: 14.5px; color: var(--text-soft); }
.tip-card__meta { margin-top: 14px; font-size: 13px; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.tip-card__meta .more { margin-left: auto; color: var(--primary-deep); }

/* Reviews */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.reviews-head .g { font-weight: 800; font-size: 18px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.gdot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.reviews-head .rate { font-weight: 800; color: var(--ink); }
.reviews-head .stars { color: var(--star); letter-spacing: 2px; }
.rcard { flex: 0 0 360px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.rcard__top { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.ravatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.rcard__name { font-weight: 700; color: var(--ink); font-size: 15px; }
.rcard__time { font-size: 12.5px; color: var(--text-muted); }
.rcard__stars { color: var(--star); letter-spacing: 1px; margin-bottom: 8px; }
.rcard__svc { margin-bottom: 10px; }
.rcard__text { font-size: 14.5px; color: var(--text-soft); display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }

/* ==========================================================================
   CALCULATOR
   ========================================================================== */
.calc-section { background: var(--bg-dark); position: relative; }
.calc-section .section-head h2 { color: #fff; }
.calc-section .section-head p { color: rgba(255,255,255,.72); }
.calc-section .eyebrow { color: var(--gold); }
.calc-section .eyebrow::before { background: var(--gold); }
.calc-card { background: #fff; border-radius: 22px; max-width: 960px; margin: 0 auto; box-shadow: var(--shadow-lg); overflow: hidden; }
.calc-tabs { display: flex; border-bottom: 1px solid var(--line); }
.calc-tab { flex: 1; padding: 18px 14px; font-weight: 700; font-size: 15px; color: var(--text-muted); border-bottom: 3px solid transparent; transition: color .25s, border-color .25s, background .25s; }
.calc-tab:hover { color: var(--primary-deep); }
.calc-tab.active { color: var(--primary-deep); border-bottom-color: var(--primary); background: var(--primary-tint); }
.calc-body { display: none; grid-template-columns: 1.15fr 1fr; }
.calc-body.active { display: grid; }
.calc-inputs { padding: 36px 34px; }
.calc-field { margin-bottom: 26px; }
.calc-field > label { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 12px; }
.calc-range-val { color: var(--primary-deep); font-weight: 800; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--line); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: 0 3px 10px rgba(181,121,62,.5); border: 3px solid #fff; }
input[type=range]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--primary); cursor: pointer; border: 3px solid #fff; }
.opt-row { display: flex; flex-wrap: wrap; gap: 9px; }
.opt {
  flex: 1; min-width: 88px; text-align: center; padding: 12px 8px; border-radius: 11px;
  border: 1.5px solid var(--line); font-weight: 600; font-size: 14px; color: var(--text); cursor: pointer;
  transition: all .2s; user-select: none;
}
.opt:hover { border-color: var(--primary); }
.opt.active { border-color: var(--primary); background: var(--primary-tint); color: var(--primary-deep); box-shadow: inset 0 0 0 1px var(--primary); }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; }
.toggle-row span { font-weight: 600; font-size: 14.5px; color: var(--text); }
.switch { position: relative; width: 50px; height: 28px; flex: 0 0 50px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: background .25s; }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: transform .25s; box-shadow: 0 2px 5px rgba(0,0,0,.2); }
.switch input:checked + .track { background: var(--primary); }
.switch input:checked + .track::before { transform: translateX(22px); }

.calc-result { background: linear-gradient(155deg, var(--bg-dark), var(--primary-deep)); color: #fff; padding: 36px 34px; display: flex; flex-direction: column; }
.calc-result .res-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.calc-result .res-price { font-size: clamp(40px, 7vw, 56px); font-weight: 800; line-height: 1; margin: 12px 0 8px; }
.calc-result .res-dis { font-size: 13px; color: rgba(255,255,255,.66); margin-bottom: 22px; }
.res-summary { display: grid; gap: 10px; margin-bottom: 26px; }
.res-summary li { display: flex; justify-content: space-between; font-size: 14px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.14); }
.res-summary li span:first-child { color: rgba(255,255,255,.7); }
.res-summary li span:last-child { font-weight: 700; }
.calc-result .btn { margin-top: auto; }

/* ==========================================================================
   FAQ — accordeon
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; text-align: left; font-weight: 700; font-size: 16.5px; color: var(--ink); }
.faq-icon { flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: var(--primary-tint-2); position: relative; transition: transform .35s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2.4px; background: var(--primary-deep); border-radius: 2px; transform: translate(-50%,-50%); transition: opacity .3s; }
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease); }
.faq-a p { padding: 0 22px 22px; color: var(--text-soft); font-size: 15.5px; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-band { background: linear-gradient(135deg, var(--bg-dark), var(--primary-deep)); border-radius: var(--radius); padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 18px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ==========================================================================
   VOORDEEL / META kaarten
   ========================================================================== */
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.vcard .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vcard .ic svg { width: 26px; height: 26px; stroke: var(--primary-deep); }
.vcard h3 { font-size: 18px; margin-bottom: 10px; }
.vcard p { font-size: 14.5px; color: var(--text-soft); }
.mcard { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.mcard .l { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.mcard .v { font-size: 18px; font-weight: 800; color: var(--ink); margin-top: 8px; }

/* material cards on service pages */
.matcard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.matcard__img { aspect-ratio: 4/3; background: var(--primary-tint-2); background-size: cover; background-position: center; }
.matcard__b { padding: 20px; }
.matcard__b h4 { font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.matcard__b p { font-size: 14px; color: var(--text-soft); }

/* ==========================================================================
   ARTICLE (tips)
   ========================================================================== */
.article { max-width: 780px; margin: 0 auto; }
.article .meta { display: flex; align-items: center; gap: 14px; color: var(--text-muted); font-size: 14px; font-weight: 600; margin: 18px 0 26px; }
.article h2 { font-size: 28px; margin: 36px 0 14px; }
.article h4 { font-size: 20px; color: var(--ink); margin: 30px 0 12px; }
.article p { color: var(--text-soft); margin-bottom: 18px; font-size: 17px; }
.article ul.bullets { margin: 0 0 18px; display: grid; gap: 10px; }
.article ul.bullets li { padding-left: 28px; position: relative; color: var(--text-soft); }
.article ul.bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary-tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C4F23' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat; }
.article-cta { background: var(--primary-tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-top: 40px; text-align: center; }
.article-cta h3 { font-size: 22px; margin-bottom: 10px; }
.article-cta p { color: var(--text-soft); margin-bottom: 20px; }

/* ==========================================================================
   FORMULIEREN
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.form-row label .req { color: var(--primary-deep); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg-alt); transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.form-row input[readonly] { background: var(--primary-tint); font-weight: 700; color: var(--primary-deep); }
.form-row textarea { min-height: 130px; resize: vertical; }
.info-aside { background: var(--bg-dark); color: #fff; border-radius: var(--radius); padding: 34px; position: sticky; top: calc(var(--nav-h) + 20px); }
.info-aside h3 { color: #fff; font-size: 22px; margin-bottom: 22px; }
.info-aside .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-aside .row svg { width: 20px; height: 20px; stroke: var(--gold); flex: 0 0 20px; margin-top: 3px; }
.info-aside .row .k { font-size: 12.5px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.info-aside .row .v { font-weight: 600; font-size: 15.5px; }
.info-aside .row a.v:hover { color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--bg-darker); color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer__logo-pill { background: #fff; border-radius: 14px; padding: 14px 18px; display: inline-flex; margin-bottom: 20px; }
.footer__logo-pill img { height: 42px; }
.footer p.tagline { font-size: 15px; margin-bottom: 22px; max-width: 320px; }
.footer__usp { display: grid; gap: 10px; margin-bottom: 22px; }
.footer__usp li { display: flex; gap: 9px; align-items: center; font-size: 14px; }
.footer__usp li svg { width: 16px; height: 16px; stroke: var(--gold); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.footer__social a:hover { background: var(--primary); }
.footer__social svg { width: 18px; height: 18px; fill: #fff; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact .row { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: 14.5px; }
.footer__contact .row svg { width: 17px; height: 17px; stroke: var(--gold); flex: 0 0 17px; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; }
.footer__bottom a:hover { color: #fff; }

/* ==========================================================================
   FLOATING — WhatsApp + sticky CTA
   ========================================================================== */
.wa-bubble { position: fixed; right: 22px; bottom: 22px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.5); z-index: 900; transition: transform .25s; }
.wa-bubble:hover { transform: scale(1.08); }
.wa-bubble svg { width: 32px; height: 32px; fill: #fff; }
.sticky-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; background: #fff; border-top: 1px solid var(--line); padding: 10px; gap: 8px; box-shadow: 0 -6px 20px rgba(0,0,0,.08); }
.sticky-cta .btn { flex: 1; padding: 13px 8px; font-size: 14px; }

/* ==========================================================================
   TIPS MODAL
   ========================================================================== */
.modal-backdrop { position: fixed; inset: 0; background: rgba(20,14,8,.6); backdrop-filter: blur(4px); z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s; }
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal { background: #fff; border-radius: 20px; max-width: 700px; width: 100%; max-height: 88vh; overflow-y: auto; transform: scale(.92); transition: transform .35s var(--ease); position: relative; }
.modal-backdrop.open .modal { transform: scale(1); }
.modal__img { aspect-ratio: 16/9; background: var(--primary-tint-2); background-size: cover; background-position: center; border-radius: 20px 20px 0 0; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.modal__body { padding: 30px 34px 36px; }
.modal__body h3 { font-size: 26px; margin: 14px 0 14px; }
.modal__body .meta { color: var(--text-muted); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.modal__body p { color: var(--text-soft); margin-bottom: 14px; }
.modal__body h4 { font-size: 18px; margin: 22px 0 10px; }

/* ==========================================================================
   SCROLL REVEAL ANIMATIES
   ========================================================================== */
.reveal-up      { opacity: 0; transform: translateY(60px); }
.reveal-x       { opacity: 0; transform: translateX(-100px); }
.reveal-x-r     { opacity: 0; transform: translateX(100px); }
.reveal-zoom    { opacity: 0; transform: scale(0.85); }
.reveal-x-zoom  { opacity: 0; transform: translateX(-80px) scale(0.92); }
.reveal-x-r-zoom{ opacity: 0; transform: translateX(80px) scale(0.92); }
.reveal-flip    { opacity: 0; transform: perspective(900px) rotateX(35deg) translateY(50px); transform-origin: center bottom; }
.reveal-up, .reveal-x, .reveal-x-r, .reveal-zoom, .reveal-x-zoom, .reveal-x-r-zoom, .reveal-flip {
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.is-visible { opacity: 1 !important; transform: none !important; }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .10s; }
.stagger > *:nth-child(3) { transition-delay: .20s; }
.stagger > *:nth-child(4) { transition-delay: .30s; }
.stagger > *:nth-child(5) { transition-delay: .40s; }
.stagger > *:nth-child(6) { transition-delay: .50s; }
.stagger > *:nth-child(7) { transition-delay: .60s; }
.stagger > *:nth-child(8) { transition-delay: .70s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-x, .reveal-x-r, .reveal-zoom, .reveal-x-zoom, .reveal-x-r-zoom, .reveal-flip {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .hero__slide { transition: opacity .4s ease; animation: none !important; transform: none !important; }
  .hero__slide.active { transform: none !important; }
  .scard:hover .scard__list li::before { animation: none !important; }
  .step::after { transition: opacity .3s ease !important; transform: none !important; }
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .nav__links, .nav__phone, .nav__lang { display: none; }
  .nav__hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .btile--big { grid-column: span 2; grid-row: span 1; }
  .calc-body.active { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .info-aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  body { font-size: 16px; }
  .grid-3, .grid-4, .steps, .grid-2 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .btile--big, .btile--wide { grid-column: span 1; }
  .stats-row { grid-template-columns: 1fr; gap: 30px; }
  .hero__stats { gap: 28px; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { padding: 40px 24px; }
  .sticky-cta { display: flex; }
  .wa-bubble { bottom: 80px; }
  .calc-inputs, .calc-result { padding: 26px 22px; }
}

/* ==========================================================================
   CHATBOT — Houtmeester Assistent (concept)
   ========================================================================== */
.bot-fab { position: fixed; left: 22px; bottom: 22px; z-index: 940; width: 60px; height: 60px; border-radius: 50%; background: var(--primary); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(124,79,35,.45); transition: transform .3s var(--ease), background-color .3s; }
.bot-fab:hover { transform: scale(1.07); background: var(--primary-deep); }
.bot-fab svg { width: 28px; height: 28px; stroke: #fff; fill: none; }
.bot-fab .ic-close { display: none; }
.bot-fab__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(181,121,62,.5); animation: botPulse 2.4s ease-out infinite; pointer-events: none; }
@keyframes botPulse { 0% { box-shadow: 0 0 0 0 rgba(181,121,62,.5); } 70% { box-shadow: 0 0 0 16px rgba(181,121,62,0); } 100% { box-shadow: 0 0 0 0 rgba(181,121,62,0); } }
body.bot-open .bot-fab { background: var(--bg-dark); }
body.bot-open .bot-fab .ic-chat { display: none; }
body.bot-open .bot-fab .ic-close { display: block; }
body.bot-open .bot-fab__pulse { display: none; }

.bot-panel { position: fixed; left: 22px; bottom: 94px; z-index: 1100; width: 388px; max-width: calc(100vw - 32px); height: 600px; max-height: calc(100vh - 130px); background: #fff; border-radius: 22px; box-shadow: 0 30px 70px rgba(31,22,13,.32); display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(24px) scale(.97); transform-origin: left bottom; transition: opacity .35s var(--ease), transform .4s var(--ease), visibility .35s; }
body.bot-open .bot-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.bot-head { background: var(--bg-dark); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bot-head__id { display: flex; align-items: center; gap: 12px; }
.bot-ava { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.bot-ava svg { width: 22px; height: 22px; stroke: #fff; fill: none; }
.bot-name { font-weight: 800; font-size: 15.5px; line-height: 1.2; }
.bot-status { font-size: 12px; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.bot-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: botPulse2 1.8s ease-out infinite; }
@keyframes botPulse2 { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); } 70% { box-shadow: 0 0 0 6px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
.bot-close { background: rgba(255,255,255,.12); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; transition: background-color .25s; display: flex; align-items: center; justify-content: center; }
.bot-close:hover { background: rgba(255,255,255,.24); }

.bot-body { flex: 1; overflow-y: auto; padding: 20px 18px 8px; background: var(--bg-alt); display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; }
.bot-body::-webkit-scrollbar { width: 7px; }
.bot-body::-webkit-scrollbar-thumb { background: rgba(124,79,35,.25); border-radius: 10px; }

.bot-msg { display: flex; max-width: 100%; animation: botMsgIn .35s var(--ease); }
@keyframes botMsgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.bot-msg--bot { justify-content: flex-start; }
.bot-msg--user { justify-content: flex-end; }
.bot-bubble { max-width: 82%; padding: 11px 15px; font-size: 14.5px; line-height: 1.5; }
.bot-msg--bot .bot-bubble { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 16px 16px 16px 5px; box-shadow: 0 2px 8px rgba(42,33,24,.05); }
.bot-msg--user .bot-bubble { background: var(--primary); color: #fff; border-radius: 16px 16px 5px 16px; }
.bot-bubble a { color: var(--primary-deep); font-weight: 700; text-decoration: underline; }
.bot-msg--user .bot-bubble a { color: #fff; }
.bot-bubble strong { font-weight: 800; }

.bot-typing { display: flex; gap: 4px; padding: 14px 16px; }
.bot-typing span { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); opacity: .5; animation: botDot 1.2s infinite ease-in-out; }
.bot-typing span:nth-child(2) { animation-delay: .2s; }
.bot-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes botDot { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

.bot-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 18px 12px; background: var(--bg-alt); }
.bot-chip { font-size: 13px; font-weight: 700; color: var(--primary-deep); background: #fff; border: 1.5px solid var(--primary); border-radius: 999px; padding: 8px 14px; cursor: pointer; transition: background-color .3s var(--ease), color .3s var(--ease), transform .2s; white-space: nowrap; text-decoration: none; }
.bot-chip:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

.bot-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: grid; gap: 10px; margin-top: 4px; }
.bot-form h4 { font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.bot-form p { font-size: 12.5px; color: var(--text-soft); margin-bottom: 4px; }
.bot-form input, .bot-form select, .bot-form textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 12px; font-family: inherit; font-size: 13.5px; color: var(--ink); background: var(--bg-alt); transition: border-color .25s; }
.bot-form input:focus, .bot-form select:focus, .bot-form textarea:focus { outline: none; border-color: var(--primary); }
.bot-form textarea { resize: vertical; min-height: 60px; }
.bot-form .bot-submit { background: var(--primary); color: #fff; border: 1.5px solid var(--primary); border-radius: 999px; padding: 11px; font-weight: 800; font-size: 14px; cursor: pointer; transition: background-color .3s var(--ease), color .3s var(--ease); }
.bot-form .bot-submit:hover { background: transparent; color: var(--primary); }

.bot-input { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: #fff; }
.bot-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 16px; font-family: inherit; font-size: 14px; color: var(--ink); transition: border-color .25s; }
.bot-input input:focus { outline: none; border-color: var(--primary); }
.bot-send { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--primary); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background-color .25s, transform .2s; }
.bot-send:hover { background: var(--primary-deep); transform: scale(1.05); }
.bot-send svg { width: 19px; height: 19px; stroke: #fff; fill: none; }
.bot-foot { font-size: 11px; color: var(--text-soft); text-align: center; padding: 0 14px 10px; background: #fff; }
.bot-foot a { color: var(--primary-deep); font-weight: 700; }

@media (max-width: 600px) {
  .bot-fab { bottom: 80px; left: 16px; width: 54px; height: 54px; }
  .bot-panel { left: 10px; right: 10px; bottom: 10px; top: 10px; width: auto; height: auto; max-height: none; }
}
