:root {
  --obsidian: #111715;
  --porcelain: #f7f5ef;
  --mineral: #0b6f63;
  --champagne: #c6a15b;
  --graphite: #59615e;
  --bone: #ddd8cc;
  --white: #ffffff;
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --ui: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 6px;
  --shadow: 0 18px 48px rgba(17, 23, 21, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--obsidian);
  font-family: var(--ui);
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 216, 204, 0.75);
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: 208px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--obsidian);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--obsidian);
  color: var(--porcelain);
}

.button.primary:hover {
  background: #050706;
}

.button.secondary {
  border-color: var(--bone);
  background: rgba(255, 255, 255, 0.55);
  color: var(--obsidian);
}

.button.whatsapp {
  background: var(--mineral);
  color: var(--white);
}

.hero {
  padding: 74px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mineral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 8.6vw, 106px);
  line-height: 0.91;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--graphite);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  border: 1px solid var(--bone);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
}

.program-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--obsidian);
  color: var(--porcelain);
  box-shadow: var(--shadow);
}

.visual-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
}

.visual-top img {
  width: 76px;
  height: 76px;
}

.visual-kicker {
  color: rgba(247, 245, 239, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.visual-body {
  padding: 22px 30px 34px;
}

.visual-body h2 {
  max-width: 360px;
  font-size: 46px;
  line-height: 1;
}

.visual-body p {
  margin: 18px 0 0;
  color: rgba(247, 245, 239, 0.72);
  line-height: 1.7;
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(247, 245, 239, 0.16);
}

.metric {
  padding: 20px;
  border-right: 1px solid rgba(247, 245, 239, 0.16);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--champagne);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: rgba(247, 245, 239, 0.68);
  font-size: 12px;
  font-weight: 800;
}

section {
  padding: 74px 0;
}

.problem-section {
  padding-top: 34px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 620px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 0.98;
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.65;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  min-height: 300px;
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
}

.reason-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--obsidian);
  color: var(--champagne);
  font-family: var(--display);
  font-weight: 600;
}

.reason-card h3 {
  margin-top: 36px;
  font-family: var(--ui);
  font-size: 24px;
  font-weight: 900;
}

.reason-card p {
  color: var(--graphite);
  line-height: 1.7;
}

.belief-panel {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 42px;
  align-items: end;
  border-top: 1px solid var(--obsidian);
  border-bottom: 1px solid var(--obsidian);
  padding: 48px 0;
}

.belief-panel h2 {
  max-width: 720px;
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: 0.94;
}

.belief-panel p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.75;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--bone);
  background: var(--white);
}

.offer-item {
  min-height: 180px;
  padding: 26px;
  border-right: 1px solid var(--bone);
}

.offer-item:last-child {
  border-right: 0;
}

.offer-item .number {
  display: block;
  margin-bottom: 28px;
  color: var(--champagne);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
}

.offer-item h3 {
  font-family: var(--ui);
  font-size: 18px;
  font-weight: 900;
}

.offer-item p {
  margin: 10px 0 0;
  color: var(--graphite);
  line-height: 1.6;
}

.simple-band {
  background: var(--obsidian);
  color: var(--porcelain);
}

.simple-band .section-head p {
  color: rgba(247, 245, 239, 0.68);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  min-height: 240px;
  border: 1px solid rgba(247, 245, 239, 0.16);
  border-radius: var(--radius);
  padding: 26px;
}

.step small {
  color: var(--champagne);
  font-weight: 900;
}

.step h3 {
  margin-top: 22px;
  font-family: var(--ui);
  font-size: 22px;
  font-weight: 900;
}

.step p {
  color: rgba(247, 245, 239, 0.72);
  line-height: 1.7;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.choice-card.dark {
  background: var(--obsidian);
  color: var(--porcelain);
  border-color: transparent;
}

.choice-card h3 {
  font-size: 50px;
  line-height: 1;
  padding: 0 28px;
  margin-top: 24px;
}

.choice-card p {
  max-width: 430px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.65;
  padding: 0 28px;
  margin-top: 14px;
}

.choice-card.dark p {
  color: rgba(247, 245, 239, 0.7);
}

.taste-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--mineral);
  font-size: 13px;
  font-weight: 900;
}

.choice-card.dark .taste-note {
  color: var(--champagne);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--bone);
  background: var(--white);
}

