/* Serampore Biovision Agro — site styles */
:root {
  --green-950: #0f2a18;
  --green-900: #163d23;
  --green-800: #1b5130;
  --green-700: #1f6b3a;
  --green-600: #2a8445;
  --green-100: #e6f1e3;
  --green-50: #f2f8f0;
  --cream: #faf8f2;
  --white: #ffffff;
  --ink: #1b271f;
  --muted: #56655b;
  --line: #dde5d8;
  --saffron: #e3a41f;
  --saffron-100: #fbf0d4;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(15, 42, 24, .06), 0 8px 24px rgba(15, 42, 24, .07);
  --shadow-lg: 0 2px 4px rgba(15, 42, 24, .06), 0 20px 48px rgba(15, 42, 24, .12);
  --wrap: 1180px;
  --font-body: "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Poppins", "Noto Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-underline-offset: 3px; }
a:hover { color: var(--green-600); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--green-950); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: 20px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--white); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
.section { padding-block: clamp(56px, 8vw, 96px); }
.section--tight { padding-block: clamp(40px, 6vw, 64px); }
.section--white { background: var(--white); }
.section--green { background: var(--green-50); }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-700); margin-bottom: .8rem;
}
.lead { font-size: 1.125rem; color: var(--muted); max-width: 62ch; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--green-700); color: var(--white); }
.btn--primary:hover { background: var(--green-800); color: var(--white); }
.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn--ghost:hover { background: var(--green-700); color: var(--white); }
.btn--light { background: var(--white); color: var(--green-900); }
.btn--light:hover { background: var(--saffron-100); color: var(--green-950); }
.btn--wa { background: #1f9d55; color: var(--white); }
.btn--wa:hover { background: #17834a; color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Top bar */
.topbar { background: var(--green-950); color: #cfe0d3; font-size: .85rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; flex-wrap: wrap; }
.topbar a { color: #eaf4ec; text-decoration: none; }
.topbar a:hover { color: var(--saffron); }
.topbar__links { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 720px) { .topbar { display: none; } }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--green-950); }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.15; display: block; }
.brand__sub { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav__link, .nav__toggle {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--ink); text-decoration: none; padding: 10px 14px; border-radius: 999px; background: none; border: 0; cursor: pointer;
}
.nav__link:hover, .nav__toggle:hover, .nav__link[aria-current="page"], .nav__item--active > .nav__toggle { color: var(--green-700); background: var(--green-50); }
.nav__toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.nav__item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 18px; display: none; grid-template-columns: repeat(3, minmax(190px, 1fr)); gap: 18px 24px; width: max-content;
  align-items: start;
}
/* Bridge the gap between the button and the menu, so travelling from one to
   the other does not leave .nav__item and close it. */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav__item.open .dropdown { display: grid; }
.nav__item.open .nav__toggle svg { transform: rotate(180deg); }
.dropdown h4 { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 6px; }
.dropdown h4 a { color: inherit; text-decoration: none; }
.dropdown h4 a:hover { color: var(--green-700); }
.dropdown ul { list-style: none; margin: 0; padding: 0; }
.dropdown li a { display: block; padding: 7px 10px; margin-inline: -10px; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: .93rem; }
.dropdown li a:hover { background: var(--green-50); color: var(--green-700); }
.nav__cta { margin-left: 10px; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; color: var(--green-950); }
.menu-btn svg { width: 22px; height: 22px; margin: auto; }

