/* ============================================
   ClearStone Ingredients — Clean & Clear Design System
   ============================================ */

:root {
  /* Colors */
  --green-900: #1A2C3F;
  --green-700: #2E5C8A;
  --green-600: #4682B4;
  --green-500: #6699CC;
  --green-100: #E5EEF6;
  --green-50:  #F3F7FB;

  --blue-700: #2E5C8A;
  --blue-500: #4A7BA7;
  --blue-100: #E5EEF6;

  --ink-900: #0E1C2E;
  --ink-700: #1F2933;
  --ink-500: #4A5563;
  --ink-400: #6B7480;
  --ink-300: #9AA5AD;

  --bg:        #FFFFFF;
  --bg-soft:   #F6F9FC;
  --bg-card:   #FFFFFF;
  --border:    #E2E8EF;
  --border-soft: #ECF0F5;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14, 28, 46, 0.05), 0 1px 3px rgba(14, 28, 46, 0.05);
  --shadow:    0 4px 12px rgba(14, 28, 46, 0.07), 0 2px 4px rgba(14, 28, 46, 0.05);
  --shadow-lg: 0 12px 32px rgba(14, 28, 46, 0.09), 0 4px 12px rgba(14, 28, 46, 0.06);

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

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--green-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

ul { padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

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

section { padding: clamp(70px, 9vw, 130px) 0; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(70, 130, 180, 0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink-500);
  font-size: 0.94rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover { background: var(--green-50); color: var(--green-700); }
.nav-links a.active { color: var(--green-700); background: var(--green-100); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-600);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  transition: all 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(70, 130, 180, 0.18);
}
.nav-cta:hover { background: var(--green-700) !important; transform: translateY(-1px); }

.mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }
.mobile-toggle svg { width: 26px; height: 26px; stroke: var(--ink-700); }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .nav-mobile-open .nav-links,
  .nav-mobile-open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-mobile-open .nav-cta { margin-top: 8px; align-self: stretch; text-align: center; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(229, 238, 246, 0.7), transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(229, 238, 246, 0.5), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F9FC 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}
.hero h1 { margin-bottom: 22px; }
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-500);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 28, 46, 0) 50%, rgba(14, 28, 46, 0.18));
}

.hero-badge {
  position: absolute;
  background: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  color: var(--green-700);
}
.hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge-text { line-height: 1.3; }
.hero-badge-text strong { display: block; color: var(--ink-900); font-size: 0.95rem; font-weight: 600; }
.hero-badge-text small { color: var(--ink-400); font-size: 0.82rem; }

.hero-badge--top { top: 30px; left: -30px; }
.hero-badge--bot { bottom: 30px; right: -30px; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-image { aspect-ratio: 4/3; max-width: 560px; }
  .hero-badge--top { left: 16px; top: 16px; }
  .hero-badge--bot { right: 16px; bottom: 16px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
.btn-primary {
  background: var(--green-600);
  color: white;
  box-shadow: 0 4px 14px rgba(70, 130, 180, 0.25);
}
.btn-primary:hover {
  background: var(--green-700);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(70, 130, 180, 0.32);
}
.btn-ghost {
  background: white;
  color: var(--ink-700);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.94rem;
}
.btn-link svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.btn-link:hover svg { transform: translateX(3px); }

/* ============================================
   SECTIONS — Eyebrow + Title
   ============================================ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(50px, 6vw, 80px); }
.section-head--left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 1.08rem;
  color: var(--ink-500);
  margin-top: 14px;
}

/* ============================================
   FEATURE CARDS (Why Choose)
   ============================================ */
.features { background: var(--bg-soft); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { color: var(--ink-500); font-size: 0.95rem; margin: 0; line-height: 1.55; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================
   THREE-COL CAPABILITIES
   ============================================ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cap-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green-100); }
.cap-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--green-50); }
.cap-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.cap-card:hover .cap-card-img img { transform: scale(1.04); }
.cap-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.cap-card h3 { margin-bottom: 12px; }
.cap-card p { color: var(--ink-500); font-size: 0.97rem; flex: 1; }
.cap-card .btn-link { margin-top: 18px; }

@media (max-width: 900px) { .cap-grid { grid-template-columns: 1fr; } }

