/* ===========================================================
   Go Green Save Earth (GGSE) — plain HTML rebuild
   Rebuilt from web.archive.org snapshot (2019-07-24) of ggse.in
   =========================================================== */

:root {
  --green-900: #143d24;
  --green-800: #1b5e2f;
  --green-700: #2e7d32;
  --green-600: #388e3c;
  --green-500: #4caf50;
  --green-400: #66bb6a;
  --green-100: #e8f5e9;
  --leaf:      #8bc34a;
  --earth:     #6d4c2f;
  --cream:     #f7faf3;
  --ink:       #233028;
  --muted:     #5b6b60;
  --line:      #dfe9dd;
  --white:     #ffffff;
  --shadow:    0 12px 30px rgba(20, 61, 36, .10);
  --shadow-sm: 0 6px 16px rgba(20, 61, 36, .08);
  --radius:    16px;
  --max:       1160px;
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Mulish", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; color: var(--green-900); margin: 0 0 .5em; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-500); }
img { max-width: 100%; display: block; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-600);
  margin: 0 0 .6em;
}

.section { padding: 84px 0; }
.section--tint { background: var(--green-100); }
.section--dark { background: var(--green-900); color: #dff0e3; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-700); color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color:#fff; }
.btn--outline { border-color: var(--green-600); color: var(--green-700); background: transparent; }
.btn--outline:hover { background: var(--green-600); color: #fff; }

/* ===========================================================
   Header / Nav
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; color: var(--green-900); }
.brand:hover { color: var(--green-900); }
.brand .logo-mark { width: 42px; height: 42px; flex: none; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .brand-text strong { font-size: 1.18rem; letter-spacing: .01em; }
.brand .brand-text span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--green-600); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: 9px 15px; border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a.active { background: var(--green-100); color: var(--green-800); }
.nav .btn { margin-left: 10px; padding: 10px 20px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-900); margin: 5px 0; border-radius: 2px; transition: .25s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 18px 18px; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 12px; border-radius: 10px; }
  .nav .btn { margin: 10px 0 0; justify-content: center; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity: 0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(139,195,74,.35), transparent 60%),
    linear-gradient(160deg, rgba(27,94,47,.90) 0%, rgba(20,61,36,.95) 100%),
    url("img/px-forest-canopy.jpg") center/cover;
  color: #eaf6ec;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-top: 84px; padding-bottom: 96px; }
.hero .eyebrow { color: var(--leaf); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: .35em; }
.hero p.lead { font-size: 1.18rem; color: #cfe6d3; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-quote { margin-top: 30px; font-style: italic; color: #bfe0c5; border-left: 3px solid var(--leaf); padding-left: 16px; max-width: 460px; }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }
.hero-photo { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 5 / 4;
  border: 6px solid rgba(255,255,255,.12); box-shadow: 0 28px 60px rgba(0,0,0,.35); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .badge {
  position: absolute; bottom: 16px; left: 16px; background: rgba(20,61,36,.85); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; padding: 9px 16px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* leafy bottom divider */
.leaf-divider { display: block; width: 100%; height: 60px; margin-top: -1px; }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero-art { order: -1; max-width: 360px; }
}

/* ===========================================================
   Welcome / two-col
   =========================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .media { order: 2; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; gap: 34px; } .split--reverse .media { order: 0; } }

.media-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  aspect-ratio: 4 / 3; display: grid; place-items: center; color: #fff; position: relative;
}
.media-card svg { width: 72%; height: auto; }
.media-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-card .badge {
  position: absolute; z-index: 2; bottom: 16px; left: 16px; background: rgba(255,255,255,.92); color: var(--green-800);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; padding: 8px 14px; border-radius: 999px;
}

/* ===========================================================
   Product / feature cards
   =========================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px){ .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--green-100); color: var(--green-700); margin-bottom: 16px; }
.card .ic svg { width: 28px; height: 28px; }
.card h5 { font-size: 1.12rem; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ===========================================================
   Quote band
   =========================================================== */
.quote-band {
  background:
    linear-gradient(rgba(20,61,36,.80), rgba(20,61,36,.88)),
    url("img/px-green-tree.jpg") center/cover;
  color: #fff; text-align: center; padding: 76px 0;
}
.quote-band blockquote { font-family: var(--font-head); font-size: clamp(1.4rem, 3.4vw, 2.1rem); font-weight: 600; max-width: 820px; margin: 0 auto 26px; color: #fff; line-height: 1.35; }
.quote-band blockquote::before { content: "“"; color: var(--leaf); font-size: 1.4em; line-height: 0; vertical-align: -.25em; margin-right: .08em; }

/* ===========================================================
   Stats / counters
   =========================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 700px){ .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); color: #fff; line-height: 1; }
.section--dark .stat .label { color: #bcdcc2; font-weight: 500; }
.stat .label { color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ===========================================================
   Get involved
   =========================================================== */
.involve .card { text-align: center; }
.involve .card .ic { margin: 0 auto 16px; }

/* ===========================================================
   Blog / Events listing
   =========================================================== */
.posts { display: grid; gap: 26px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px){ .posts { grid-template-columns: 1fr; } }
.post {
  display: flex; gap: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post .thumb { position: relative; flex: none; width: 150px; background: var(--green-100); }
.post .thumb img { width: 100%; height: 100%; min-height: 175px; object-fit: cover; display: block; }
.post .date {
  position: absolute; top: 10px; left: 10px; border-radius: 10px; background: var(--green-700); color: #fff;
  padding: 7px 10px; text-align: center; font-family: var(--font-head); line-height: 1; box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.post .date .d { display: block; font-size: 1.3rem; font-weight: 800; }
.post .date .m { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }
.post .body { padding: 22px; }
.post h3 { font-size: 1.12rem; margin-bottom: .4em; }
.post p { color: var(--muted); font-size: .95rem; margin: 0 0 .6em; }
.post .meta { font-size: .8rem; color: #9aa89e; }
@media (max-width: 480px){ .post .thumb { width: 104px; } .post .body { padding: 16px; } }

/* card photo header (product cards) */
.card .card-photo { margin: -30px -26px 20px; height: 190px; overflow: hidden; }
.card .card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.card:hover .card-photo img { transform: scale(1.05); }

/* gallery grid */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-sm); }
@media (max-width: 640px){ .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ===========================================================
   About page extras
   =========================================================== */
.page-hero {
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(139,195,74,.30), transparent 60%),
    linear-gradient(160deg, rgba(27,94,47,.90), rgba(20,61,36,.95)),
    url("img/px-forest-light.jpg") center/cover;
  color: #eaf6ec; padding: 70px 0 78px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: #cfe6d3; max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: #a7cdb0; margin-bottom: 14px; }
.breadcrumb a { color: var(--leaf); }

.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.fact-list li { display: flex; gap: 12px; align-items: flex-start; }
.fact-list li::before { content: "✦"; color: var(--green-500); font-size: 1.1rem; line-height: 1.4; }

.info-box { background: var(--green-100); border-left: 4px solid var(--green-600); border-radius: 12px; padding: 22px 24px; }
.info-box dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; }
.info-box dt { font-family: var(--font-head); font-weight: 600; color: var(--green-800); }
.info-box dd { margin: 0; color: var(--muted); }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.pill-list li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .9rem; font-family: var(--font-head); color: var(--green-800); }

/* ===========================================================
   Contact page
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-card { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-card .ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h4 { margin: 0 0 2px; font-size: 1rem; }
.contact-card p, .contact-card a { margin: 0; color: var(--muted); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .form .row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--green-800); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: var(--cream); transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(76,175,80,.18); background:#fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: #9aa89e; margin-top: 6px; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ===========================================================
   CTA strip
   =========================================================== */
.cta-strip { position: relative; text-align: center; padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(27,94,47,.82), rgba(20,61,36,.72)),
    url("img/px-seedling-hands.jpg") center 35%/cover;
  color: #eaf6ec; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: #d8ecdc; max-width: 600px; margin: 0 auto 22px; }
.cta-strip .btn--primary { background: var(--green-500); color: #0f2e19; }
.cta-strip .btn--primary:hover { background: #fff; color: var(--green-800); }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--green-900); color: #b9d3bf; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer p { font-size: .92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #b9d3bf; font-size: .92rem; }
.site-footer a:hover { color: var(--leaf); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .logo-mark { width: 40px; }
.footer-brand strong { color: #fff; font-family: var(--font-head); font-size: 1.15rem; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.social a:hover { background: var(--green-600); }
.social svg { width: 18px; height: 18px; fill: #cfe6d3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding: 22px 0; text-align: center; font-size: .85rem; color: #88a890; }

/* reveal-on-scroll — only hide when JS is active, so content is always
   visible if JS is disabled or fails (progressive enhancement). */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1; transform: none; transition: none; } html{ scroll-behavior:auto; } }

/* ===========================================================
   Footer chat assistant (Gift a Sapling bot)
   =========================================================== */
.chatbot { position: fixed; right: 22px; bottom: 22px; z-index: 90; font-family: var(--font-body); }
.chatbot__launcher {
  position: relative; width: 60px; height: 60px; border: 0; border-radius: 50%;
  background: var(--green-600); color: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(20,61,36,.32); transition: transform .2s ease, background .2s ease;
}
.chatbot__launcher:hover { background: var(--green-700); transform: translateY(-2px); }
.chatbot__launcher svg { width: 27px; height: 27px; }
.chatbot .ic-chat { fill: currentColor; }
.chatbot .ic-close { display: none; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.chatbot.is-open .ic-chat { display: none; }
.chatbot.is-open .ic-close { display: block; }
.chatbot__launcher::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(76,175,80,.5); animation: cb-pulse 2.6s infinite;
}
.chatbot.is-open .chatbot__launcher::after { display: none; }
@keyframes cb-pulse { 0% { box-shadow: 0 0 0 0 rgba(76,175,80,.45); } 70% { box-shadow: 0 0 0 16px rgba(76,175,80,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); } }

.chatbot__panel {
  position: absolute; right: 0; bottom: 74px; width: 350px; max-width: calc(100vw - 32px);
  height: 470px; max-height: calc(100vh - 120px); background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: 0 26px 64px rgba(20,61,36,.30); display: flex; flex-direction: column;
  overflow: hidden; animation: cb-in .22s ease;
}
.chatbot__panel[hidden] { display: none; }
@keyframes cb-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.chatbot__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600)); color: #fff; }
.chatbot__title { font-family: var(--font-head); font-weight: 600; display: flex; flex-direction: column; line-height: 1.15; }
.chatbot__title small { font-weight: 400; opacity: .85; font-size: .72rem; }
.chatbot__min { background: none; border: 0; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 0 4px; }
.chatbot__log { flex: 1; overflow-y: auto; padding: 16px; background: var(--cream); display: flex; flex-direction: column; gap: 10px; }
.cb-msg { max-width: 84%; padding: 10px 13px; border-radius: 14px; font-size: .92rem; line-height: 1.5; word-wrap: break-word; }
.cb-msg--bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--ink); }
.cb-msg--user { align-self: flex-end; background: var(--green-600); color: #fff; border-bottom-right-radius: 4px; }
.cb-chips { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; }
.cb-chip { background: #fff; border: 1px solid var(--green-500); color: var(--green-700); border-radius: 999px;
  padding: 8px 14px; font-family: var(--font-head); font-size: .85rem; cursor: pointer; transition: background .15s ease, color .15s ease; }
.cb-chip:hover { background: var(--green-600); color: #fff; }
.cb-typing { display: inline-flex; gap: 4px; padding: 2px 0; }
.cb-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); animation: cb-bounce 1s infinite; }
.cb-typing i:nth-child(2) { animation-delay: .15s; }
.cb-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes cb-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }
.chatbot__input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); background: #fff; }
.chatbot__input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; font: inherit; background: var(--cream); }
.chatbot__input input:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(76,175,80,.18); background: #fff; }
.chatbot__input button { flex: none; width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--green-600); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chatbot__input button:hover { background: var(--green-700); }
.chatbot__input button svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 480px){ .chatbot { right: 16px; bottom: 16px; } .chatbot__panel { bottom: 70px; } }
@media (prefers-reduced-motion: reduce){ .chatbot__launcher::after { animation: none; } .chatbot__panel { animation: none; } .cb-typing i { animation: none; } }
