:root {
  --bg: #f5f2ec;
  --bg-warm: #ebe5d8;
  --surface: #ffffff;
  --surface-soft: #faf8f4;
  --ink: #0d1f17;
  --ink-soft: #1a3326;
  --ink-mid: #4a5d52;
  --ink-muted: #7a8a82;
  --line: #d8d2c4;
  --line-soft: #e6e1d4;
  --green: #1f7a4d;
  --green-bright: #2db573;
  --green-deep: #134d2f;
  --green-tint: #e8f3ee;
  --shadow-sm: 0 1px 2px rgba(13,31,23,0.04), 0 4px 12px rgba(13,31,23,0.05);
  --shadow-md: 0 1px 3px rgba(13,31,23,0.06), 0 12px 32px -8px rgba(13,31,23,0.12);
  --shadow-green: 0 0 0 1px rgba(31,122,77,0.15), 0 8px 24px -8px rgba(31,122,77,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: var(--surface); }

/* ANNOUNCE */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-size: 12.5px;
  text-align: center;
  padding: 11px 16px;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.announce strong { color: var(--green-bright); font-weight: 600; }
.announce a { border-bottom: 1px solid var(--green-bright); padding-bottom: 1px; }

/* HEADER */
.header {
  background: rgba(245,242,236,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--ink);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: var(--green-bright);
  border-radius: 50%;
  top: 6px; right: 6px;
}
.brand-mark::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--bg);
  border-radius: 50%;
  bottom: 8px; left: 9px;
}
.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.brand-tag {
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

nav.nav { display: flex; gap: 32px; flex: 1; justify-content: center; }
nav.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
  letter-spacing: -0.005em;
}
nav.nav a:hover { color: var(--green); }
nav.nav a.featured { color: var(--green); }
nav.nav a.featured::before {
  content: '';
  position: absolute;
  left: -14px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green-bright);
}

.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.phone-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.phone-tag svg { width: 14px; height: 14px; color: var(--green); }
.cart-btn {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.cart-btn:hover { background: var(--green); transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,181,115,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
  background: var(--green-tint);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,122,77,0.15);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 32px;
  animation: fadeUp .7s .1s ease both;
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-mid);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeUp .7s .2s ease both;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }
.btn-primary, .btn-secondary {
  font-family: inherit;
  font-weight: 600;
  font-size: 14.5px;
  padding: 17px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  animation: fadeUp .8s .2s ease both;
}
.hero-visual-frame {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-orb {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #4ad991 0%, var(--green) 50%, var(--green-deep) 100%);
  box-shadow:
    0 20px 60px rgba(31,122,77,0.4),
    inset -20px -30px 60px rgba(13,77,47,0.4),
    inset 10px 10px 30px rgba(255,255,255,0.3);
  animation: orbFloat 6s ease-in-out infinite;
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.4) 0%, transparent 35%);
}
@keyframes orbFloat {
  0%,100% { transform: translate(-50%, -55%); }
  50% { transform: translate(-50%, -50%); }
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  animation: particleFloat 4s ease-in-out infinite;
}
.hero-particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 25%; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 4px; height: 4px; top: 35%; left: 75%; animation-delay: 1s; background: var(--green-bright); }
.hero-particle:nth-child(3) { width: 6px; height: 6px; top: 70%; left: 30%; animation-delay: 2s; opacity: 0.6; }
.hero-particle:nth-child(4) { width: 5px; height: 5px; top: 60%; left: 80%; animation-delay: 1.5s; }
@keyframes particleFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}
.hero-stat-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}
.hero-stat-num {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.04em;
}
.hero-stat-num small { font-size: 18px; color: var(--ink-mid); margin-left: 2px; }
.hero-stat-text strong { display: block; font-size: 13px; color: var(--ink); margin-bottom: 3px; font-weight: 600; }
.hero-stat-text span { font-size: 11.5px; color: var(--ink-muted); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* TRUST */
.trust-strip {
  background: var(--surface);
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-text strong { display: block; font-size: 13.5px; margin-bottom: 2px; font-weight: 600; color: var(--ink); }
.trust-text span { font-size: 11.5px; color: var(--ink-muted); }

/* STATS */
.stats-section { padding: 130px 0; }
.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.stats-text h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
}
.stats-text h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.stats-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.stats-text p strong { color: var(--ink); font-weight: 600; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--green-bright);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.stat-card:nth-child(2) { transform: translateY(24px); }
.stat-card:nth-child(2):hover { transform: translateY(20px); }
.stat-card:nth-child(3) { transform: translateY(-12px); }
.stat-card:nth-child(3):hover { transform: translateY(-16px); }
.stat-card:nth-child(4) { transform: translateY(12px); }
.stat-card:nth-child(4):hover { transform: translateY(8px); }

.stat-num {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}
.stat-unit { font-size: 28px; margin-left: 4px; color: var(--ink-mid); }
.stat-label {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.5;
  font-weight: 400;
}
.stat-label strong { color: var(--ink); font-weight: 600; }

/* FINDER BANNER */
.finder-banner {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.finder-banner::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,181,115,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.finder-banner::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,181,115,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.finder-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.finder-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 28px;
  background: rgba(45,181,115,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(45,181,115,0.25);
}
.finder-eyebrow .pulse {
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 12px var(--green-bright);
}
.finder-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--bg);
}
.finder-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-bright);
}
.finder-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,242,236,0.75);
  margin-bottom: 36px;
  max-width: 540px;
}
.finder-cta {
  background: var(--green-bright);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  letter-spacing: -0.005em;
}
.finder-cta:hover { background: var(--bg); transform: translateY(-2px); }

