/* Han de Kapper — 1-op-1 overgenomen van de live kapper.es (Lindo):
   wit, Lato op de homepage, Inter op de guide-pagina (zoals live),
   WhatsApp-groen #075e54 als enige accentkleur,
   tekstkleur #1f2937 (guide: slate #1e293b), ronde knoppen en kaarten.
   Maten/kleuren gemeten tegen de live site (Playwright-audit, ronde 1). */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --panel: #eeeeee;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --border: #e5e7eb;
  --whatsapp: #128c7e;
  --whatsapp-dark: #075e54;
  --max: 1200px;
  --sans: 'Lato', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink); }

a { color: inherit; }

/* Live: containers max-width 1200px met 32px zijpadding -> content 1136px */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* Guide-pagina rendert live in Inter (homepage blijft Lato) */
.page-guide { font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
.page-guide h1, .page-guide h2, .page-guide h3, .page-guide h4 { font-family: inherit; }

/* Scroll-reveal: eigen lichte versie van de fade-in-up op de live site */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header: gecentreerd logo, verder niets (zoals live) */
.site-header {
  padding: 32px 16px;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.brand img { height: 120px; width: auto; display: block; }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 999px;
}
.btn-primary {
  background: var(--whatsapp-dark);
  color: #fff;
}
.btn-primary:hover { background: var(--whatsapp); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 600;
}
.btn-outline:hover { border-color: var(--whatsapp-dark); color: var(--whatsapp-dark); }

/* Hero */
.hero { padding: 56px 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 0.4em; line-height: 1; }
.brand-line { display: block; }
.hero-kicker { display: block; font-size: 1.375rem; font-weight: 400; color: var(--ink); line-height: 28px; margin-top: 34px; }
.hero-intro { font-size: 1.125rem; color: var(--ink); line-height: 1.5; margin-bottom: 29px; }
.hero-location { font-size: 1.125rem; color: var(--ink); line-height: 1.5; margin-bottom: 59px; }
.hero-text .btn-primary { padding: 16px 32px; }
.micro-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink);
}
.micro-cta svg { flex: none; }
.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

/* Talen + kaart */
.langs { padding: 56px 0; }
.langs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 112px;
}
.langs-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 0; /* pet valt in de foto zelf al net buiten beeld */
  display: block;
  border-radius: 12px;
}
.langs-text h2 { line-height: 40px; }
.langs-text .quote {
  font-style: normal;
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.lang-checklist { list-style: none; padding: 0; margin: 35px 0 0; }
.lang-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  line-height: 24px;
  font-weight: 400;
  color: rgba(31, 41, 55, 0.5);
}
.lang-checklist li + li { margin-top: 16px; }
.lang-checklist li svg { flex: none; }
.map-embed {
  border-radius: 16px;
  overflow: hidden;
}
.map-embed iframe { display: block; border-radius: 16px; }

/* Reviews: Reevuu-widget, sectie-afstand zelf */
.reviews { padding: 8px 0 64px; text-align: center; }

/* About */
.about { padding: 24px 0; }
.about-inner { max-width: 768px; padding-left: 32px; padding-right: 32px; }
.about-inner h2 { font-size: 2rem; line-height: 2rem; margin-bottom: 16px; }
.about-inner h3 { color: var(--ink); font-size: 1.125rem; line-height: 1.556; font-weight: 700; margin-bottom: 14px; }
.about-inner p { font-size: 1.125rem; line-height: 1.556; margin-bottom: 14px; }

/* Closing + gallery */
.closing { padding: 64px 0; }
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.closing-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.closing-text p { font-size: 1.125rem; line-height: 28px; margin-bottom: 16px; }
.closing-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.closing-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.closing-gallery img:last-child { margin-top: 16px; }

/* Articles */
.articles { padding: 24px 0; }
.articles .wrap { max-width: 768px; }
.article-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid rgba(84, 84, 84, 0.2);
  border-radius: 8px;
  padding: 16px;
}
.article-icon {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.article-copy { display: flex; flex-direction: column; gap: 8px; flex: 1; text-align: center; }
.article-copy strong { font-size: 1.125rem; font-weight: 600; line-height: 28px; }
.article-copy span { color: #1f2937; font-size: 0.875rem; line-height: 20px; }
.article-card:hover strong { color: var(--whatsapp-dark); }

/* Guide page — 1-op-1 overgenomen van kapper.es/guide */
.guide-hero { padding: 0; }
.guide-hero .wrap { max-width: 768px; padding: 24px 32px; }
.guide-hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.75rem);
  line-height: 1;
  margin-bottom: 14px;
  color: #1e293b;
}
.guide-hero-sub {
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3rem);
  line-height: 1;
  margin-bottom: 0;
  color: #1e293b;
}

