/* Petisco Natural — shared LP styles
   Extracted from index.html inline <style> block. Single source of truth.
   Background-image url() paths are relative to THIS file (lp/assets/css/). */

:root {
  --c-orange: #E07B3D;
  --c-orange-deep: #C45F25;
  --c-teal: #1A5B4C;
  --c-teal-deep: #0F3D33;
  --c-magenta: #C8246B;
  --c-yellow: #F5C518;
  --c-navy: #0E2F5C;
  --c-sand: #F5EFE0;
  --c-cream: #FAF6EE;
  --c-ink: #1A1A1A;
  --c-ink-soft: #444;
  --c-line: #E5DFD0;
  --c-white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(14, 47, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 47, 92, 0.12);
  --shadow-lg: 0 16px 48px rgba(14, 47, 92, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
p { margin: 0 0 1em; }
a { color: var(--c-teal); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { padding-left: 0; list-style: none; }

/* ============ TOP BAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  color: var(--c-teal); font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-mark svg { width: 32px; height: 32px; }
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 540px) {
  .brand-logo { height: 32px; }
}
.lang-switch { display: flex; gap: 4px; background: var(--c-sand); padding: 4px; border-radius: 999px; }
.lang-btn {
  border: none; background: transparent; color: var(--c-ink-soft);
  padding: 6px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  transition: all 0.2s;
  line-height: 1;
}
.lang-btn .flag {
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.12));
}
.lang-btn .lcode { display: inline-block; }
.lang-btn.active { background: var(--c-teal); color: var(--c-white); }
.lang-btn:hover:not(.active) { background: rgba(26, 91, 76, 0.1); }
@media (max-width: 540px) {
  .lang-btn .lcode { display: none; }
  .lang-btn { padding: 6px 8px; }
  .lang-btn .flag { font-size: 1.2rem; }
}

/* ============ INLINE LEAD FORM (in CTA Final) ============ */
.lead-card {
  position: relative;
  max-width: 720px; margin: 0 auto;
  background: var(--c-cream);
  color: var(--c-ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 5vw, 48px);
  text-align: left;
}
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; gap: 20px; } }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 8px; color: var(--c-teal-deep);
}
.form-group input[type=text],
.form-group input[type=email] {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem;
  background: var(--c-white);
  color: var(--c-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(224, 123, 61, 0.15);
}
.radio-group, .check-group { display: grid; gap: 8px; }
@media (min-width: 640px) {
  .radio-group { grid-template-columns: 1fr 1fr; }
}
.radio-row, .check-row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  cursor: pointer;
  transition: all 0.18s;
  font-size: 0.95rem;
  color: var(--c-ink);
}
.radio-row:hover, .check-row:hover { border-color: var(--c-orange); background: #FFF9F2; }
.radio-row input, .check-row input { accent-color: var(--c-orange); width: 18px; height: 18px; flex-shrink: 0; }
.radio-row.selected, .check-row.selected { border-color: var(--c-teal); background: rgba(26, 91, 76, 0.06); }
.btn-primary {
  width: 100%; padding: 16px 24px;
  background: var(--c-orange); color: var(--c-white);
  border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.02em;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 18px rgba(224, 123, 61, 0.32);
}
.btn-primary:hover { background: var(--c-orange-deep); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(224, 123, 61, 0.4); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-foot { margin-top: 20px; font-size: 0.78rem; color: var(--c-ink-soft); text-align: center; }
.form-error { color: #B91C1C; font-size: 0.85rem; margin-top: 8px; min-height: 1.2em; }
.lead-success { text-align: center; padding: 16px 0; }
.lead-success .success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--c-orange); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(224, 123, 61, 0.4);
}
.lead-success h3 { color: var(--c-teal-deep); margin-bottom: 12px; }
.lead-success p { color: var(--c-ink-soft); max-width: 44ch; margin: 0 auto; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--c-white);
  background: var(--c-teal-deep);
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('../lifestyle/dog-cat-beach.png');
  background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.hero-inner {
  position: relative;
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(80px, 14vw, 160px) var(--gutter);
  text-align: center;
}
.hero-logo {
  max-width: 220px;
  width: 50%;
  margin: 0 auto 24px;
  display: block;
  opacity: 0.96;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.3));
}
@media (max-width: 540px) {
  .hero-logo { max-width: 180px; }
}
.hero-eyebrow {
  display: inline-block;
  color: var(--c-yellow);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1.5px solid var(--c-yellow);
  border-radius: 999px;
}
.hero h1 { color: var(--c-white); margin-bottom: 24px; max-width: 16ch; margin-left: auto; margin-right: auto; }
.hero p.sub { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 60ch; margin: 0 auto 36px; color: rgba(255,255,255,0.92); }
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 36px;
}
.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-white);
}
.hero-cta { margin-top: 40px; }
.btn-cta {
  display: inline-block;
  background: var(--c-orange); color: var(--c-white);
  padding: 16px 36px;
  border: none; border-radius: 999px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(224, 123, 61, 0.4);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(224, 123, 61, 0.5); }