.finder-mock {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,242,236,0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
}
.finder-mock-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.finder-mock-progress span {
  flex: 1;
  height: 3px;
  background: rgba(245,242,236,0.15);
  border-radius: 2px;
}
.finder-mock-progress span:nth-child(-n+2) { background: var(--green-bright); }
.finder-mock h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.finder-mock-options { display: flex; flex-direction: column; gap: 8px; }
.finder-mock-opt {
  background: rgba(245,242,236,0.04);
  border: 1px solid rgba(245,242,236,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: rgba(245,242,236,0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}
.finder-mock-opt:hover { border-color: rgba(245,242,236,0.2); }
.finder-mock-opt.selected {
  border-color: var(--green-bright);
  background: rgba(45,181,115,0.12);
  color: var(--bg);
  font-weight: 500;
}
.finder-mock-opt span:last-child { color: var(--green-bright); }

/* SECTION */
.section { padding: 120px 0; }
.section-head {
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.section-head-text { max-width: 680px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  background: var(--green-tint);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,122,77,0.15);
}
.section-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  flex-shrink: 0;
}
.section-link:hover { color: var(--ink); border-color: var(--ink); }

/* PRODUCTS */
.products-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-visual {
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.product-bottle {
  position: relative;
  width: 70%; height: 80%;
  background: linear-gradient(160deg, var(--surface) 0%, #f0ebe0 100%);
  border-radius: 16px;
  box-shadow:
    inset -8px -12px 30px rgba(13,31,23,0.04),
    inset 8px 4px 20px rgba(255,255,255,0.6),
    0 12px 32px rgba(13,31,23,0.08);
  display: flex;
  flex-direction: column;
  padding: 18px 16px;
  z-index: 1;
}
.product-bottle::before {
  content: '';
  position: absolute;
  top: 14px; left: 16px; right: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}
.product-bottle-cat {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
  margin-top: 22px;
}
.product-bottle-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1;
}
.product-bottle-tag {
  font-size: 10px;
  color: var(--ink-muted);
  align-self: flex-end;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  margin-top: auto;
}

.product-badge-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green);
  color: var(--surface);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

.product-info {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-cat {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.product-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.product-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.product-desc strong { color: var(--ink); font-weight: 600; }
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.product-price {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-price .old {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--ink-muted);
  font-weight: 400;
  margin-right: 8px;
  font-family: 'DM Sans', sans-serif;
}
.product-add {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.005em;
}
.product-add:hover { background: var(--green); }

/* WHY */
.why-section {
  background: var(--surface);
  padding: 120px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.why-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 28px;
  display: block;
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--green-tint);
  border: 1px solid rgba(31,122,77,0.15);
  margin-bottom: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon-inner { width: 28px; height: 28px; position: relative; z-index: 1; }
.why-icon-1 .why-icon-inner {
  border: 2px solid var(--green);
  border-radius: 50%;
}
.why-icon-1 .why-icon-inner::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--green-bright);
  border-radius: 50%;
  top: -2px; right: -2px;
}
.why-icon-2 .why-icon-inner {
  border: 2px solid var(--green);
  border-radius: 4px;
  transform: rotate(45deg);
}
.why-icon-2 .why-icon-inner::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--green-bright);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.why-icon-3 .why-icon-inner {
  width: 30px; height: 24px;
  background: linear-gradient(to bottom, var(--green-bright) 0%, var(--green) 100%);
  border-radius: 12px;
}
.why-icon-3 .why-icon-inner::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 2px solid var(--green-tint);
  border-radius: 50%;
  background: var(--surface);
  top: 16px; left: 50%;
  transform: translateX(-50%);
}