/* ============================================
   SPLIT (Image + Text)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { margin-bottom: 18px; }
.split-body p { color: var(--ink-500); font-size: 1.05rem; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse > :first-child { order: initial; }
}

/* ============================================
   IMAGE GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(50px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}
.cta-band h2 { color: white; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 540px; margin: 0 auto 30px; }
.cta-band .btn-primary { background: white; color: var(--green-700); }
.cta-band .btn-primary:hover { background: var(--green-50); color: var(--green-900); }

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
  background: linear-gradient(180deg, var(--green-50) 0%, var(--bg) 100%);
  padding: clamp(70px, 9vw, 110px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
}
.page-header .eyebrow { color: var(--green-700); }
.page-header h1 { margin-bottom: 18px; }
.page-header p {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================
   VALUE GRID (About: 4 core values)
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.value-card:hover { background: white; box-shadow: var(--shadow); }
.value-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid var(--green-100);
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--ink-500); font-size: 0.97rem; margin: 0; }
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRODUCT CATEGORY CARDS
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-grid .cat-card:nth-child(4),
.cat-grid .cat-card:nth-child(5) {
  /* Last row: 2 cards centered visually */
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/3;
  background: var(--green-700);
  display: block;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.6;
  transition: all 0.5s var(--ease);
}
.cat-card:hover img { opacity: 0.5; transform: scale(1.04); }
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 28, 46, 0.85) 100%);
}
.cat-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px;
  color: white;
  z-index: 1;
}
.cat-card-body h3 { color: white; margin-bottom: 6px; }
.cat-card-body p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }
.cat-card-body .arrow {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.94rem;
  color: white;
}
@media (max-width: 760px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRODUCT TILE GRID
   ============================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prod-tile {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.prod-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-100); }
.prod-tile-img {
  aspect-ratio: 1;
  background: var(--green-50);
  overflow: hidden;
}
.prod-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-tile-body { padding: 18px 22px 22px; }
.prod-tile-body h4 { margin: 0 0 4px; color: var(--ink-900); font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; }
.prod-tile-body small { color: var(--ink-400); font-size: 0.84rem; }
@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--green-100); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-700);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body { padding: 0 26px 24px; color: var(--ink-500); font-size: 0.98rem; line-height: 1.65; }
.faq-item-body ul { margin: 10px 0 0; }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cert {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.2s var(--ease);
}
.cert:hover { border-color: var(--green-200, var(--green-100)); transform: translateY(-2px); }
.cert .cert-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-700);
  margin-bottom: 6px;
}
.cert small { color: var(--ink-400); font-size: 0.78rem; line-height: 1.35; display: block; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink-700);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(70, 130, 180, 0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--green-700);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 100%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.contact-info-card h3 { color: white; margin-bottom: 6px; }
.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  z-index: 1;
}
.contact-info-row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; opacity: 0.85; }
.contact-info-row a { color: rgba(255,255,255,0.95); }
.contact-info-row a:hover { color: white; }
.contact-info-row strong { display: block; font-size: 0.85rem; opacity: 0.7; font-weight: 500; margin-bottom: 2px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0E1C2E;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h4 { color: white; font-size: 1.15rem; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.94rem; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  color: white;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.94rem; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.86rem;
}
.social { display: flex; gap: 10px; }
.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s var(--ease);
}
.social a:hover { border-color: var(--green-500); color: white; background: var(--green-700); }
.social svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================
   UTILITY / MISC
   ============================================ */
.text-center { text-align: center; }
.lead-text { font-size: 1.12rem; color: var(--ink-500); line-height: 1.7; }
.stat-row { display: flex; gap: 50px; flex-wrap: wrap; margin-top: 36px; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 4px;
}
.stat small { color: var(--ink-400); font-size: 0.88rem; }

.check-list { list-style: none; padding: 0; margin: 18px 0; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-500);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--green-100);
  border-radius: 50%;
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 10px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  transform: rotate(-45deg);
}

.divider-soft { height: 1px; background: var(--border-soft); margin: 50px 0; }


/* ============================================
   PRODUCT LIST (no images, clean 2-col layout)
   ============================================ */
.prod-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-soft);
  margin-top: 20px;
}
.prod-list-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.2s var(--ease);
}
.prod-list-item:nth-child(odd) {
  border-right: 1px solid var(--border-soft);
}
.prod-list-item:hover { background: var(--green-50); }
.prod-list-item h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-900);
  flex: 0 0 auto;
}
.prod-list-item small {
  color: var(--ink-400);
  font-size: 0.88rem;
  text-align: right;
}
@media (max-width: 760px) {
  .prod-list { grid-template-columns: 1fr; }
  .prod-list-item:nth-child(odd) { border-right: 0; }
}