@media (max-width: 960px) {
  .menu-btn { display: grid; place-items: center; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; max-height: calc(100vh - 76px); overflow-y: auto;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; padding: 12px 20px 24px; display: none;
  }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__link, .nav__toggle { width: 100%; justify-content: space-between; padding: 14px 8px; border-radius: 8px; font-size: 1.05rem; }
  .dropdown { position: static; transform: none; box-shadow: none; border: 0; padding: 4px 8px 12px; grid-template-columns: minmax(0, 1fr); width: auto; }
  .nav__cta { margin: 12px 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero h1 span { color: var(--green-700); }
.hero__tag { font-family: var(--font-head); font-style: italic; color: var(--green-800); font-size: 1.05rem; margin-bottom: 1.25rem; }
.hero__media { position: relative; }
.hero__photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hero__bottle {
  position: absolute; right: -8px; bottom: -28px; width: 30%; max-width: 170px;
  filter: drop-shadow(0 18px 24px rgba(15, 42, 24, .28));
}
.hero__badge {
  position: absolute; left: -12px; top: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; gap: 10px; align-items: center; font-size: .85rem; line-height: 1.3;
}
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: var(--green-700); }
.hero__points { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 8px; }
.hero__points li { display: flex; gap: 10px; align-items: flex-start; }
.hero__points svg { width: 20px; height: 20px; color: var(--green-600); flex: none; margin-top: 3px; }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); }
  .hero__badge { left: 10px; top: 10px; }
  .hero__bottle { right: 6px; bottom: -18px; width: 26%; }
}

/* Stats */
.stats { background: var(--green-900); color: var(--white); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; padding-block: 34px; }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--saffron); line-height: 1.1; }
.stat span { color: #cfe0d3; font-size: .92rem; }
@media (max-width: 720px) { .stats .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Cards & grids */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1100px) { .grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 960px) { .grid--3, .grid--4, .grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: minmax(0, 1fr); } }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.card__body { padding: 22px 24px 26px; }
.card p:last-child { margin-bottom: 0; }

.cat-card { display: grid; grid-template-columns: minmax(0, 1fr) 180px; align-items: center; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: inherit; }
.cat-card .card__body { padding: 32px; }
.cat-card__img { height: 100%; min-height: 220px; background: var(--green-50); display: grid; place-items: center; padding: 16px; }
.cat-card__img img { height: 210px; width: 100%; object-fit: contain; }
.cat-card .more { font-family: var(--font-head); font-weight: 600; color: var(--green-700); display: inline-flex; gap: 6px; align-items: center; }
.cat-card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.cat-card:hover .more svg { transform: translateX(4px); }
@media (max-width: 520px) { .cat-card { grid-template-columns: minmax(0, 1fr); } .cat-card__img { min-height: 200px; order: -1; } }

.product-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
a.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: inherit; }
.product-card__img { height: 250px; background: radial-gradient(circle at 50% 60%, var(--white) 0%, var(--green-50) 70%); display: flex; align-items: center; justify-content: center; padding: 18px; }
.product-card__img img { width: 100%; height: 100%; object-fit: contain; }
.product-card__ph { width: 170px; height: 170px; max-width: 90%; flex: none; }
.product-card__ph { width: 70%; aspect-ratio: 1; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; text-align: center; font-family: var(--font-head); font-weight: 700; color: var(--green-800); padding: 12px; line-height: 1.2; }
.product-card .card__body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.08rem; margin-bottom: .3em; }
.product-card p { font-size: .92rem; color: var(--muted); }
.product-card .tag { margin-top: auto; padding-top: 10px; font-size: .82rem; font-weight: 600; color: var(--green-700); }
.pill { display: inline-block; align-self: flex-start; font-size: .75rem; font-weight: 600; letter-spacing: .03em; padding: 3px 10px; border-radius: 999px; background: var(--saffron-100); color: #7a5405; margin-bottom: 8px; }

.value-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.value-card h3 { margin-bottom: .4em; }
.value-card p { color: var(--muted); font-size: .95rem; }

/* Split feature */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 860px) { .split { grid-template-columns: minmax(0, 1fr); } }

.pests { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.2em; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--green-600); flex: none; margin-top: 2px; }