.why-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.why-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* TESTIMONIALS */
.testimonials { padding: 120px 0; }
.testimonials-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.testimonial:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial:nth-child(2) {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.testimonial:nth-child(2) .testimonial-text { color: var(--bg); }
.testimonial:nth-child(2) .testimonial-quote-mark { color: var(--green-bright); }
.testimonial:nth-child(2) .testimonial-author { color: var(--bg); }
.testimonial:nth-child(2) .testimonial-meta { color: rgba(245,242,236,0.6); }
.testimonial:nth-child(2) .testimonial-bottom { border-top-color: rgba(245,242,236,0.15); }
.testimonial:nth-child(2) .testimonial-avatar { background: var(--green-bright); color: var(--ink); }
.testimonial:nth-child(2) .testimonial-text strong { color: var(--green-bright); }

.testimonial-quote-mark {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 80px;
  line-height: 0.8;
  color: var(--green);
  margin-bottom: 8px;
  height: 40px;
  letter-spacing: -0.04em;
}
.testimonial-text {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  flex: 1;
  color: var(--ink);
}
.testimonial-text strong { color: var(--green); font-weight: 400; font-style: italic; }
.testimonial-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--surface);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.testimonial-author {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.testimonial-meta {
  font-size: 11.5px;
  color: var(--ink-muted);
}

/* B2B */
.b2b-strip {
  background: var(--bg-warm);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.b2b-strip-eyebrow {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  background: var(--green-tint);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,122,77,0.15);
}
.b2b-strip h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.b2b-strip h3 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.b2b-logos {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  align-items: center;
}
.b2b-logo {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
  padding: 8px 0;
  transition: color .2s;
}
.b2b-logo:hover { color: var(--ink); }
.b2b-logo.featured {
  color: var(--ink);
  border-bottom: 1px solid var(--green);
  padding-bottom: 6px;
}

/* CATEGORIES */
.categories { padding: 120px 0; }
.categories-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.cat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--green-bright);
  transition: width .3s;
}
.cat-tile:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cat-tile:hover::before { width: 100%; }
.cat-tile-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--green);
}
.cat-tile-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.cat-tile-count {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-tile:hover .cat-tile-count { color: var(--green); }

/* FOOTER */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 0 40px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .brand-name { color: var(--bg); }
.footer-brand .brand-tag { color: rgba(245,242,236,0.5); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,242,236,0.7);
  margin-top: 24px;
  max-width: 380px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--bg);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li {
  font-size: 13.5px;
  color: rgba(245,242,236,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom {
  border-top: 1px solid rgba(245,242,236,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245,242,236,0.4);
}


/* RESPONSIVE */
@media (max-width: 960px) {
  nav.nav { display: none; }
  .header-actions .phone-tag { display: none; }
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { aspect-ratio: 16/12; max-height: 420px; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats-section { padding: 70px 0; }
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
  .finder-inner { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 70px 0; }
  .section-head { flex-direction: column; align-items: start; margin-bottom: 36px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-section, .testimonials, .categories { padding: 70px 0; }
  .b2b-logos { gap: 32px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-card { transform: none !important; }
  .finder-banner { padding: 70px 0; }
}
@media (max-width: 560px) {
  .header-inner { padding: 14px 18px; }
  .brand-tag { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .demo-banner-fixed { left: 14px; right: 14px; bottom: 14px; }
  .hero-title { font-size: 44px; }
  .stats-text h2, .section-title, .finder-title { font-size: 36px; }
}