.pricing-section {
  padding-top: 38px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  background: var(--white);
  padding: 34px;
}

.price-card.dark {
  background: var(--obsidian);
  color: var(--porcelain);
}

.price-market {
  display: block;
  color: var(--mineral);
  font-size: 13px;
  font-weight: 900;
}

.price-card.dark .price-market {
  color: var(--champagne);
}

.price {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 600;
  line-height: 1;
}

.price-card p {
  margin: 18px 0 26px;
  color: var(--graphite);
  line-height: 1.65;
}

.price-card.dark p {
  color: rgba(247, 245, 239, 0.72);
}

.phase {
  padding: 26px;
  border-right: 1px solid var(--bone);
}

.phase:last-child {
  border-right: 0;
}

.phase small {
  color: var(--mineral);
  font-weight: 900;
}

.phase h3 {
  margin-top: 18px;
  font-family: var(--ui);
  font-size: 20px;
  font-weight: 900;
}

.phase p {
  color: var(--graphite);
  line-height: 1.65;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-card {
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
}

.fit-card.muted {
  background: transparent;
}

.fit-card h3 {
  font-family: var(--ui);
  font-size: 24px;
  font-weight: 900;
}

.fit-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--graphite);
  line-height: 1.85;
}

.cta-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--obsidian);
  color: var(--porcelain);
  padding: 44px;
}

.cta-panel img {
  width: 112px;
}

