/* ==================================================================
   Foodondoor — Premium B2B Dairy Portal Design System
   Deep-green + lime brand palette · Sora/Inter type · layered depth
   ================================================================== */

:root {
  /* brand */
  --lime: #5abe3a;
  --lime-bright: #7ee05a;
  --brand: #177a43;
  --brand-dark: #0e5230;
  --brand-light: #e9f7ea;

  /* dark greens (hero / footer) */
  --g950: #071710;
  --g900: #0a2117;
  --g800: #0f3322;

  /* accent */
  --accent: #f7a823;
  --accent-dark: #d68c0e;

  /* neutrals */
  --ink: #10241a;
  --ink-soft: #51655a;
  --line: #e3eae3;
  --bg: #ffffff;
  --bg-soft: #f4f8f4;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 10px rgba(16, 36, 26, 0.06), 0 12px 32px rgba(16, 36, 26, 0.07);
  --shadow-lg: 0 6px 18px rgba(16, 36, 26, 0.1), 0 28px 60px rgba(16, 36, 26, 0.16);
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --max-w: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-head); }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 36, 26, 0.07);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--g900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo:hover { text-decoration: none; }
.logo .logo-mark {
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 4px 10px rgba(90, 190, 58, 0.35));
}
.logo .logo-mark img { height: 40px; width: auto; display: block; }
.logo .tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 2px;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lime), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--brand-dark); text-decoration: none; }
.nav-links a.active { color: var(--brand-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, #ffbe45 0%, var(--accent) 55%, #eb9a10 100%);
  color: #2b1c00;
  box-shadow: 0 4px 14px rgba(247, 168, 35, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(247, 168, 35, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand);
}
.btn-outline:hover { background: var(--brand-light); }

.btn-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--g900);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.btn-light:hover { background: #fff; }

.btn-sm { padding: 10px 20px; font-size: 0.87rem; border-radius: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--ink);
  cursor: pointer;
}

/* ==================================================================
   HERO — dark, layered, 3D
   ================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(90, 190, 58, 0.28), transparent 60%),
    radial-gradient(700px 420px at 88% 8%, rgba(247, 168, 35, 0.16), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(23, 122, 67, 0.35), transparent 62%),
    linear-gradient(165deg, var(--g900) 0%, var(--g950) 70%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  /* faint grid for technical/export feel */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 35%, #000 0%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 40px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(90, 190, 58, 0.13);
  border: 1px solid rgba(90, 190, 58, 0.4);
  color: #c9f3b8;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero .eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-bright);
  box-shadow: 0 0 0 0 rgba(126, 224, 90, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 224, 90, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(126, 224, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 224, 90, 0); }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(92deg, var(--lime-bright) 10%, #ffd66e 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .tick { color: var(--lime-bright); }

/* --- 3D visual composition --- */
.hero-visual {
  position: relative;
  min-height: 460px;
  perspective: 1200px;
}

.hv-card {
  position: absolute;
  top: 50%;
  right: 2%;
  width: min(330px, 70%);
  transform: translateY(-50%) rotateX(8deg) rotateY(-12deg);
  transform-style: preserve-3d;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease-out;
  will-change: transform;
  animation: heroFloat 7s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { margin-top: -8px; }
  to { margin-top: 10px; }
}

.hv-card .hv-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hv-card .hv-head img { height: 40px; width: auto; filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35)); }
.hv-card .hv-head .t1 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.hv-card .hv-head .t2 { font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.1em; text-transform: uppercase; }

.hv-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hv-line:last-of-type { border-bottom: none; }
.hv-line .ok { color: var(--lime-bright); font-weight: 700; }
.hv-line .val { font-weight: 600; color: #fff; }

.hv-stamp {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 190, 58, 0.18);
  border: 1px solid rgba(126, 224, 90, 0.5);
  color: #c9f3b8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.hv-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 11px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  white-space: nowrap;
  animation: chipFloat 6s ease-in-out infinite alternate;
}
.hv-chip .em { font-size: 1.15rem; }
@keyframes chipFloat {
  from { transform: translateY(-6px); }
  to { transform: translateY(8px); }
}
.hv-chip-1 { top: 2%; left: 0; animation-delay: 0.2s; }
.hv-chip-2 { top: 24%; left: -3%; animation-delay: 1.1s; }
.hv-chip-5 { top: 47%; left: 3%; animation-delay: 2.1s; }
.hv-chip-4 { bottom: 2%; left: 2%; animation-delay: 1.6s; }
.hv-chip-3 { bottom: -4%; right: 6%; animation-delay: 0.6s; }

