/* =========================================================
   Kyivmoodline — Premium Stationery Store
   Design System & Global Styles
   ========================================================= */

:root {
  /* Brand palette */
  --color-sprout: #c6d166;     /* Молодий росток */
  --color-plant: #5c821a;      /* Рослина */
  --color-white: #ffffff;      /* Білий */
  --color-dark: #0f1b07;       /* Темно-зелений */

  /* Derived tones */
  --plant-dark: #466213;
  --plant-light: #eef3da;
  --sprout-soft: #f6f8e8;
  --ink: #1c2a12;
  --muted: #5e6b4f;
  --line: #e6ead5;
  --bg: #fbfcf6;

  /* Typography */
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-head: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Radii & shadows */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(15, 27, 7, 0.06);
  --shadow: 0 16px 40px rgba(15, 27, 7, 0.10);
  --shadow-lg: 0 28px 70px rgba(15, 27, 7, 0.16);

  /* Layout */
  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --header-h: 78px;

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

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--color-dark); font-weight: 800; letter-spacing: -0.02em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tint { background: var(--sprout-soft); }
.section--dark { background: var(--color-dark); color: #e9efdd; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-plant); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--color-sprout); border-radius: 2px; }
.section--dark .eyebrow { color: var(--color-sprout); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: #c2cdae; }

.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--color-plant); color: #fff; box-shadow: 0 12px 26px rgba(92,130,26,.32); }
.btn--primary:hover { background: var(--plant-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(92,130,26,.42); }
.btn--accent { background: var(--color-sprout); color: var(--color-dark); }
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(198,209,102,.5); }
.btn--ghost { background: transparent; color: var(--color-dark); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--color-plant); color: var(--color-plant); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--color-plant); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.96); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-name { font-size: 1.25rem; color: var(--color-dark); letter-spacing: -0.02em; }
.brand-name span { color: var(--color-plant); }

.nav-menu { display: flex; align-items: center; gap: .35rem; }
.nav-menu a {
  position: relative; padding: .55rem .8rem; border-radius: 999px;
  font-weight: 600; font-size: .94rem; color: var(--ink);
  transition: color .25s, background .25s;
}
.nav-menu a:hover { color: var(--color-plant); background: var(--plant-light); }
.nav-menu a.active { color: var(--color-plant); background: var(--plant-light); }
.nav-actions { display: flex; align-items: center; gap: .8rem; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--plant-light); position: relative;
}
.burger span { position: absolute; left: 12px; right: 12px; height: 2.5px; background: var(--color-dark); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 920px) {
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: #fff; padding: 1rem clamp(1rem,4vw,2rem) 1.5rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .35s var(--ease), opacity .3s;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: .85rem 1rem; font-size: 1rem; border-radius: 12px; }
  .burger { display: block; }
  .nav-actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem); }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at center, rgba(198,209,102,.45), transparent 65%);
  z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.hero h1 .hl { color: var(--color-plant); }
.hero p { margin-top: 1.3rem; font-size: 1.12rem; color: var(--muted); max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; }
.hero-stats .num { font-size: 1.9rem; font-weight: 800; color: var(--color-dark); }
.hero-stats .lbl { font-size: .85rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-visual .main-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius);
  padding: 1rem 1.3rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem;
}
.hero-badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--plant-light); display: grid; place-items: center; color: var(--color-plant); }
.hero-badge .ic svg { width: 24px; height: 24px; }
.hero-badge strong { display: block; color: var(--color-dark); }
.hero-badge span { font-size: .82rem; color: var(--muted); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark), var(--plant-dark));
  color: #fff; padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -8%; bottom: -40%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(198,209,102,.3), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { margin-top: 1.1rem; color: #d7e0c4; font-size: 1.1rem; }
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; color: #b9c7a0; margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--color-sprout); }
.breadcrumb span { color: var(--color-sprout); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: var(--gap); }
.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: 980px) { .grid--4 { grid-template-columns: repeat(2,1fr); } .grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* Category / product card */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
.card-tag {
  position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--color-plant);
  font-size: .74rem; font-weight: 700; padding: .35rem .7rem; border-radius: 999px;
}
.card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body h3 { font-size: 1.18rem; }
.card-body p { color: var(--muted); font-size: .96rem; }
.card-link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--color-plant); font-size: .92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .3s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Icon feature card */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature .ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--plant-light); color: var(--color-plant); margin-bottom: 1.1rem;
}
.feature .ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media { position: relative; }