.cta-panel h2 {
  margin-top: 36px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.cta-panel p {
  margin: 20px 0 0;
  color: rgba(247, 245, 239, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.lead-form {
  border: 1px solid rgba(247, 245, 239, 0.16);
  border-radius: var(--radius);
  background: rgba(247, 245, 239, 0.06);
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: rgba(247, 245, 239, 0.72);
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(247, 245, 239, 0.2);
  border-radius: var(--radius);
  background: rgba(247, 245, 239, 0.08);
  color: var(--porcelain);
  font: inherit;
  padding: 0 12px;
}

select option {
  color: var(--obsidian);
}

.field {
  margin-bottom: 14px;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(247, 245, 239, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--graphite);
  line-height: 1.65;
}

.safety {
  border-top: 1px solid var(--bone);
  padding: 28px 0 46px;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.7;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .nav a:not(.button) {
    display: none;
  }

  .hero-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-item,
  .phase {
    border-bottom: 1px solid var(--bone);
  }

  .offer-item:nth-child(2),
  .phase:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 168px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 72px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions .button,
  .nav .button {
    width: 100%;
  }

  .nav {
    flex: 1;
    justify-content: flex-end;
  }

  .visual-metrics,
  .steps,
  .reason-grid,
  .belief-panel,
  .choice-grid,
  .pricing-grid,
  .offer-grid,
  .timeline,
  .fit-grid,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .metric,
  .offer-item,
  .phase {
    border-right: 0;
    border-bottom: 1px solid var(--bone);
  }

  .metric {
    border-bottom-color: rgba(247, 245, 239, 0.16);
  }

  .metric:last-child,
  .offer-item:last-child,
  .phase:last-child {
    border-bottom: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .choice-card {
    min-height: 380px;
  }

  .cta-panel {
    padding: 28px;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
  }
}

/* ═══════════════════════════════════════════════════════
   NEW SECTIONS — Coffee Switch CRO Rebuild
   All rules below are additions only. No existing rules changed.
   ═══════════════════════════════════════════════════════ */

/* ─── AGITATION SECTION ─────────────────────────────── */
.agitation-section {
  background: var(--obsidian);
  color: var(--porcelain);
  padding-top: 34px;
}

.agitation-section .section-head h2 {
  color: var(--porcelain);
}

.agitation-section .section-head p {
  color: rgba(247, 245, 239, 0.68);
}

.agitation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.agitation-item {
  border: 1px solid rgba(247, 245, 239, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: rgba(247, 245, 239, 0.04);
}

.agitation-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(198, 161, 91, 0.5);
  color: var(--champagne);
  font-size: 20px;
  margin-bottom: 22px;
}

.agitation-item h3 {
  font-family: var(--ui);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--porcelain);
}

.agitation-item p {
  color: rgba(247, 245, 239, 0.72);
  line-height: 1.7;
  margin: 0;
}

.agitation-close {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(247, 245, 239, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.agitation-close p {
  max-width: 640px;
  color: rgba(247, 245, 239, 0.8);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ─── WHY iCOFFEE SECTION ────────────────────────────── */
.why-icoffee-section {
  background: var(--porcelain);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.ingredient-card {
  position: relative;
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px 28px 70px;
  min-height: 320px;
}

.ingredient-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--obsidian);
  color: var(--champagne);
  font-family: var(--display);
  font-weight: 600;
  margin-bottom: 20px;
}

.ingredient-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
}

.ingredient-name {
  color: var(--mineral);
  font-size: 20px;
  font-weight: 500;
}

.ingredient-card p {
  color: var(--graphite);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.ingredient-badge {
  position: absolute;
  bottom: 22px;
  left: 28px;
  display: inline-block;
  border: 1px solid var(--mineral);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--mineral);
  font-size: 12px;
  font-weight: 900;
}

/* ─── STUDY PANEL ────────────────────────────────────── */
.study-panel {
  border-radius: var(--radius);
  background: var(--obsidian);
  color: var(--porcelain);
  overflow: hidden;
}

.study-panel-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
}

.study-left {
  padding: 44px;
  border-right: 1px solid rgba(247, 245, 239, 0.12);
}

.study-left h3 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
  margin: 14px 0 22px;
}

.study-left p {
  color: rgba(247, 245, 239, 0.72);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 16px;
}

.study-note {
  font-size: 13px !important;
  color: rgba(247, 245, 239, 0.48) !important;
  border-top: 1px solid rgba(247, 245, 239, 0.12);
  padding-top: 16px;
  margin-top: 20px !important;
}

.study-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.study-stat {
  padding: 28px 20px;
  border-right: 1px solid rgba(247, 245, 239, 0.12);
  border-bottom: 1px solid rgba(247, 245, 239, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.study-stat:nth-child(even) {
  border-right: 0;
}

.study-stat:nth-child(3),
.study-stat:nth-child(4) {
  border-bottom: 0;
}

.study-stat strong {
  display: block;
  color: var(--champagne);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.study-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(247, 245, 239, 0.55);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── CHOICE CARD INGREDIENTS ────────────────────────── */
.choice-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 44px;
}

.choice-ingredients span {
  border: 1px solid var(--bone);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 800;
  color: var(--graphite);
}

.dark-ingredients span {
  border-color: rgba(247, 245, 239, 0.22);
  color: rgba(247, 245, 239, 0.68);
}

.choice-note {
  margin-top: 20px;
  text-align: center;
  color: var(--graphite);
  font-size: 14px;
}

/* ─── CTA REASSURANCES ───────────────────────────────── */
.cta-reassurances {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 245, 239, 0.82);
  font-size: 15px;
}

.cta-check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(11, 111, 99, 0.4);
  color: #4ecdb8;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── RESPONSIVE — NEW SECTIONS ─────────────────────── */
@media (max-width: 920px) {
  .agitation-grid,
  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .agitation-close {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .study-panel-inner {
    grid-template-columns: 1fr;
  }

  .study-left {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 245, 239, 0.12);
  }

  .study-right {
    grid-template-columns: repeat(4, 1fr);
  }

  .study-stat:nth-child(3),
  .study-stat:nth-child(4) {
    border-bottom: 0;
  }

  .study-stat {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .study-right {
    grid-template-columns: 1fr 1fr;
  }

  .study-stat:nth-child(odd) {
    border-right: 1px solid rgba(247, 245, 239, 0.12);
  }

  .study-stat:nth-child(even) {
    border-right: 0;
  }

  .study-stat:nth-child(1),
  .study-stat:nth-child(2) {
    border-bottom: 1px solid rgba(247, 245, 239, 0.12);
  }

  .study-stat:nth-child(3),
  .study-stat:nth-child(4) {
    border-bottom: 0;
  }

  .study-left {
    padding: 28px;
  }

  .ingredient-card {
    padding-bottom: 74px;
  }

  .choice-ingredients {
    margin-bottom: 56px;
  }
}

/* ─── PRODUCT IMAGE STYLES ───────────────────────────── */

/* Hero card product image */
.visual-product-image {
  padding: 0 20px 4px;
  background: var(--obsidian);
}

.hero-product-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 4px;
  mix-blend-mode: normal;
}

/* Choice card product image */
.choice-product-img-wrap {
  width: 100%;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
  background: #c8b89a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-img-wrap {
  background: #2a1e14;
}

.choice-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 400ms ease;
}

.choice-card:hover .choice-product-img {
  transform: scale(1.04);
}

/* Creamer photo — shift up so sachet + cup are fully visible */
.choice-card:not(.dark) .choice-product-img {
  object-position: center 15%;
}

/* Content padding inside choice cards */
.choice-card-content {
  padding: 24px 28px 84px;
  flex: 1;
}

.choice-card-content h3 {
  padding: 0;
  margin-top: 0;
}

.choice-card-content p {
  padding: 0;
  margin-top: 14px;
}

.choice-card-content .choice-ingredients {
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .hero-product-img {
    max-height: 180px;
  }

  .choice-product-img-wrap {
    height: 180px;
  }
}

/* ══════════════════════════════════════════════════════════════
   HELTHU SITE FOOTER — Added for helthu.com integration
   ════════════════════════════════════════════════════════════ */

.helthu-footer {
  background: #111715;
  color: #f7f5ef;
  padding-top: 64px;
  padding-bottom: 36px;
  margin-top: 0;
}

.helthu-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(221,216,204,0.09);
  margin-bottom: 32px;
  width: min(1160px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.helthu-footer__logo-wrap { margin-bottom: 12px; }
.helthu-footer__logo {
  width: 160px;
  height: auto;
  opacity: 0.90;
  display: block;
}
.helthu-footer__tagline {
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,245,239,0.35);
  letter-spacing: 0.01em;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
}
.helthu-footer__nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6a15b;
  margin-bottom: 16px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
}
.helthu-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.helthu-footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(247,245,239,0.55);
  text-decoration: none;
  transition: color 160ms ease;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
}
.helthu-footer__links a:hover { color: #f7f5ef; }

.helthu-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: min(1160px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.helthu-footer__copy {
  font-size: 12px;
  color: rgba(247,245,239,0.26);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
}
.helthu-footer__legal {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(247,245,239,0.20);
  max-width: 480px;
  text-align: right;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
}

/* Breadcrumb in coffee-switch nav */
.nav-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--graphite);
  padding-right: 16px;
  border-right: 1px solid var(--bone);
  white-space: nowrap;
}
.nav-breadcrumb a {
  color: var(--graphite);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 160ms ease;
}
.nav-breadcrumb a:hover { opacity: 1; }
.nav-breadcrumb span:not(:last-child) { color: rgba(89,97,94,0.45); }
.nav-breadcrumb span:last-child { color: var(--obsidian); font-weight: 700; }