.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-cue::after {
  content: ''; display: block; width: 1px; height: 32px;
  background: rgba(255,255,255,0.5); margin: 8px auto 0;
}

/* ============ SECTIONS ============ */
section { padding: clamp(60px, 9vw, 120px) var(--gutter); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  color: var(--c-orange); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head { max-width: 50ch; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head h2 { color: var(--c-teal-deep); }
.section-head p { font-size: 1.1rem; color: var(--c-ink-soft); }

/* DIFFERENTIATION */
.diff { background: var(--c-white); position: relative; overflow: hidden; }
.floating-stamp {
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  right: clamp(24px, 5vw, 80px);
  height: clamp(120px, 13vw, 200px);
  width: auto;
  z-index: 2;
  transform: rotate(8deg);
  opacity: 0.95;
  pointer-events: none;
}
@media (max-width: 720px) {
  .floating-stamp { display: none; }
}
.diff-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.diff-card {
  padding: 32px 28px;
  background: var(--c-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diff-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--c-orange); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; margin-bottom: 18px;
}
.diff-card h3 { color: var(--c-teal-deep); font-size: 1.15rem; margin-bottom: 10px; }
.diff-card p { color: var(--c-ink-soft); font-size: 0.95rem; margin: 0; }

/* BENEFITS */
.benefits { background: var(--c-sand); }
.benefits-layout {
  display: grid; gap: clamp(36px, 6vw, 72px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) { .benefits-layout { grid-template-columns: 1fr 1fr; } }
.benefits-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-image: url('../lifestyle/dog-cat-sunset.png');
}
.benefits ul { display: grid; gap: 18px; }
.benefits li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1.05rem;
}
.benefits li::before {
  content: ''; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 60% 60%; background-position: center; background-repeat: no-repeat;
  margin-top: 3px;
}
.impact-quote {
  margin-top: 36px; padding: 24px 28px;
  border-left: 4px solid var(--c-orange);
  background: var(--c-white);
  font-style: italic; color: var(--c-teal-deep);
  font-size: 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* POSITIONING (anti-commodity) */
.positioning {
  background: var(--c-teal-deep); color: var(--c-white);
  text-align: center;
}
.positioning .section-head h2 { color: var(--c-white); }
.positioning blockquote {
  max-width: 60ch; margin: 0 auto;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.4;
  color: rgba(255,255,255,0.94);
}
.positioning .anchor-quote {
  margin-top: 48px;
  padding: 28px;
  border: 2px solid var(--c-yellow);
  border-radius: var(--radius-md);
  color: var(--c-yellow);
  font-weight: 600;
  max-width: 50ch; margin-left: auto; margin-right: auto;
  font-style: italic;
}

/* ORIGIN */
.origin { background: var(--c-cream); position: relative; overflow: hidden; }
.origin-layout {
  display: grid; gap: clamp(36px, 6vw, 72px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) { .origin-layout { grid-template-columns: 1.1fr 1fr; } }
.origin-img {
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 1/1;
  box-shadow: var(--shadow-lg);
  background-size: cover; background-position: center;
  background-image: url('../lifestyle/caicara-fishermen-real.png');
}
.origin-trust {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.origin-trust img {
  height: 140px; width: auto;
}
.origin h2 { color: var(--c-teal-deep); }
.origin-list { display: grid; gap: 14px; margin: 24px 0 32px; }
.origin-list li { padding-left: 28px; position: relative; }
.origin-list li::before {
  content: '✦';
  position: absolute; left: 0; color: var(--c-orange);
  font-weight: 700;
}
.origin-signature {
  display: inline-block;
  padding: 14px 28px;
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; letter-spacing: 0.06em;
  font-size: 1.1rem;
}
.caicara-badge {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; padding: 18px 22px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-orange);
  border-radius: var(--radius-md);
  max-width: 480px;
}
.caicara-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-orange); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700;
}
.caicara-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; color: var(--c-teal-deep);
  font-size: 1rem; margin-bottom: 2px;
}
.caicara-sub { color: var(--c-ink-soft); font-size: 0.85rem; line-height: 1.4; }