.guide-intro { padding: 80px 0; }
.guide-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 128px;
  align-items: center;
}
.guide-intro-text h2 { font-size: 36px; line-height: 40px; color: #1e293b; margin-bottom: 12px; }
.guide-intro-text p { font-size: 1.125rem; line-height: 1.556; color: #334155; margin-bottom: 28px; }
.guide-intro-text p:last-child { margin-bottom: 0; }
.guide-intro-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: 12px;
}

.guide-article { padding-bottom: 40px; max-width: 768px; color: #1e293b; }
.guide-article h2 { font-size: 24px; line-height: 32px; margin-top: 1.4em; color: #1e293b; }
.guide-article h3 {
  font-size: 1.5rem;
  line-height: 32px;
  font-weight: 700;
  margin-top: 1.4em;
  color: #1e293b;
}
.guide-article ul { padding-left: 1.2em; }
.guide-article li { margin-bottom: 0.6em; }
.guide-article p { font-size: 1.125rem; line-height: 1.625; color: #374151; margin-bottom: 14px; }
.guide-article h3.tips-subtitle,
.guide-article h3.tips-subheading {
  font-size: 1.125rem;
  line-height: 28px;
  font-weight: 600;
  color: #111827;
}
.guide-article h3.tips-subtitle { margin-top: 0.5em; }
.guide-article h3.tips-subheading { margin-top: 16px; }
.guide-article ul.tips-list { padding-left: 40px; }
.tips-list li { margin-bottom: 4px; font-size: 1.125em; color: #374151; }

.callout {
  padding: 24px 0;
  margin: 24px 0;
}
.callout h3 { margin-top: 0; margin-bottom: 16px; font-size: 1.5rem; line-height: 2rem; font-weight: 700; color: #1e293b; }
.callout p { font-size: 1.125rem; line-height: 1.75rem; color: #1e293b; }

/* Decoratieve fotocollage tussen "Quick Answer" en de criteria-lijst,
   letterlijk overgenomen incl. de Muppet-gif en de screenshots (op
   uitdrukkelijk verzoek van Pieter: dat grapje/die rommeligheid blijft).
   4 kolommen op natuurlijke beeldverhouding, verticaal gecentreerd in
   een 700px-band; kolom 4 hangt bewust hoger, zoals live. */
.guide-collage {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-left: max(32px, calc((100vw - 1136px) / 2));
  padding-right: max(32px, calc((100vw - 1136px) / 2));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 8px;
  height: 700px;
  align-items: center;
  margin-top: 118px;
  margin-bottom: 80px;
}
.guide-collage-col { align-self: center; }
.guide-collage-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.guide-collage-col img + img { margin-top: 32px; }
.guide-collage-col-4 { align-self: start; }
.guide-collage-col-4 img { margin-top: 48px; }

.guide-article ul.criteria-list { list-style: disc; padding-left: 40px; margin: 42px 0 14px; }
.guide-article .criteria-list li { margin-bottom: 0; font-size: 1.125rem; line-height: 28px; }

/* Grijze full-bleed band achter de picks-titel, zoals live */
.picks-band {
  background: #c7c7c7;
  padding: 24px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.picks-band-inner { max-width: 768px; margin: 0 auto; padding: 0 32px; }
.picks-band h2 { margin-top: 0; margin-bottom: 16px; }
.picks-band p { margin-bottom: 0; }

.pick { padding: 24px 0; }
.pick h4 { font-size: 1.125rem; font-weight: 500; color: #111827; line-height: 1.4; }
.pick h4.pick-h-lg { font-size: 24px; line-height: 32px; font-weight: 700; color: #1e293b; }
.pick h4.pick-h-inline { font-size: 1.125rem; line-height: 28px; font-weight: 700; color: #1e293b; margin: 0; }
.pick-details { list-style: disc; list-style-position: outside; padding: 0 0 0 1.5em; margin: 0.8em 0 0; }
.pick-details li { margin-bottom: 4px; color: #374151; font-size: 1.125rem; line-height: 1.625; }

/* Zwarte CTA-banner, full-bleed net als live (inhoud in 1200px-container) */
.banner {
  background: #000;
  border-radius: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.banner img { width: 260px; height: 260px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; }
.banner-text { display: flex; flex-direction: column; gap: 2px; margin-right: auto; }
.banner strong { font-size: 1.25rem; color: #fff; line-height: 28px; }
.banner span { color: #fff; font-size: 1rem; line-height: 24px; }
.banner .btn-primary { background: #2a9d8f; color: #fff; font-size: 0.875rem; line-height: 20px; padding: 12px 32px; }
.banner .btn-primary:hover { background: #23867a; }

/* FAQ: gecentreerde badge + titel op een grijze volle-breedte band */
.faq-section { background: #e0e0e0; padding-top: 56px; margin-top: 40px; }
.faq-header { max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.faq-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: #1e293b;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.faq-header h2 { margin-bottom: 16px; font-size: 3rem; line-height: 1.25; color: #1e293b; }
.faq-header > p { color: #1e293b; line-height: 24px; margin-bottom: 0; }
.faq-list-wrap { padding-bottom: 112px; }
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-top: 56px;
}
.faq-card {
  background: transparent;
  border: 1px solid rgba(30, 41, 59, 0.1);
  border-radius: 16px;
  padding: 32px;
}
.faq-card h4 { margin: 0 0 8px; font-size: 1.125rem; line-height: 28px; font-weight: 600; color: #334155; }
.faq-card p { margin: 0; color: #1e293b; line-height: 24px; }

/* Legal */
.legal { padding: 64px 0; max-width: 680px; }

/* Footer: live is een 3-koloms grid in een brede 1360px-container */
.site-footer {
  border-top: none;
  padding: 0;
  color: var(--ink);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
}
.footer-brand img { height: 32px; width: auto; display: block; }
.footer-madewith { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; }
.footer-avatar { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.footer-legal { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { color: var(--whatsapp-dark); }
.footer-legal-sep { color: #d1d5db; }

/* Floating taalwidget (zelfde plek/vorm als live, eigen server-routes eronder) */
.lang-widget {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  line-height: normal;
}
.lang-widget-label { display: block; margin-bottom: 8px; opacity: 0.7; }
.lang-widget-links { display: flex; gap: 8px; }
.lang-widget-links a {
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
}
.lang-widget-links a.active {
  background: none;
  border-color: rgba(0, 0, 0, 0.25);
  color: var(--ink);
  font-weight: 700;
}

/* Zwevende WhatsApp-knop (vervangt de betaalde Boei-chatwidget van Lindo) */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background: var(--whatsapp-dark);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(7, 94, 84, 0.4);
  z-index: 910;
}
.floating-whatsapp:hover { background: var(--whatsapp); }

/* Focus visibility */
a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--whatsapp-dark);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 860px) {
  .site-header { padding: 28px 16px; }
  .hero { padding: 40px 0; }
  .hero-inner, .closing-inner { grid-template-columns: 1fr; }
  .hero-text { padding: 0 32px; } /* live: tekst 32px extra ingesprongen, foto niet */
  .hero-text h1 { font-size: 36px; line-height: 40px; }
  .hero-text .btn-primary { display: block; width: 100%; text-align: center; }
  .micro-cta { justify-content: center; }
  .hero-photo img { height: auto; }
  .langs { padding: 40px 0; }
  .langs-inner { grid-template-columns: 1fr; gap: 20px; margin-bottom: 80px; }
  .langs-photo img { height: 400px; }
  .langs-text h2 { font-size: 1.875rem; line-height: 36px; margin-bottom: 10px; }
  .lang-checklist { margin-top: 27px; }
  .lang-checklist li { font-size: 14px; }
  .lang-checklist li + li { margin-top: 8px; }
  .closing-inner { gap: 16px; }
  .closing-gallery { margin-top: 0; }
  .closing-gallery img { height: 260px; }
  .closing-text p { font-size: 1rem; line-height: 24px; }
  .articles .wrap { padding: 0 16px; }
  .footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }

  .guide-hero h1 { font-size: 24px; line-height: 32px; }
  .guide-hero-sub { font-size: 3rem; line-height: 32px; }
  .guide-intro { padding: 56px 0; }
  .guide-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .guide-intro-photo { order: -1; }
  .guide-intro-photo img { height: auto; aspect-ratio: 6 / 7; }
  .guide-collage {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    column-gap: 8px;
    row-gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 110px;
    margin-bottom: 72px;
  }
  .guide-collage-col img + img { margin-top: 8px; }
  .guide-collage-col-1, .guide-collage-col-2 { align-self: end; }
  .guide-collage-col-3, .guide-collage-col-4 { align-self: start; }
  .guide-collage-col-4 img { margin-top: 0; }
  .banner-inner { flex-direction: column; align-items: center; text-align: center; padding: 56px 32px; gap: 32px; }
  .banner img { width: 100%; max-width: 310px; height: auto; }
  .banner-text { margin-right: 0; align-items: center; }
  .banner span { display: none; }
  .banner strong { font-size: 1rem; }
  .banner .btn-primary { display: inline-block; width: auto; margin: 0 auto; }
  .faq-section { padding-top: 80px; }
  .faq-badge { font-size: 10px; line-height: 15px; padding: 3px 8px; }
  .faq-header h2 { font-size: 1.5rem; line-height: 32px; }
  .faq-list { grid-template-columns: 1fr; margin-top: 80px; }
  .faq-list-wrap { padding-bottom: 80px; }
}

/* WhatsApp-voorportaal: bijna schermvullend chatvenster in moderne WhatsApp-stijl.
   Alleen op mobiel; op desktop linken de knoppen direct naar wa.me. */
.wa-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(17, 24, 39, 0.6);
  display: none; align-items: center; justify-content: center;
  padding: 18px;
}
.wa-overlay.open { display: flex; }
.wa-phone {
  width: 100%; max-width: 420px; height: min(88vh, 760px);
  background: #ffffff; border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
@media (max-width: 520px) {
  .wa-overlay { padding: 0; }
  .wa-phone { max-width: none; height: 100%; border-radius: 0; }
}
.wa-head {
  background: #ffffff; color: #111b21;
  border-bottom: 1px solid #ebe5de;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 6px; flex-shrink: 0;
}
.wa-head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.wa-head-name { font-weight: 700; font-size: 17px; line-height: 1.2; }
.wa-head-status { font-size: 13px; color: #667781; }
.wa-close {
  background: none; border: 0; color: #111b21;
  cursor: pointer; padding: 6px; display: flex; align-items: center;
}
.wa-head-icons { margin-left: auto; display: flex; align-items: center; gap: 20px; color: #111b21; opacity: 0.85; }
.wa-body {
  flex: 1; overflow-y: auto; padding: 16px 12px;
  display: flex; flex-direction: column; gap: 8px;
  background-color: #ffffff;
  background-image: url("/static/images/wa-doodle.png");
  background-size: 380px auto;
}
.wa-msg {
  max-width: 84%; padding: 7px 9px 8px 12px; border-radius: 10px;
  font-size: 17px; font-weight: 500; color: #111b21;
  line-height: 1.45; white-space: pre-line;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.wa-msg.bot { background: #fafafa; align-self: flex-start; border-top-left-radius: 3px; }
.wa-msg.user { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 3px; }
.wa-meta {
  float: right; margin: 10px -2px -4px 10px;
  display: flex; align-items: center; gap: 3px;
  font-size: 11px; color: #667781;
}
.wa-typing span {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #9ca3af; margin-right: 4px;
  animation: wa-blink 1s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; margin-right: 0; }
@keyframes wa-blink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
.wa-chips { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 92%; }
.wa-chip {
  background: #fff; border: 1.5px solid #21c063; color: #0d7a43;
  font-family: inherit; font-weight: 600; font-size: 16px;
  border-radius: 22px; padding: 11px 18px; cursor: pointer;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.wa-chip:hover, .wa-chip:active { background: #e7f9ee; }
.wa-cards { display: flex; gap: 8px; align-self: stretch; }
.wa-card {
  flex: 1; background: #fff; border: 1.5px solid #21c063; border-radius: 14px;
  padding: 12px 6px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; color: #0d7a43;
  font-family: inherit; font-weight: 600; font-size: 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.wa-card:hover, .wa-card:active { background: #e7f9ee; }
.wa-card svg { width: 58px; height: 58px; }
.wa-foot {
  background: #f6f3ef; padding: 8px 10px;
  display: flex; gap: 8px; align-items: center; flex-shrink: 0;
}
.wa-input {
  flex: 1; border: 0; border-radius: 22px; padding: 13px 16px;
  font-family: inherit; font-size: 16px; background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.wa-input:disabled { opacity: 1; -webkit-text-fill-color: #667781; }
.wa-input:focus { outline: 2px solid #21c063; }
.wa-send {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: #21c063; border: 0; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.wa-send .ic-send { display: none; }
.wa-send.typing .ic-send { display: block; }
.wa-send.typing .ic-mic { display: none; }
.wa-cta {
  display: block; align-self: stretch; text-align: center;
  background: #21c063; color: #fff; text-decoration: none;
  font-weight: 700; font-size: 18px;
  border-radius: 26px; padding: 15px 18px; margin-top: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.wa-cta:hover { background: #1bab56; }
.wa-restart {
  align-self: center; background: none; border: 0; cursor: pointer;
  color: #0d7a43; text-decoration: underline;
  font-family: inherit; font-size: 14px; padding: 6px;
}