@media (max-width: 680px) {
  .helthu-footer__top    { grid-template-columns: 1fr; gap: 32px; }
  .helthu-footer__legal  { text-align: left; }
  .helthu-footer__bottom { flex-direction: column; }
  .nav-breadcrumb        { display: none; }
}

@media (max-width: 480px) {
  .helthu-footer__top { gap: 24px; padding-bottom: 28px; }
  .helthu-footer__logo { width: 136px; }
  .helthu-footer__copy  { font-size: 11px; }
  .helthu-footer__legal { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW ELEMENTS — August 2026 approved changes
   ═══════════════════════════════════════════════════════════════════ */

/* Helthu / IndusViva relationship note (Why iCoffee section) */
.helthu-indusviva-note {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--graphite);
  border-left: 2px solid var(--champagne);
  padding-left: 14px;
}

/* Evening step flexibility note */
.step-flex-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--graphite);
  font-style: italic;
}

/* CTA section — guide identity */
.cta-guide-intro {
  font-size: 15.5px;
  line-height: 1.72;
  color: rgba(247, 245, 239, 0.7);
  margin-bottom: 24px;
}
.cta-guide-name {
  font-weight: 700;
  color: var(--porcelain);
}
.cta-response-note {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--champagne);
  font-weight: 600;
}

/* UAE AED price badge (shown by JS when uaePriceAED is configured) */
.price-aed-badge {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--champagne);
  letter-spacing: 0.02em;
}

/* Privacy policy link inside lead form note */
.form-privacy-link {
  color: var(--champagne);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-privacy-link:hover { opacity: 0.8; }

/* Footer company identity line */
.helthu-footer__company {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(247, 245, 239, 0.38);
  line-height: 1.6;
}