/* COMMERCIAL */
.commercial { background: var(--c-white); }
.commercial-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.commercial-card {
  padding: 28px 24px;
  background: var(--c-sand);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--c-orange);
}
.commercial-card h3 { color: var(--c-teal-deep); font-size: 1.05rem; margin-bottom: 8px; }
.commercial-card p { color: var(--c-ink-soft); font-size: 0.95rem; margin: 0; }
.insight-banner {
  margin-top: 48px;
  padding: 28px clamp(24px, 4vw, 48px);
  background: var(--c-teal-deep);
  color: var(--c-white);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.15rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
}

/* PRODUCT (family + specs + nutritional) */
.product { background: var(--c-cream); }
.line-family {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}
@media (min-width: 720px) { .line-family { grid-template-columns: repeat(3, 1fr); } }
.line-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.line-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.line-card img {
  height: 280px; width: auto; max-width: 100%;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(14, 47, 92, 0.18));
}
.line-meta { padding-top: 4px; }
.line-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.4rem;
  color: var(--c-teal-deep);
  margin-bottom: 6px;
}
.line-tag { color: var(--c-ink-soft); font-size: 0.92rem; }
.line-flag {
  display: inline-block; margin-top: 12px;
  padding: 4px 12px; border-radius: 999px;
  background: var(--c-orange); color: var(--c-white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.line-card.line-dogs { border-top: 4px solid var(--c-orange); }
.line-card.line-cats { border-top: 4px solid var(--c-magenta); }
.line-card.line-turtles { border-top: 4px solid var(--c-teal); }

/* line-card as anchor (product page links) */
a.line-card { text-decoration: none; color: inherit; display: block; }
a.line-card:focus-visible { outline: 3px solid var(--c-orange); outline-offset: 4px; }
a.line-card .line-cta {
  display: inline-block; margin-top: 14px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-orange);
}
a.line-card:hover .line-cta { color: var(--c-orange-deep); }

.serving-claim {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-yellow) 130%);
  color: var(--c-white);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  margin-bottom: 56px;
  box-shadow: var(--shadow-md);
}
.serving-claim .serving-icon {
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.9;
  letter-spacing: 4px;
}
.serving-claim .serving-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  margin-bottom: 4px;
  color: var(--c-white);
}
.serving-claim .serving-p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 540px) {
  .serving-claim { flex-direction: column; text-align: center; }
}

.product-data {
  display: grid; gap: clamp(36px, 5vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .product-data { grid-template-columns: 1fr 1fr; } }
.data-block h3 {
  font-size: 1.1rem; color: var(--c-teal-deep);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--c-orange);
}
.data-block .dose-h {
  font-size: 0.92rem; color: var(--c-orange);
  margin: 24px 0 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.product-specs { display: grid; gap: 0; }
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--c-line);
  gap: 16px;
}
.spec-row .k { font-weight: 600; color: var(--c-teal-deep); font-size: 0.92rem; }
.spec-row .v { color: var(--c-ink-soft); text-align: right; font-size: 0.92rem; }