/* --- hero stats band --- */
.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 0 64px;
}
.hero-stats .stat {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-stats .num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(92deg, var(--lime-bright), #ffd66e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats .lbl { font-size: 0.84rem; color: rgba(255, 255, 255, 0.68); margin-top: 2px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(700px 380px at 15% -20%, rgba(90, 190, 58, 0.3), transparent 60%),
    radial-gradient(600px 320px at 90% 0%, rgba(247, 168, 35, 0.14), transparent 55%),
    linear-gradient(160deg, var(--g900), var(--g950));
  color: #fff;
  padding: 76px 0;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(75% 90% at 50% 20%, #000 0%, transparent 100%);
  pointer-events: none;
}
.page-hero h1 {
  position: relative;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.page-hero p {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.06rem;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(90, 190, 58, 0.07), transparent 60%),
    var(--bg-soft);
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .kicker,
.kicker {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--brand-light);
  border: 1px solid rgba(23, 122, 67, 0.18);
  padding: 6px 16px;
  border-radius: 999px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.04rem; }

/* ---------- 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); }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--accent));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }

.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--brand-light), #fdf3da);
  border: 1px solid rgba(23, 122, 67, 0.14);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(23, 122, 67, 0.1);
}
.card h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card .card-link { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 0.92rem; }

/* ---------- Product cards ---------- */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .product-visual {
  height: 140px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  background:
    radial-gradient(220px 120px at 50% 110%, rgba(247, 168, 35, 0.18), transparent 70%),
    linear-gradient(150deg, var(--g800), var(--g900));
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}
.product-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 4px; }
.product-card .sub {
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.product-card p { color: var(--ink-soft); font-size: 0.93rem; margin-bottom: 16px; }
.product-card ul { list-style: none; margin-bottom: 20px; }
.product-card ul li { font-size: 0.89rem; color: var(--ink-soft); padding: 4px 0 4px 24px; position: relative; }
.product-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 800; }
.product-card .btn { margin-top: auto; text-align: center; }

.badge {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(23, 122, 67, 0.16);
  margin: 0 6px 8px 0;
}
.badge.amber { background: #fdf3da; color: var(--accent-dark); border-color: rgba(214, 140, 14, 0.25); }

/* ---------- Spec tables ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
table.spec {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.93rem;
  min-width: 560px;
}
table.spec th, table.spec td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line); }
table.spec thead th {
  background: linear-gradient(160deg, var(--g800), var(--g900));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
table.spec tbody tr:last-child td { border-bottom: none; }
table.spec tbody tr:nth-child(even) { background: var(--bg-soft); }
table.spec tbody td:first-child { font-weight: 600; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(140deg, var(--lime), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.91rem; }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.03em; margin: 14px 0 16px; }
.split p { color: var(--ink-soft); margin-bottom: 14px; }
.split ul.checklist { list-style: none; margin: 20px 0; }
.split ul.checklist li { padding: 8px 0 8px 34px; position: relative; font-weight: 500; }
.split ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--lime), var(--brand));
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(90, 190, 58, 0.35);
}
.split .visual {
  position: relative;
  background:
    radial-gradient(260px 200px at 70% 20%, rgba(247, 168, 35, 0.22), transparent 70%),
    linear-gradient(150deg, var(--g800), var(--g950));
  border-radius: var(--radius);
  min-height: 360px;
  display: grid;
  place-items: center;
  font-size: 5.4rem;
  box-shadow: var(--shadow-lg);
  text-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.split .visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 0%, transparent 100%);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(90, 190, 58, 0.3), transparent 60%),
    radial-gradient(500px 280px at 92% 100%, rgba(247, 168, 35, 0.2), transparent 60%),
    linear-gradient(160deg, var(--g800), var(--g950));
  color: #fff;
  border-radius: 26px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 90% at 50% 50%, #000 0%, transparent 100%);
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.cta-band p { position: relative; color: rgba(255, 255, 255, 0.78); max-width: 640px; margin: 0 auto 32px; }
.cta-band .btn { position: relative; }
.cta-band .cta-row { position: relative; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 44px;
  max-width: 840px;
  margin: 0 auto;
}
.form-card h2 { letter-spacing: -0.02em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field label .req { color: #c0392b; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-soft);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(90, 190, 58, 0.16);
}
.form-field .hint { font-size: 0.78rem; color: var(--ink-soft); }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.checkbox-pill:hover { border-color: var(--lime); transform: translateY(-1px); }
.checkbox-pill input { accent-color: var(--brand); width: 17px; height: 17px; flex-shrink: 0; }
.checkbox-pill:has(input:checked) {
  background: var(--brand-light);
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(90, 190, 58, 0.12);
}

.form-error {
  display: none;
  background: #fdecea;
  border: 1.5px solid #c0392b;
  color: #922b21;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.form-success {
  display: none;
  background: linear-gradient(160deg, #eefcea, #fdf8ea);
  border: 1.5px solid var(--lime);
  color: var(--brand-dark);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  font-weight: 500;
  box-shadow: var(--shadow);
}
.form-success.show { display: block; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 10px; letter-spacing: -0.02em; }

/* ---------- Trust / certifications ---------- */
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trust-chip .dot { font-size: 1.25rem; }

/* ---------- Brand logos (Our Brands section) ---------- */
.brand-logo {
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.brand-logo img {
  max-height: 92px;
  max-width: 230px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(90, 190, 58, 0.08), transparent 60%),
    linear-gradient(170deg, var(--g900), var(--g950));
  color: #a9bfae;
  padding: 68px 0 26px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--accent));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #a9bfae; font-size: 0.93rem; }
.site-footer a:hover { color: var(--lime-bright); text-decoration: none; }
.site-footer .logo { color: #fff; }
.site-footer .logo .tagline { color: #8fb098; }
.site-footer .brand-blurb { font-size: 0.92rem; margin-top: 14px; max-width: 320px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: #7e9886;
}

/* ---------- Contact page ---------- */
.contact-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:first-of-type { padding-top: 0; }
.contact-line .ci {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--brand-light), #fdf3da);
  border: 1px solid rgba(23, 122, 67, 0.14);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: inset 0 1px 0 #fff;
}
.contact-line .ct {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 3px;
}
.contact-line a { font-weight: 600; }

.map-wrap {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 260px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }

/* ---------- Newsletter subscribe band ---------- */
.subscribe-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(500px 260px at 8% 0%, rgba(90, 190, 58, 0.28), transparent 60%),
    radial-gradient(460px 240px at 95% 100%, rgba(247, 168, 35, 0.18), transparent 60%),
    linear-gradient(160deg, var(--g800), var(--g950));
  color: #fff;
  border-radius: 24px;
  padding: 44px 48px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.subscribe-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(75% 90% at 50% 50%, #000 0%, transparent 100%);
  pointer-events: none;
}
.subscribe-band h2 { position: relative; font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.subscribe-band p { position: relative; color: rgba(255, 255, 255, 0.76); max-width: 460px; }
.subscribe-band form { position: relative; }
.subscribe-row { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe-row input {
  min-width: 240px;
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.subscribe-row input::placeholder { color: rgba(255, 255, 255, 0.6); }
.subscribe-row input:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 4px rgba(90, 190, 58, 0.22); }
.subscribe-status { margin-top: 10px; font-size: 0.85rem; font-weight: 600; min-height: 1.1em; }
.subscribe-status.ok { color: var(--lime-bright); }
.subscribe-status.err { color: #ffbcae; }

@media (max-width: 720px) {
  .subscribe-band { grid-template-columns: 1fr; padding: 34px 26px; }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(160deg, #31de70, #1fb857);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(31, 184, 87, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 184, 87, 0.55);
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-visual { min-height: 420px; margin-top: 10px; }
  .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 9px 0; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .steps, .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .section { padding: 60px 0; }
  .cta-band { padding: 44px 26px; }
  .hv-chip-5 { display: none; }
  .hero-visual { min-height: 380px; }
  .hv-card { width: min(300px, 92%); }
}