/* CTA band */
.cta { background: var(--green-800); background-image: radial-gradient(circle at 85% 20%, rgba(227, 164, 31, .22), transparent 45%); color: var(--white); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px; align-items: center; }
.cta h2 { color: var(--white); margin-bottom: .3em; }
.cta p { color: #d6e7da; margin: 0; }
@media (max-width: 760px) { .cta { grid-template-columns: minmax(0, 1fr); } }

/* Page header */
.page-head { background: linear-gradient(180deg, var(--white), var(--green-50)); border-bottom: 1px solid var(--line); padding-block: clamp(36px, 6vw, 64px); }
.page-head h1 { margin-bottom: .25em; }
.page-head .lead { margin: 0; }

/* Product headings sit on a crop photo, dimmed enough to keep the text readable. */
.page-head--photo { position: relative; isolation: isolate; background: var(--green-950); border-bottom: 0; }
.page-head--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--banner); background-size: cover; background-position: center;
}
.page-head--photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(15, 42, 24, .93) 0%, rgba(15, 42, 24, .82) 50%, rgba(15, 42, 24, .55) 100%);
}
.page-head--photo h1 { color: #fff; }
.page-head--photo .lead { color: rgba(255, 255, 255, .92); }
.page-head--photo .crumbs, .page-head--photo .crumbs a { color: rgba(255, 255, 255, .78); }
.page-head--photo .crumbs li + li::before { color: rgba(255, 255, 255, .5); }
.page-head--photo .crumbs a:hover { color: #fff; }
.page-head--photo h1 small { color: rgba(255, 255, 255, .75) !important; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: #9aab9f; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green-700); text-decoration: underline; }

/* Product detail */
.pd { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.pd__media { position: sticky; top: 100px; background: radial-gradient(circle at 50% 55%, var(--white) 0%, var(--green-50) 75%); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: grid; place-items: center; min-height: 360px; }
.pd__media img { height: 480px; width: 100%; object-fit: contain; }
.pd__type { font-weight: 600; color: var(--green-700); margin-bottom: .5rem; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.fact { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.fact span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.fact strong { font-family: var(--font-head); font-weight: 600; color: var(--green-950); }
@media (max-width: 860px) { .pd { grid-template-columns: minmax(0, 1fr); } .pd__media { position: static; min-height: 0; } .pd__media img { height: 340px; } }
@media (max-width: 420px) { .facts { grid-template-columns: minmax(0, 1fr); } }

.table-wrap { overflow-x: auto; margin: 0 0 1.2em; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--green-50); font-family: var(--font-head); font-weight: 600; color: var(--green-900); }
tr:last-child td { border-bottom: 0; }

.prose h2 { font-size: 1.45rem; margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose > :first-child { margin-top: 0; }
.prose ul { margin: 0 0 1em; }
.prose li { margin-bottom: .35em; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 1em 0 1.5em; }
.info { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.info h3 { font-size: 1rem; margin: 0 0 .4em; display: flex; gap: 8px; align-items: center; }
.info h3 svg { width: 18px; height: 18px; color: var(--green-600); }
.info p, .info ul { font-size: .95rem; margin-bottom: 0; color: #334238; }
@media (max-width: 640px) { .info-grid { grid-template-columns: minmax(0, 1fr); } }
.note { border-left: 4px solid var(--saffron); background: var(--saffron-100); padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; font-size: .95rem; }

/* About: document layout */
.doc { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.toc { position: sticky; top: 96px; max-height: calc(100vh - 116px); overflow-y: auto; padding-right: 4px; }
.toc__title { font-family: var(--font-head); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.toc ol, .toc-mobile ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.toc a, .toc-mobile a { display: block; margin-left: -2px; padding: 5px 0 5px 14px; border-left: 2px solid transparent; font-size: .88rem; line-height: 1.35; color: var(--ink); text-decoration: none; }
.toc a:hover, .toc-mobile a:hover, .toc a.is-active { color: var(--green-700); border-left-color: var(--green-600); }
.toc a.is-active { font-weight: 600; }
.toc-mobile { display: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 36px; }
.toc-mobile summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--green-900); }
.toc-mobile ol { margin-top: 12px; }
@media (max-width: 960px) { .doc { grid-template-columns: minmax(0, 1fr); } .toc { display: none; } .toc-mobile { display: block; } }

.chapter { scroll-margin-top: 96px; padding-bottom: clamp(40px, 6vw, 64px); margin-bottom: clamp(40px, 6vw, 64px); border-bottom: 1px solid var(--line); }
.chapter:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.chapter > .eyebrow { margin-bottom: .4rem; }
.chapter > h2 { margin-bottom: .7em; }
.chapter h3 { margin: 1.8em 0 .6em; }
.chapter .grid, .chapter .info-grid, .chapter .split, .chapter .table-wrap { margin-bottom: 1.4em; }
.chapter .split { gap: clamp(24px, 3vw, 40px); }
.chapter ul:not([class]) { margin: 0 0 1em; }
.chapter li { margin-bottom: .3em; }
.chapter .info h3, .chapter .statement h3 { margin-top: 0; }
.info__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--saffron); margin-bottom: 2px; }
.info__link { display: inline-flex; align-items: center; gap: 6px; margin: 10px 16px 0 0; font-family: var(--font-head); font-weight: 600; font-size: .88rem; text-decoration: none; }
.info__link svg { width: 15px; height: 15px; }
.info p + p { margin-top: .6em; }

.motto { font-family: var(--font-head); font-style: italic; font-weight: 500; color: var(--green-800); border-left: 4px solid var(--saffron); padding-left: 14px; }
.statement { background: var(--green-900); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 32px); }
.statement h3 { color: var(--saffron); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.statement p { font-family: var(--font-head); font-size: clamp(1.02rem, 1.8vw, 1.15rem); line-height: 1.55; color: var(--white); margin: 0; }
.statement strong { color: var(--saffron-100); }
.values { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.values li { display: flex; gap: 10px; align-items: flex-start; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; line-height: 1.35; color: var(--green-900); }
.values svg { width: 20px; height: 20px; color: var(--green-600); flex: none; }

.highlight { display: flex; gap: 18px; align-items: center; background: var(--green-900); border-radius: var(--radius); padding: 16px 22px; margin: 0 0 1.2em; }
.highlight strong { flex: none; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.6rem); line-height: 1; color: var(--saffron); }
.highlight p { margin: 0; color: #d6e7da; }

/* Lists */
.num-cards { list-style: none; padding: 0; margin: 0 0 1.4em; counter-reset: n; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.num-cards > li { counter-increment: n; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px 18px; }
.num-cards > li::before { content: counter(n, decimal-leading-zero); display: block; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--saffron); }
.num-cards > li > strong { display: block; font-family: var(--font-head); color: var(--green-950); margin-bottom: 2px; }
.num-cards p { margin: 0; font-size: .95rem; color: #334238; }
@media (max-width: 640px) { .num-cards { grid-template-columns: minmax(0, 1fr); } }
.chips { list-style: none; padding: 0; margin: 0 0 1.2em; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .9rem; }
.timeline { list-style: none; padding: 0; margin: 0; border-left: 3px solid var(--green-100); }
.timeline li { position: relative; margin: 0; padding: 0 0 20px 22px; }
.timeline li::before { content: ""; position: absolute; left: -9px; top: 5px; width: 15px; height: 15px; border-radius: 50%; background: var(--saffron); border: 3px solid var(--cream); }
.timeline strong { display: block; font-family: var(--font-head); color: var(--green-950); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(28px, 4vw, 48px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.contact-item__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; flex: none; }
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item h3 { font-size: 1rem; margin-bottom: .2em; }
.contact-item p { margin: 0; color: #334238; }
.contact-item a { font-weight: 600; }
.map { border: 0; width: 100%; height: 320px; border-radius: var(--radius-lg); margin-top: 20px; background: var(--green-50); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 36px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--cream); border: 1px solid #cdd8c8; border-radius: 10px; padding: 12px 14px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(42, 132, 69, .18); background: var(--white); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: minmax(0, 1fr); } }
.form small { display: block; color: var(--muted); margin-top: 12px; }

/* Footer */
.footer { background: var(--green-950); color: #bcd0c1; font-size: .93rem; margin-top: 0; }
.footer .wrap { padding-block: 56px 28px; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr); gap: 32px; }
.footer h3 { color: var(--white); font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { color: #e3eee6; text-decoration: none; }
.footer a:hover { color: var(--saffron); }
.footer .brand { color: var(--white); margin-bottom: 14px; }
.footer .brand img { background: var(--white); border-radius: 10px; padding: 4px; }
.footer .brand__sub { color: #9fb6a5; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .85rem; color: #93a998; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: minmax(0, 1fr); } }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #1f9d55; color: var(--white);
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.wa-float:hover { background: #17834a; color: var(--white); }
.wa-float svg { width: 30px; height: 30px; }

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