/* TURTLE LAUNCH */
.turtle-launch {
  background: var(--c-sand);
  position: relative;
  overflow: hidden;
}
.turtle-launch .section-eyebrow { color: var(--c-magenta); }
.turtle-launch h2 { color: var(--c-teal-deep); }
.turtle-launch .turtle-launch-layout {
  display: grid; gap: clamp(36px, 6vw, 72px);
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 860px) {
  .turtle-launch .turtle-launch-layout { grid-template-columns: 1.05fr 1fr; }
}
.turtle-launch-img {
  background-image: url('../packaging/turtle-pack-flat.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  padding: 24px;
}
.turtle-launch-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--c-orange-deep);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.turtle-launch-list { display: grid; gap: 14px; margin: 0 0 28px; }
.turtle-launch-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1rem;
  color: var(--c-ink);
}
.turtle-launch-list li::before {
  content: ''; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-magenta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 60% 60%; background-position: center; background-repeat: no-repeat;
  margin-top: 3px;
}
.turtle-specs {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding: 18px 22px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  margin-top: 8px;
}
.turtle-specs .k {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 2px;
}
.turtle-specs .v {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--c-teal-deep);
}

/* ECOSYSTEM */
.ecosystem {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-magenta) 130%);
  color: var(--c-white);
}
.ecosystem h2 { color: var(--c-white); }
.ecosystem p { color: rgba(255,255,255,0.94); }
.ecosystem-layout {
  display: grid; gap: clamp(36px, 6vw, 72px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .ecosystem-layout { grid-template-columns: 0.9fr 1.1fr; }
}
.ecosystem-img {
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 1/1;
  box-shadow: var(--shadow-lg);
  background-size: cover; background-position: center;
  background-image: url('../lifestyle/our-story-begins.png');
}
.ecosystem-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 28px;
}
.eco-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* PROOF */
.proof { background: var(--c-white); text-align: center; }
.proof-badges {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(20px, 4vw, 48px);
  margin-bottom: 56px;
  padding: 40px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.proof-badges img {
  height: clamp(110px, 16vw, 180px);
  width: auto;
  transition: transform 0.25s;
  object-fit: contain;
}
.proof-badges img:hover { transform: scale(1.04); }
@media (max-width: 540px) {
  .proof-badges img { height: 100px; }
  .proof-badges { gap: 16px; padding: 28px 0; }
}
.proof-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  margin-top: 32px;
}
.proof-pill {
  padding: 16px 28px;
  border: 2px solid var(--c-teal);
  color: var(--c-teal-deep);
  border-radius: 999px;
  font-weight: 600;
  background: var(--c-cream);
}

/* PRICE DEFENSE */
.price-defense { background: var(--c-sand); text-align: center; }
.price-defense blockquote {
  max-width: 50ch; margin: 0 auto;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.3;
  color: var(--c-teal-deep);
  margin-bottom: 24px;
}
.price-defense .author { color: var(--c-ink-soft); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* FAQ */
.faq { background: var(--c-white); }
.faq-list {
  max-width: 880px; margin: 0 auto;
  display: grid; gap: 12px;
}
.faq-item {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--c-orange);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; font-size: 1.05rem;
  color: var(--c-teal-deep);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-orange); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 400;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 28px 24px;
  color: var(--c-ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}
/* CTA FINAL */
.cta-final {
  background: var(--c-teal-deep);
  color: var(--c-white);
  text-align: center;
}
.cta-final h2 { color: var(--c-white); }
.cta-final .section-head p { color: rgba(255, 255, 255, 0.92); }
.cta-final .contact-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
  margin-top: 48px;
  font-size: 1.05rem;
}
.cta-final .lead-card { margin-top: 16px; }
.cta-final .contact-row a { color: var(--c-yellow); text-decoration: none; font-weight: 600; }
.cta-final .contact-row a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  background: var(--c-cream);
  padding: 56px var(--gutter) 40px;
  border-top: 1px solid var(--c-line);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.footer-trust { font-size: 0.78rem; color: var(--c-ink-soft); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(20px, 4vw, 56px);
  max-width: 900px; margin: 0 auto 40px;
}
.footer-logos img { max-height: 160px; width: auto; opacity: 0.95; }
.footer-meta {
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
  color: var(--c-ink-soft);
  font-size: 0.85rem;
}
.footer-meta a { color: var(--c-teal); }

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