.check-list { display: grid; gap: .9rem; margin-top: 1.6rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; }
.check-list .ic { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--color-sprout); color: var(--color-dark); display: grid; place-items: center; }
.check-list .ic svg { width: 15px; height: 15px; }
.check-list strong { color: var(--color-dark); }
.check-list span { color: var(--muted); font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: 1.5rem 1rem; border-radius: var(--radius); }
.stat .num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: var(--color-sprout); }
.stat .lbl { margin-top: .3rem; color: #c8d3b1; font-weight: 600; letter-spacing: .02em; }

/* ---------- Needs / tabs-like list ---------- */
.needs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 980px) { .needs { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .needs { grid-template-columns: 1fr; } }
.need {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 240px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
}
.need img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.need::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,27,7,.85), rgba(15,27,7,.05)); }
.need-body { position: relative; z-index: 1; padding: 1.3rem; }
.need-body h3 { color: #fff; font-size: 1.15rem; }
.need-body p { color: #d7e0c4; font-size: .88rem; margin-top: .3rem; }
.need:hover img { transform: scale(1.08); }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width: 980px){ .reviews { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .reviews { grid-template-columns: 1fr;} }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { display: flex; gap: 3px; color: var(--color-sprout); }
.stars svg { width: 18px; height: 18px; }
.review blockquote { color: var(--ink); font-size: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-author svg { width: 32px; height: 32px; }
.review-author strong { display: block; color: var(--color-dark); }
.review-author span { font-size: .85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-plant), var(--plant-dark));
  border-radius: var(--radius-lg); padding: clamp(2.2rem,5vw,3.5rem); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(198,209,102,.4), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem,3.5vw,2.4rem); }
.cta-band p { color: #e6eed5; margin-top: .6rem; max-width: 46ch; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width: 900px){ .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline:auto; } }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--color-plant); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before {
  content: "Популярний"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--color-plant); color: #fff; font-size: .75rem; font-weight: 700; padding: .3rem .9rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; }
.price-card .price { font-size: 2.4rem; font-weight: 800; color: var(--color-dark); }
.price-card .price small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.price-card ul { display: grid; gap: .7rem; }
.price-card ul li { display: flex; gap: .6rem; align-items: flex-start; color: var(--muted); font-size: .95rem; }
.price-card ul .ic { color: var(--color-plant); flex: none; }
.price-card ul .ic svg { width: 18px; height: 18px; }
.price-card .btn { margin-top: auto; }

/* Price table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table.price-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 520px; }
.price-table th, .price-table td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--color-dark); color: #fff; font-weight: 700; }
.price-table tbody tr:hover { background: var(--sprout-soft); }
.price-table td:last-child { font-weight: 700; color: var(--color-plant); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem; font-weight: 700; color: var(--color-dark); font-size: 1.02rem; text-align: left;
}
.faq-q .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--plant-light); color: var(--color-plant); display: grid; place-items: center; transition: transform .35s var(--ease); }
.faq-q .chev svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--plant-light); color: var(--color-plant); display: grid; place-items: center; margin: 0 auto 1rem; }
.contact-card .ic svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card p { color: var(--muted); }

.form-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
@media (max-width: 900px){ .form-wrap { grid-template-columns: 1fr; } }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--color-dark); }
.field input, .field textarea {
  width: 100%; padding: .9rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-plant); box-shadow: 0 0 0 4px rgba(92,130,26,.12); }
.field.error input, .field.error textarea { border-color: #d64545; box-shadow: 0 0 0 4px rgba(214,69,69,.1); }
.field .err-msg { display: none; color: #d64545; font-size: .82rem; margin-top: .35rem; }
.field.error .err-msg { display: block; }
.form-info { display: grid; gap: 1rem; align-content: start; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; background: var(--sprout-soft); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.info-row .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: #fff; color: var(--color-plant); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row strong { display: block; color: var(--color-dark); }
.info-row span { color: var(--muted); font-size: .95rem; }

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

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,27,7,.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 1rem; z-index: 200; opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff; border-radius: var(--radius-lg); padding: 2.5rem 2rem; max-width: 420px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.96); opacity: 0;
  transition: transform .4s var(--ease), opacity .35s;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal .check-ring { width: 78px; height: 78px; margin: 0 auto 1.3rem; border-radius: 50%; background: var(--plant-light); display: grid; place-items: center; color: var(--color-plant); animation: pop .5s var(--ease); }
.modal .check-ring svg { width: 40px; height: 40px; }
.modal h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.modal p { color: var(--muted); margin-bottom: 1.5rem; }
@keyframes pop { 0%{transform:scale(.4);opacity:0;} 60%{transform:scale(1.1);} 100%{transform:scale(1);opacity:1;} }

/* ---------- Legal / prose ---------- */
.prose { max-width: 860px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.4rem; margin-bottom: .9rem; }
.prose h3 { font-size: 1.18rem; margin-top: 1.6rem; margin-bottom: .6rem; }
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose ul.bullets { display: grid; gap: .6rem; margin: 0 0 1.3rem; }
.prose ul.bullets li { position: relative; padding-left: 1.6rem; color: var(--muted); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--color-sprout); }
.note-box { background: var(--plant-light); border-left: 4px solid var(--color-plant); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.note-box strong { color: var(--color-dark); }
.note-box p { margin: .3rem 0 0; color: var(--ink); }

/* ---------- Divider ---------- */
.divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto; max-width: 280px; }
.divider span { height: 1px; flex: 1; background: var(--line); }
.divider .dot { width: 8px; height: 8px; background: var(--color-sprout); border-radius: 50%; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-dark); color: #c2cdae; padding-top: clamp(3rem,6vw,4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer-brand img { width: 44px; height: 44px; border-radius: 12px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name span { color: var(--color-sprout); }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.site-footer p { font-size: .94rem; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { color: #c2cdae; font-size: .94rem; transition: color .25s, padding-left .25s; }
.footer-links a:hover { color: var(--color-sprout); padding-left: 5px; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .94rem; }
.footer-contact .ic { flex: none; color: var(--color-sprout); }
.footer-contact .ic svg { width: 18px; height: 18px; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #dbe4c8; transition: background .3s, transform .3s, color .3s; }
.socials a:hover { background: var(--color-plant); color: #fff; transform: translateY(-3px); }
.socials a svg { width: 20px; height: 20px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: #97a585; }
.company-meta { font-size: .85rem; color: #97a585; line-height: 1.9; margin-top: .8rem; }
.company-meta strong { color: #c8d3b1; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Misc ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.tag-row .chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; font-size: .85rem; font-weight: 600; color: var(--color-plant); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--color-plant); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0; z-index: 300; }
.skip-link:focus { left: 0; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  width: min(960px, calc(100% - 32px));
  background: var(--color-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.6rem;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: transform .55s var(--ease), opacity .45s var(--ease), visibility .45s var(--ease);
}
.cookie-banner.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.cookie-banner__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--plant-light);
  color: var(--color-plant);
}
.cookie-banner__icon svg { width: 26px; height: 26px; }
.cookie-banner__text { flex: 1 1 auto; }
.cookie-banner__text h3 { font-size: 1.05rem; margin: 0 0 .3rem; color: var(--ink); }
.cookie-banner__text p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.5; }
.cookie-banner__text a { color: var(--color-plant); font-weight: 600; text-decoration: underline; }
.cookie-banner__actions { flex: 0 0 auto; display: flex; gap: .7rem; }
@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; text-align: left; padding: 1.2rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
