*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c1: #FDFFFD; --c2: #F9FFFB; --c3: #D9F7EC;
  --c4: #BFE8D8; --c5: #8BC7B0; --c6: #4D8A72; --c7: #044733;
  --bg: #F2F1EB;
  --bg-white: #FFFFFF;
  --dark: #044733;
  --mid: #4D8A72;
  --text: #1C2B1E;
  --muted: #6B7B6E;
  --border: #E0E8E3;
  --tag-bg: rgba(4,71,51,0.08);
  --red: #E53E3E;
  --problem-bg: #445C48;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', -apple-system, sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

/* ── SHARED SECTION ELEMENTS ── */
.section-tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--dark);
  font-size: 12px; font-weight: 500;
  padding: 5px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag--inv {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
.section-tag--on-dark {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
}
.section-headline {
  font-size: clamp(30px,3.5vw,52px);
  font-weight: 800; line-height: 1.12;
  color: var(--dark); letter-spacing: -1px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.red-dot { color: var(--red); }

/* ── NAV ── */
.nav {
  background: var(--dark); height: 64px;
  display: flex; align-items: center; padding: 0 48px;
  position: sticky; top: 0; z-index: 100;
  gap: 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 20px; letter-spacing: -0.5px; flex-shrink: 0; }
.nav-logo img { height: 26px; filter: brightness(0) invert(1); }
.nav-logo-text { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.nav-beta { font-size: 10px; font-weight: 400; border: 1px solid rgba(255,255,255,0.35); border-radius: 100px; padding: 2px 9px; opacity: 0.75; }
.nav-links { display: flex; list-style: none; gap: 32px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 400; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { margin-left: 28px; background: #fff; color: var(--dark); font-size: 13px; font-weight: 600; padding: 8px 20px; border-radius: 100px; transition: opacity .2s; flex-shrink: 0; }
.nav-cta:hover { opacity: .85; }

/* ── STORE BUTTONS ── */
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; padding: 10px 22px;
  border-radius: 100px; transition: opacity .2s, transform .15s;
}
.store-btn:hover { opacity: .85; transform: translateY(-1px); }
.store-btn--dark { background: #111; color: #fff; }
.store-btn--outline { background: transparent; color: var(--dark); border: 1.5px solid rgba(4,71,51,0.3); }

/* ── HERO ── */
.hero { position: relative; min-height: 600px; padding: 100px 48px 120px; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(242,241,235,.92) 48%, rgba(242,241,235,.05)); pointer-events: none; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to right, rgba(242,241,235,.92) 48%, rgba(242,241,235,.05)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-headline { font-size: clamp(40px,5.5vw,70px); font-weight: 800; line-height: 1.06; color: var(--dark); letter-spacing: -2.5px; margin-bottom: 20px; }
.hero-headline span { display: block; }
.hero-sub { font-size: 14px; line-height: 1.8; color: var(--muted); max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-btn { display: inline-block; background: var(--dark); color: #fff; font-size: 14px; font-weight: 600; padding: 14px 28px; border-radius: 100px; transition: opacity .2s, transform .15s; }
.hero-btn:hover { opacity: .85; transform: translateY(-1px); }

/* ── WHAT WE DO ── */
.what-section { padding: 100px 48px; background: #f7fbf4; }
.what-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1160px; margin: 0 auto; }

/* Image column is the positioning context */
.what-image-col { position: relative; min-height: 360px; }

/* Product image: left-anchored, vertically centered */
.what-product-img {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 300px; width: auto; max-width: 58%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.14));
  z-index: 1;
}

/* Reusable ingredients warning card */
.ingredients-warning-card {
  --warning-red: #ff3434;
  --warning-bg: #ffe8e8;
  --warning-border: #ff3434;
  --warning-text: #1a1a1a;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(260px, 50%, 318px);
  min-height: 118px;
  padding: 20px 14px 16px;
  background: var(--warning-bg);
  border: 2px solid var(--warning-border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(26, 26, 26, .08);
  color: var(--warning-text);
}

.ingredients-warning-card__header {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 34px;
  min-width: 212px;
  padding: 0 18px;
  background: #fff0f0;
  border: 2px solid var(--warning-red);
  border-radius: 999px;
  color: var(--warning-red);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.ingredients-warning-card__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--warning-red);
  box-shadow: inset 0 0 0 2px #fff0f0;
}

.ingredients-warning-card__icon::before,
.ingredients-warning-card__icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 10px;
  height: 2.5px;
  border-radius: 999px;
  background: #fff;
}

.ingredients-warning-card__icon::before { transform: rotate(45deg); }
.ingredients-warning-card__icon::after { transform: rotate(-45deg); }

.ingredients-warning-card__note {
  margin: 0 0 18px;
  color: #666;
  font-size: 10px;
  font-style: italic;
  line-height: 1.35;
  text-align: left;
}

.ingredients-warning-card__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.ingredients-warning-card__list li {
  color: var(--warning-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

/* Bad bubble: outer circle (border only) + inner seal */
.bad-bubble {
  position: absolute; bottom: 20px; left: 46%;
  transform: translateX(-50%);
  width: 114px; height: 114px; border-radius: 50%;
  background: transparent; border: 3px solid #FF3333;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  box-shadow: 0 4px 18px rgba(255,51,51,.18);
  z-index: 3;
}
.bad-bubble span { font-size: 22px; font-weight: 800; color: #E54843; line-height: 1; letter-spacing: -0.5px; }

/* Inner seal/stamp shape */
.bad-seal {
  position: relative;
  width: 58px; height: 58px;
  background: transparent;
  clip-path: none;
  display: flex; align-items: center; justify-content: center;
}

.bad-seal::before,
.bad-seal::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.bad-seal::before {
  inset: 0;
  background: #E54843;
  clip-path: polygon(50% 0%, 55% 5%, 62% 2%, 66% 8%, 73% 8%, 76% 15%, 83% 17%, 83% 24%, 90% 28%, 88% 35%, 94% 40%, 90% 46%, 94% 52%, 89% 58%, 90% 65%, 83% 68%, 81% 75%, 74% 76%, 70% 83%, 63% 82%, 58% 89%, 52% 86%, 46% 94%, 41% 87%, 34% 90%, 30% 83%, 23% 84%, 20% 77%, 13% 75%, 12% 68%, 5% 64%, 8% 57%, 2% 52%, 6% 46%, 1% 40%, 7% 35%, 5% 28%, 12% 24%, 12% 17%, 19% 15%, 22% 8%, 29% 8%, 34% 2%, 41% 5%);
}

.bad-seal::after {
  inset: 7px;
  background: #f7fbf4;
  clip-path: polygon(50% 0%, 55% 5%, 62% 2%, 66% 8%, 73% 8%, 76% 15%, 83% 17%, 83% 24%, 90% 28%, 88% 35%, 94% 40%, 90% 46%, 94% 52%, 89% 58%, 90% 65%, 83% 68%, 81% 75%, 74% 76%, 70% 83%, 63% 82%, 58% 89%, 52% 86%, 46% 94%, 41% 87%, 34% 90%, 30% 83%, 23% 84%, 20% 77%, 13% 75%, 12% 68%, 5% 64%, 8% 57%, 2% 52%, 6% 46%, 1% 40%, 7% 35%, 5% 28%, 12% 24%, 12% 17%, 19% 15%, 22% 8%, 29% 8%, 34% 2%, 41% 5%);
}

.bad-seal svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 50%;
  background: #E54843;
  stroke-width: 3.8px;
}

/* Text column */
.what-text-col { display: flex; flex-direction: column; }
.what-tag { display: inline-block; background: rgba(0,0,0,.07); color: #555; font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: 100px; margin-bottom: 24px; align-self: flex-start; }
.what-headline { font-size: clamp(32px,4vw,54px); font-weight: 800; line-height: 1.16; color: var(--dark); letter-spacing: -1.5px; margin-bottom: 24px; }
.what-headline .script { font-family: 'Bilbo Swash Caps', Georgia, 'Times New Roman', serif; font-style: normal; color: var(--mid); font-weight: 400; }
.what-desc { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 420px; }

/* ── PROBLEM SECTION ── */
.problem-section { padding: 96px 0; background: var(--problem-bg); }
.problem-section .section-headline { color: #fff; }
.problem-headline { margin-bottom: 0; }

.problem-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.problem-card { border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.15); transition: transform .2s; }
.problem-card:hover { transform: translateY(-4px); }

.problem-card-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.problem-card-img--slow    { background-color: #c9ccb8; background-image: linear-gradient(160deg,#d5d9c6 0%,#a8ad97 100%); }
.problem-card-img--confusing { background-color: #c2c9b5; background-image: linear-gradient(160deg,#cdd3be 0%,#9aa48c 100%); }
.problem-card-img--foreign  { background-color: #bcc5b8; background-image: linear-gradient(160deg,#c6cfc2 0%,#8d9b88 100%); }

.problem-card-body { display: flex; align-items: center; gap: 12px; padding: 18px 22px; }
.problem-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--c3); display: flex; align-items: center; justify-content: center; color: var(--dark); }
.problem-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.problem-card-sub { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── SOLUTION / WHAT WE DO ── */
.solution-section { padding: 100px 0; background: #fff; }
.solution-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solution-image-col { position: relative; }
.solution-product { position: relative; display: inline-block; width: 100%; }
.solution-product > img { width: 100%; border-radius: 20px; object-fit: cover; max-height: 380px; }

.solution-alert {
  position: absolute; top: 28px; right: -20px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  min-width: 210px; max-width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  border: 1px solid rgba(229,62,62,.2);
}
.solution-alert-header { display: flex; align-items: center; gap: 7px; margin-bottom: 8px; }
.solution-alert-title { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .4px; }
.solution-alert-note { font-size: 9px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; font-style: italic; }
.solution-alert-items { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.solution-alert-item { font-size: 13px; font-weight: 600; color: var(--text); }

.solution-bad {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 2.5px solid var(--red);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px; backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(229,62,62,.25);
}
.solution-bad span { font-size: 11px; font-weight: 800; color: var(--red); }

.solution-headline { font-size: clamp(26px,2.8vw,40px); font-weight: 800; line-height: 1.22; color: var(--dark); margin: 16px 0 20px; }
.solution-headline em { font-style: italic; }
.solution-desc { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 400px; }

/* ── HOW IT WORKS ── */
.how-section { padding: 96px 0; background: var(--bg); }
.how-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }

.how-step { flex: 1; max-width: 220px; display: flex; flex-direction: column; align-items: center; text-align: center; }

.how-arrow {
  flex-shrink: 0; color: rgba(4,71,51,.25);
  padding: 0 8px; margin-top: 110px;
}

/* Phone shell */
.how-phone {
  width: 148px; height: 288px;
  background: var(--dark); border-radius: 28px;
  padding: 12px 8px 10px; margin-bottom: 28px;
  position: relative;
  box-shadow: 0 20px 56px rgba(4,71,51,.3), 0 4px 16px rgba(0,0,0,.15);
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 4px; background: rgba(255,255,255,.15);
  border-radius: 4px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}

/* Setup screen */
.phone-screen--setup { background: #fafaf8; padding: 16px 12px; gap: 0; }
.phone-setup-label { font-size: 8px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 6px; }
.phone-setup-desc { font-size: 6.5px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.phone-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.phone-option {
  display: flex; align-items: center; gap: 8px;
  font-size: 7.5px; color: var(--text);
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 10px; cursor: pointer;
}
.phone-radio-btn {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--border); flex-shrink: 0;
}
.phone-setup-cta {
  background: var(--dark); color: #fff;
  font-size: 8px; font-weight: 600;
  text-align: center; padding: 7px;
  border-radius: 100px; margin-top: auto;
}

/* Scan screen */
.phone-screen--scan { background: #111; padding: 10px 10px 14px; align-items: center; }
.phone-scan-topbar { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.phone-scan-back { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1; }
.phone-scan-title { color: #fff; font-size: 9px; font-weight: 600; }
.phone-scan-icon-right { color: rgba(255,255,255,.5); display: flex; }
.phone-scan-area {
  width: 90px; height: 90px; position: relative;
  flex-shrink: 0;
}
.scan-corner { position: absolute; width: 16px; height: 16px; border-color: #4ADE80; border-style: solid; }
.scan-corner.tl { top:0; left:0; border-width: 2.5px 0 0 2.5px; border-radius: 2px 0 0 0; }
.scan-corner.tr { top:0; right:0; border-width: 2.5px 2.5px 0 0; border-radius: 0 2px 0 0; }
.scan-corner.bl { bottom:0; left:0; border-width: 0 0 2.5px 2.5px; border-radius: 0 0 0 2px; }
.scan-corner.br { bottom:0; right:0; border-width: 0 2.5px 2.5px 0; border-radius: 0 0 2px 0; }
.scan-line {
  position: absolute; top: 50%; left: 4px; right: 4px; height: 1.5px;
  background: linear-gradient(90deg, transparent, #4ADE80, transparent);
  box-shadow: 0 0 6px rgba(74,222,128,.6);
}
.phone-scan-hint { color: rgba(255,255,255,.35); font-size: 6px; margin-top: 10px; }
.phone-scan-shutter { color: rgba(255,255,255,.5); margin-top: auto; display: flex; }

/* Result screen */
.phone-screen--result { background: #f9fafb; padding: 10px 10px 12px; align-items: center; }
.phone-result-topbar { width: 100%; display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.phone-result-back { color: var(--muted); font-size: 16px; line-height: 1; }
.phone-result-bar-title { font-size: 9px; font-weight: 600; color: var(--dark); }
.phone-result-check {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c3); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.phone-result-good { font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.phone-result-product {
  width: 100%; background: #fff; border-radius: 10px;
  padding: 8px 10px; display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); margin-top: auto;
}
.phone-result-product-img { width: 26px; height: 26px; border-radius: 6px; background: var(--bg); flex-shrink: 0; }
.phone-result-product-name { font-size: 7px; font-weight: 700; color: var(--dark); }
.phone-result-product-brand { font-size: 6px; color: var(--muted); }
.phone-result-heart { font-size: 13px; color: var(--muted); margin-left: auto; }

/* Step footer */
.how-step-footer { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.how-step-badge {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--dark); color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.how-step-title { font-size: 14px; font-weight: 700; color: var(--dark); }
.how-step-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ── WHO IT'S FOR ── */
.who-section { padding: 96px 0; background: #fff; }
.who-headline-text { font-size: clamp(28px,3.5vw,48px); font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: -0.5px; }
.who-rows { display: flex; flex-direction: column; gap: 16px; }
.who-row { display: flex; align-items: center; justify-content: space-between; padding: 36px 44px; background: var(--bg); border-radius: 20px; gap: 48px; transition: background .2s, transform .2s; }
.who-row:hover { background: #daeee4; transform: translateY(-2px); }
.who-row-text { flex: 1; }
.who-row-num { font-size: 11px; font-weight: 800; color: var(--mid); letter-spacing: .12em; margin-bottom: 10px; opacity: .7; }
.who-row-title { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.who-row-sub { font-size: 14px; color: var(--muted); }
.who-row-desc { font-size: 11.5px; color: var(--muted); line-height: 1.65; margin-top: 10px; max-width: 380px; opacity: .85; }

/* Visual illustration areas */
.who-row-visual { width: 340px; height: 170px; border-radius: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.who-row-visual--allergy { background: linear-gradient(135deg, #f8f2e4 0%, #ede3cc 100%); }
.who-row-visual--vegan   { background: linear-gradient(135deg, #eef6ee 0%, #d8ecd8 100%); }
.who-row-visual--travel  { background: linear-gradient(135deg, #eef0f8 0%, #d4daf2 100%); }

/* Allergy card */
.who-allergy-card { background: #fff; border-radius: 12px; padding: 14px 20px; box-shadow: 0 6px 24px rgba(0,0,0,.1); min-width: 160px; }
.who-allergy-card-title { font-size: 13px; font-weight: 800; color: #2d2218; margin-bottom: 8px; padding-bottom: 7px; border-bottom: 1.5px solid #e8e0d0; }
.who-allergy-item { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: #444; padding: 2.5px 0; }
.who-allergy-check { color: #3a6b48; font-size: 11px; font-weight: 800; }

/* Ingredient label card */
.who-label-card { background: #fdf8ee; border: 1px solid #e8d8a8; border-radius: 12px; padding: 14px 18px; box-shadow: 0 6px 24px rgba(0,0,0,.09); max-width: 230px; }
.who-label-title { font-size: 11.5px; font-weight: 800; color: #2d2d2d; margin-bottom: 6px; }
.who-label-text { font-size: 9.5px; color: #555; line-height: 1.65; }
.who-label-flag { color: #c0392b; font-weight: 700; }
.who-label-badge { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; background: rgba(192,57,43,.1); color: #c0392b; font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(192,57,43,.2); }

/* Passport card */
.who-passport-card { background: linear-gradient(135deg, #1a3a6e 0%, #0f2548 100%); border-radius: 14px; padding: 18px 24px; box-shadow: 0 8px 28px rgba(15,37,72,.3); color: #fff; text-align: center; min-width: 170px; }
.who-passport-title { font-size: 10px; font-weight: 800; letter-spacing: .16em; opacity: .75; margin-bottom: 10px; }
.who-passport-globe { display: flex; justify-content: center; margin-bottom: 12px; }
.who-passport-langs { display: flex; gap: 5px; flex-wrap: wrap; justify-content: center; }
.who-passport-lang { font-size: 9.5px; background: rgba(255,255,255,.15); padding: 3px 9px; border-radius: 100px; }

/* Legacy (kept for compatibility) */
.who-row-img { width: 280px; height: 120px; border-radius: 14px; flex-shrink: 0; }
.who-row-img--allergy  { background-color: #e0c98a; background-image: linear-gradient(135deg,#ead4a0 0%,#c4a060 100%); }
.who-row-img--vegan    { background-color: #b8d4b8; background-image: linear-gradient(135deg,#c8dcc8 0%,#8aac8a 100%); }
.who-row-img--travel   { background-color: #a8b8cc; background-image: linear-gradient(135deg,#bacad8 0%,#7a9ab4 100%); }

/* ── FEATURES / WHY TRUST CLIR ── */
.features-section { padding: 96px 0; background: var(--dark); }
.features-headline { color: #fff !important; }
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.feature-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 36px; transition: background .2s;
}
.feature-card:hover { background: rgba(255,255,255,.1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--c4); margin-bottom: 20px;
}
.feature-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── FINAL CTA SECTION ── */
.cta-section {
  background: #EDF8F3;
  padding: 96px 48px;
  display: flex; align-items: center; justify-content: center;
}
.cta-inner { text-align: center; max-width: 640px; }
.cta-headline {
  font-size: clamp(28px,4vw,52px);
  font-weight: 800; color: var(--dark);
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 24px;
}
.cta-instagram {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: #2563EB;
  margin-bottom: 32px; transition: opacity .2s;
}
.cta-instagram:hover { opacity: .75; }
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   CI PAGE
   ════════════════════════════════════════ */
.ci-hero { padding: 80px 0 64px; }
.ci-label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: var(--tag-bg); color: var(--dark); padding: 5px 14px; border-radius: 100px; margin-bottom: 24px; }
.ci-headline { font-size: clamp(40px,5.5vw,76px); font-weight: 800; color: var(--dark); letter-spacing: -2.5px; line-height: 1.04; margin-bottom: 14px; }
.ci-sub { font-size: 15px; color: var(--muted); max-width: 400px; line-height: 1.7; }

.ci-card { background: #fff; border-radius: 20px; padding: 44px; margin-bottom: 20px; }
.ci-card-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 32px; }

/* Logo card */
.ci-logo-grid { display: grid; grid-template-columns: 1fr 220px 1fr; gap: 36px; align-items: center; }
.ci-logo-box { background: var(--bg); border-radius: 14px; height: 160px; display: flex; align-items: center; justify-content: center; padding: 32px; }
.ci-logo-box img { max-height: 48px; }
.ci-logo-box--dashed { border: 1.5px dashed var(--border); background: #fff; position: relative; }
.clearspace-mark { position: absolute; font-size: 9px; color: var(--muted); opacity: .55; }
.clearspace-mark.tl { top: 6px; left: 8px; }
.clearspace-mark.tr { top: 6px; right: 8px; }
.clearspace-mark.bl { bottom: 6px; left: 8px; }
.clearspace-mark.br { bottom: 6px; right: 8px; }
.ci-logo-features { list-style: none; }
.ci-logo-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }
.ci-logo-features li:last-child { border-bottom: none; }
.ci-logo-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--dark); flex-shrink: 0; }

/* Palette */
.ci-palette { display: grid; grid-template-columns: repeat(7,1fr); gap: 10px; margin-bottom: 24px; }
.ci-swatch-color { width: 100%; aspect-ratio: 1; border-radius: 12px; border: 1px solid rgba(0,0,0,.06); }
.ci-swatch-label { font-size: 10px; font-weight: 600; color: var(--text); text-align: center; margin-top: 8px; }
.ci-swatch-hex { font-size: 9px; color: var(--muted); font-family: 'Courier New', monospace; text-align: center; }
.ci-palette-meaning { display: flex; align-items: center; gap: 16px; background: var(--bg); border-radius: 12px; padding: 18px 22px; }
.ci-palette-meaning-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--c3); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ci-palette-meaning-title { font-size: 14px; font-weight: 700; color: var(--dark); }
.ci-palette-meaning-desc { font-size: 12px; color: var(--muted); }

/* Two-col */
.ci-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.ci-type-sample { font-size: 52px; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.ci-type-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.ci-type-row { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.ci-type-row:last-child { border-bottom: none; }
.ci-type-role { font-weight: 600; color: var(--dark); width: 72px; flex-shrink: 0; }
.ci-type-sep { color: var(--border); }
.ci-type-val { color: var(--muted); }

/* Tone */
.ci-tone-items { display: flex; flex-direction: column; gap: 20px; }
.ci-tone-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-tone-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.ci-tone-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.ci-tone-desc { font-size: 12px; color: var(--muted); }

/* Download */
.ci-download { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #fff; border-radius: 20px; padding: 32px 44px; margin-bottom: 60px; }
.ci-dl-left { display: flex; align-items: center; gap: 18px; }
.ci-dl-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--c3); display: flex; align-items: center; justify-content: center; color: var(--dark); flex-shrink: 0; }
.ci-dl-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.ci-dl-desc { font-size: 13px; color: var(--muted); }
.ci-dl-btn { background: var(--dark); color: #fff; font-size: 14px; font-weight: 600; padding: 13px 26px; border-radius: 12px; display: inline-flex; align-items: center; gap: 8px; transition: opacity .2s; flex-shrink: 0; }
.ci-dl-btn:hover { opacity: .85; }

/* ════════════════════════════════════════
   SUBSCRIPTION PAGE
   ════════════════════════════════════════ */
.pricing-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.92) 0, rgba(255,255,255,.54) 35%, rgba(249,250,245,0) 64%),
    #f7f8f1;
}

.pricing-nav {
  height: 66px;
  background: #1d3b18;
}

.pricing-page-main {
  padding: 44px 24px 56px;
}

.sub-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 44px;
  text-align: center;
}

.sub-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  background: rgba(105, 124, 101, .22);
  color: #536651;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.sub-headline {
  font-size: clamp(42px, 4.6vw, 58px);
  font-weight: 800;
  color: #071711;
  letter-spacing: -2.4px;
  line-height: 1.04;
  margin-bottom: 20px;
}

.sub-sub {
  font-size: clamp(17px, 1.85vw, 22px);
  color: #6f7770;
  font-weight: 400;
  line-height: 1.35;
}

.pricing-section {
  width: min(100%, 776px);
  margin: 0 auto;
  padding-bottom: 0;
}

.pricing-table {
  background: rgba(255, 255, 252, .62);
  border-radius: 17px;
  overflow: hidden;
  border: 1px solid rgba(35, 55, 37, .14);
  margin-bottom: 28px;
  box-shadow: 0 18px 42px rgba(22, 45, 23, .035);
}

.pricing-head {
  display: grid;
  grid-template-columns: 1.04fr 1fr 1.18fr;
  min-height: 73px;
  border-bottom: 1px solid rgba(35, 55, 37, .12);
}

.pricing-head-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 26px;
}

.pricing-head-cell + .pricing-head-cell {
  border-left: 1px solid rgba(35, 55, 37, .12);
}

.pricing-plan {
  font-size: 20px;
  font-weight: 800;
  color: #17391c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.pricing-best {
  font-size: 10px;
  font-weight: 700;
  background: #7f917c;
  color: #fff;
  padding: 5px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.04fr 1fr 1.18fr;
  min-height: 72px;
  border-bottom: 1px solid rgba(35, 55, 37, .12);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-cell {
  padding: 14px 23px;
  display: flex;
  align-items: center;
}

.pricing-cell + .pricing-cell {
  border-left: 1px solid rgba(35, 55, 37, .12);
}

.pricing-cell--center {
  justify-content: center;
  text-align: center;
}

.pricing-cell-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #111916;
  font-weight: 700;
}

.pricing-cell-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #edf1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #526b50;
  flex-shrink: 0;
}

.pricing-cell-val {
  font-size: 20px;
  font-weight: 800;
  color: #071711;
  letter-spacing: -.4px;
}

.pricing-cell-val--premium {
  color: #566d56;
}

.pricing-note {
  text-align: center;
  font-size: 16px;
  color: #676f68;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 24px;
}

.pricing-note-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #768675;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.btn-outline,
.btn-solid {
  width: 264px;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 16px;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}

.btn-outline {
  border: 1.3px solid #1d3b29;
  color: #1d3b29;
  background: rgba(255, 255, 255, .38);
}

.btn-outline:hover,
.btn-solid:hover {
  transform: translateY(-1px);
}

.btn-solid {
  border: 1.3px solid #1d3b29;
  background: linear-gradient(135deg, #244a23 0%, #0f321d 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 24px rgba(20, 56, 29, .14);
}

.btn-solid:hover {
  opacity: .9;
}

/* FAQ */
.faq-section { border-top: 1px solid var(--border); padding: 72px 0; }
.faq-title { font-size: 26px; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 40px; letter-spacing: -0.5px; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--dark); padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--muted); flex-shrink: 0; font-weight: 300; }
details[open] .faq-q::after { content: '−'; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.8; padding-bottom: 22px; }

/* ── POLICY PAGE ── */
.policy-page {
  background: #f8fbf5;
}

.policy-nav {
  height: 66px;
  background: #1d3b18;
}

.policy-header {
  background:
    radial-gradient(circle at 18% 0%, rgba(139,199,176,.22), transparent 32%),
    linear-gradient(180deg, #f9fff8 0%, #f4f8f1 100%);
  border-bottom: 1px solid rgba(4,71,51,.1);
  padding: 84px 0 58px;
}

.policy-header-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(139,199,176,.3);
  color: #044733;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-bottom: 22px;
}

.policy-title {
  color: #071711;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 800;
  letter-spacing: -2.6px;
  line-height: 1.02;
  margin-bottom: 18px;
}

.policy-subtitle {
  color: #65766a;
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
}

.policy-tabs-wrap {
  position: sticky;
  top: 66px;
  z-index: 80;
  background: rgba(248,251,245,.86);
  border-bottom: 1px solid rgba(4,71,51,.1);
  backdrop-filter: blur(18px);
}

.policy-tabs {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.policy-tabs::-webkit-scrollbar {
  display: none;
}

.policy-tab {
  border: 1px solid rgba(4,71,51,.14);
  background: rgba(255,255,255,.68);
  color: #3f5644;
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.policy-tab:hover,
.policy-tab.active {
  background: #044733;
  color: #fff;
  border-color: #044733;
}

.policy-body {
  padding: 56px 0 88px;
}

.policy-panel {
  display: none;
}

.policy-panel.active {
  display: block;
}

.policy-doc {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(4,71,51,.12);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(20, 56, 29, .06);
  padding: clamp(28px, 5vw, 58px);
}

.policy-doc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(4,71,51,.11);
  margin-bottom: 28px;
}

.policy-kicker {
  color: #8BC7B0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.policy-doc-title {
  color: #044733;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.policy-date {
  flex-shrink: 0;
  color: #566d56;
  background: #edf5ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
}

.policy-toc {
  background: #f4faf5;
  border: 1px solid rgba(4,71,51,.1);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 34px;
}

.policy-toc-label {
  color: #044733;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.policy-toc-list {
  columns: 2;
  column-gap: 42px;
  padding-left: 18px;
}

.policy-toc-list li {
  break-inside: avoid;
  color: #6f8171;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 7px;
}

.policy-toc-list a,
.policy-link {
  color: #044733;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(4,71,51,.24);
  text-underline-offset: 3px;
}

.policy-doc p,
.policy-list {
  color: #314235;
  font-size: 15px;
  line-height: 1.82;
}

.policy-lead {
  color: #1f3324 !important;
  font-size: 17px !important;
  font-weight: 600;
  line-height: 1.75 !important;
}

.policy-section {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(4,71,51,.1);
  scroll-margin-top: 150px;
}

.policy-h3 {
  color: #044733;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.35px;
  margin-bottom: 14px;
}

.policy-h4 {
  color: #1c3c22;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  margin: 24px 0 8px;
}

.policy-list {
  padding-left: 22px;
  margin: 8px 0 18px;
}

.policy-list li {
  margin: 5px 0;
  padding-left: 3px;
}

.policy-callout {
  background: #f6fbf2;
  border: 1px solid rgba(4,71,51,.14);
  border-left: 4px solid #8BC7B0;
  border-radius: 14px;
  color: #17391c !important;
  padding: 14px 16px;
  margin: 12px 0 14px;
}

.policy-back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(4,71,51,.18);
  border-radius: 50%;
  background: #044733;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 14px 30px rgba(4,71,51,.18);
  cursor: pointer;
}

.policy-back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ── Q&A PAGE ── */
.qa-page {
  background: #f8fbf5;
}

.qa-nav {
  height: 66px;
  background: #1d3b18;
}

.qa-hero {
  background:
    radial-gradient(circle at 50% 6%, rgba(139,199,176,.26), transparent 32%),
    linear-gradient(180deg, #fbfff8 0%, #f5f9f1 100%);
  border-bottom: 1px solid rgba(4,71,51,.1);
  padding: 86px 0 58px;
  text-align: center;
}

.qa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(139,199,176,.28);
  color: #044733;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 15px;
  margin-bottom: 24px;
}

.qa-hero h1 {
  color: #071711;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -2.7px;
  line-height: 1.02;
  margin-bottom: 18px;
}

.qa-hero p {
  color: #647468;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.qa-section {
  padding: 48px 0 82px;
}

.qa-container {
  max-width: 980px;
}

.qa-search-wrap {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #6c7d6f;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(4,71,51,.13);
  border-radius: 18px;
  padding: 0 20px;
  box-shadow: 0 18px 48px rgba(20,56,29,.055);
  margin-bottom: 18px;
}

.qa-search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #122117;
  font: inherit;
  font-size: 16px;
}

.qa-search-wrap input::placeholder {
  color: #8b998d;
}

.qa-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 26px;
  scrollbar-width: none;
}

.qa-tabs::-webkit-scrollbar {
  display: none;
}

.qa-tab {
  border: 1px solid rgba(4,71,51,.13);
  background: rgba(255,255,255,.72);
  color: #3f5644;
  border-radius: 999px;
  padding: 10px 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.qa-tab:hover {
  transform: translateY(-1px);
}

.qa-tab.active {
  background: #044733;
  color: #fff;
  border-color: #044733;
}

.qa-list {
  display: grid;
  gap: 12px;
}

.qa-item {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(4,71,51,.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(20,56,29,.035);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.qa-item:hover {
  border-color: rgba(4,71,51,.2);
  box-shadow: 0 16px 42px rgba(20,56,29,.06);
  transform: translateY(-1px);
}

.qa-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #102116;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  padding: 22px 24px;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef6ef;
  color: #044733;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

.qa-item[open] summary::after {
  content: "-";
  background: #044733;
  color: #fff;
  transform: rotate(180deg);
}

.qa-item p {
  color: #536456;
  font-size: 15px;
  line-height: 1.8;
  padding: 0 24px 24px;
  max-width: 820px;
}

.qa-empty {
  text-align: center;
  color: #657468;
  background: rgba(255,255,255,.8);
  border: 1px dashed rgba(4,71,51,.18);
  border-radius: 16px;
  padding: 28px;
  margin-top: 12px;
}

.qa-trust-note {
  color: #4e6252;
  background: #f1f8f1;
  border: 1px solid rgba(4,71,51,.12);
  border-left: 4px solid #8BC7B0;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.75;
  padding: 18px 20px;
  margin-top: 24px;
}

.qa-final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(139,199,176,.2), transparent 35%),
    #f9fff3;
  border-top: 1px solid rgba(4,71,51,.09);
  padding: 86px 24px 96px;
}

.qa-final-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.qa-final-inner h2 {
  color: #071711;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.qa-final-inner p {
  color: #607063;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.qa-final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── SITE FOOTER ── */
.site-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(191,232,216,.12), transparent 36%),
    #173515;
  color: #f7fbf2;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 64px 48px 28px;
}

.site-footer-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(420px, 1.7fr);
  gap: 72px;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 22px;
}

.footer-logo img {
  height: 34px;
  filter: brightness(0) invert(1);
}

.footer-logo > span:first-child {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.7px;
}

.footer-beta {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  padding: 5px 10px;
}

.footer-brand p {
  color: rgba(247,251,242,.72);
  font-size: 14px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.footer-column h2 {
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-column a {
  display: block;
  color: rgba(247,251,242,.64);
  font-size: 14px;
  line-height: 1.35;
  padding: 6px 0;
  transition: color .18s ease, transform .18s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  width: min(100%, 1160px);
  margin: 52px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-bottom p {
  color: rgba(247,251,242,.58);
  font-size: 12px;
  line-height: 1.65;
}

.footer-bottom p:first-child {
  max-width: 620px;
}

/* ABOUT PAGE - reference-faithful section stack */
.about-page {
  background: #f5fbf0;
}

.about-nav {
  height: 66px;
  background: #1d3b18;
  box-shadow: none;
}

.about-reference {
  width: 100%;
  overflow: hidden;
  background: #f5fbf0;
}

.about-full-crop {
  width: 100%;
  overflow: hidden;
  background: #f5fbf0;
  line-height: 0;
}

.about-full-crop img {
  width: 100%;
  max-width: none;
  height: auto;
  image-rendering: auto;
}

.about-problem-redesign {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 16%, rgba(191,232,216,.16), transparent 34%),
    linear-gradient(145deg, #4e614b 0%, #405543 52%, #354938 100%);
  padding: clamp(78px, 9vw, 118px) 24px clamp(82px, 9vw, 122px);
  color: #f8fff4;
}

.about-problem-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  pointer-events: none;
}

.about-problem-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
}

.about-problem-heading {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.about-problem-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,43,30,.72);
  background: rgba(249,255,243,.72);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 24px;
  margin-bottom: 24px;
}

.about-problem-heading h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 800;
  letter-spacing: -1.9px;
  line-height: 1.1;
}

.about-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-problem-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055)),
    rgba(249,255,243,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(16,31,18,.16);
  padding: 34px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.about-problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(249,255,243,.055);
}

.about-problem-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fff3;
  background: rgba(249,255,243,.11);
  border: 1px solid rgba(249,255,243,.18);
  border-radius: 18px;
  margin-bottom: 72px;
}

.about-problem-card h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.about-problem-card p {
  color: rgba(249,255,243,.78);
  font-size: 17px;
  line-height: 1.55;
}

.about-final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(139,199,176,.22), transparent 34%),
    linear-gradient(180deg, #f9fff3 0%, #f5fbef 100%);
  border-top: 1px solid rgba(4,71,51,.08);
  padding: clamp(88px, 12vw, 156px) 24px clamp(94px, 12vw, 150px);
}

.about-final-cta::before,
.about-final-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.about-final-cta::before {
  width: 520px;
  height: 520px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(4,71,51,.07);
}

.about-final-cta::after {
  width: min(760px, 82vw);
  height: 1px;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(4,71,51,.16), transparent);
}

.about-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-final-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3f5d43;
  background: rgba(139,199,176,.24);
  border: 1px solid rgba(4,71,51,.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  padding: 9px 14px;
  margin-bottom: 24px;
}

.about-final-cta h2 {
  color: #071711;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 800;
  letter-spacing: -2.6px;
  line-height: 1.02;
  margin-bottom: 20px;
}

.about-final-cta p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: #5e7162;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
}

.about-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
  height: 58px;
  padding: 8px 18px 8px 14px;
  border-radius: 14px;
  background: #050605;
  color: #fff;
  box-shadow: 0 16px 32px rgba(4,23,12,.15), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.download-badge:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(4,23,12,.19), inset 0 1px 0 rgba(255,255,255,.16);
}

.download-badge small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.1;
  text-align: left;
}

.download-badge span:last-child {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.2px;
  line-height: 1.05;
  text-align: left;
}

.download-badge-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.about-frame {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 64.8vw, 680px);
  overflow: hidden;
  isolation: isolate;
}

.about-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}

.about-frame:not(.about-frame--hero):not(.about-frame--cta) {
  min-height: auto;
  aspect-ratio: var(--frame-ratio, 1.66);
}

.about-frame:not(.about-frame--hero):not(.about-frame--cta) > img {
  object-fit: contain;
  background: #f5fbf0;
}

.about-frame:nth-of-type(2) { --frame-ratio: 928 / 558; }
.about-frame:nth-of-type(3) { --frame-ratio: 924 / 510; }
.about-frame:nth-of-type(4) { --frame-ratio: 920 / 596; }
.about-frame:nth-of-type(5) { --frame-ratio: 918 / 680; }
.about-frame:nth-of-type(6) { --frame-ratio: 920 / 672; }

.about-frame--hero {
  min-height: calc(clamp(470px, 64vw, 598px) - 66px);
  background: #f5fbf0;
}

.about-frame--hero > img {
  top: -66px;
  height: calc(100% + 66px);
  object-position: center top;
}

.about-hero-copy {
  display: none;
  width: min(78vw, 740px);
  margin-left: clamp(28px, 10.2vw, 122px);
  padding-top: clamp(74px, 11.6vw, 134px);
  color: #1f3d1a;
}

.about-hero-copy h1 {
  font-size: clamp(34px, 4.1vw, 60px);
  line-height: 1.11;
  letter-spacing: -1.6px;
  font-weight: 800;
  margin-bottom: clamp(18px, 2.5vw, 30px);
}

.about-hero-copy p {
  max-width: 720px;
  color: #243426;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.55;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.about-store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-store-row--center {
  justify-content: center;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 116px;
  height: 36px;
  padding: 5px 10px;
  border-radius: 6px;
  background: #050505;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset;
  transition: transform .2s ease, opacity .2s ease;
}

.app-badge:hover {
  opacity: .86;
  transform: translateY(-1px);
}

.app-badge small {
  display: block;
  font-size: 6px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .1px;
  opacity: .88;
}

.app-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #22c55e 50%, #f59e0b);
}

.about-frame--cta {
  min-height: clamp(320px, 44vw, 408px);
  background: #f5fbf0;
}

.about-frame--cta > img {
  object-fit: cover;
}

.about-cta-copy {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 24px;
}

.about-cta-copy h2 {
  color: #050905;
  font-size: clamp(24px, 3.3vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: clamp(74px, 9.4vw, 96px);
}

.about-instagram {
  color: #0b130b;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  margin-bottom: 28px;
}

.about-frame,
.about-hero-copy,
.about-cta-copy {
  animation: aboutFadeIn .45s ease both;
}

@keyframes aboutFadeIn {
  from { opacity: .001; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .how-phone { width: 132px; height: 258px; }
}

@media (max-width: 920px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 72px 24px 96px; }
  .what-section { padding: 72px 24px; }
  .what-inner { grid-template-columns: 1fr; gap: 0; }
  .what-image-col { min-height: 300px; }
  .what-product-img { height: 240px; max-width: 52%; }
  .ingredients-warning-card { width: clamp(260px, 52%, 318px); }
  .bad-bubble { width: 76px; height: 76px; bottom: 10px; }
  .bad-bubble span { font-size: 14px; }
  .bad-seal { width: 38px; height: 38px; }
  .bad-seal::after { inset: 5px; }
  .bad-seal svg { width: 24px; height: 24px; padding: 4px; stroke-width: 4px; }
  .problem-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .solution-alert { display: none; }
  .solution-bad { bottom: -14px; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-arrow { transform: rotate(90deg); margin-top: 0; padding: 4px 0; }
  .who-row { flex-direction: column; align-items: flex-start; padding: 28px 28px; }
  .who-row-visual { width: 100%; height: 160px; }
  .who-row-img { width: 100%; height: 160px; }
  .features-grid { grid-template-columns: 1fr; }
  .ci-logo-grid { grid-template-columns: 1fr; }
  .ci-two-col { grid-template-columns: 1fr; }
  .ci-download { flex-direction: column; text-align: center; }
  .ci-dl-left { flex-direction: column; }
  .pricing-head-cell, .pricing-cell { padding: 18px 20px; }
  .pricing-cta { flex-direction: column; align-items: center; }
  .cta-section { padding: 72px 24px; }
  .pricing-page-main {
    padding: 38px 18px 48px;
  }
  .sub-hero {
    padding-bottom: 34px;
  }
  .pricing-head,
  .pricing-row {
    grid-template-columns: 1.15fr .82fr 1.05fr;
  }
  .pricing-page .pricing-head-cell,
  .pricing-page .pricing-cell {
    padding: 14px 14px;
  }
  .pricing-cell-label {
    gap: 10px;
    font-size: 14px;
  }
  .pricing-cell-icon {
    width: 38px;
    height: 38px;
  }
  .pricing-plan,
  .pricing-cell-val {
    font-size: 17px;
  }
  .pricing-cta {
    gap: 12px;
  }
  .btn-outline,
  .btn-solid {
    width: min(100%, 264px);
  }
  .policy-header {
    padding: 64px 0 44px;
  }
  .policy-doc-header {
    flex-direction: column;
  }
  .policy-date {
    align-self: flex-start;
  }
  .policy-toc-list {
    columns: 1;
  }
  .qa-hero {
    padding: 68px 0 46px;
  }
  .qa-section {
    padding: 38px 0 68px;
  }
  .qa-tabs {
    padding-bottom: 22px;
  }
  .qa-final-cta {
    padding: 72px 20px 80px;
  }
  .site-footer {
    padding: 56px 24px 28px;
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer-brand {
    max-width: 520px;
  }
  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 42px;
  }
  .about-frame {
    min-height: auto;
    aspect-ratio: var(--frame-ratio-mobile, 934 / 598);
  }
  .about-frame > img,
  .about-frame--hero > img,
  .about-frame--cta > img {
    top: 0;
    height: 100%;
    object-fit: contain;
    background: #f5fbf0;
  }
  .about-frame--hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .about-frame--hero > img,
  .about-frame--cta > img {
    position: relative;
    z-index: 0;
  }
  .about-frame--hero .about-hero-copy,
  .about-frame--cta .about-cta-copy {
    position: static;
    width: auto;
    margin: 0;
    padding: 32px 24px;
    background: #f5fbf0;
  }
  .about-frame--hero .about-hero-copy {
    order: -1;
  }
  .about-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -1.2px;
  }
  .about-hero-copy p {
    max-width: 560px;
    font-size: 14px;
  }
  .about-frame--cta {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
  }
  .about-cta-copy h2 {
    margin-bottom: 28px;
  }
  .about-final-cta {
    padding: 78px 20px 88px;
  }
  .about-final-cta::before {
    width: 390px;
    height: 390px;
  }
  .about-problem-grid {
    grid-template-columns: 1fr;
  }
  .about-problem-card {
    min-height: 220px;
  }
  .about-problem-icon {
    margin-bottom: 48px;
  }
}

@media (max-width: 580px) {
  .ci-palette { grid-template-columns: repeat(4,1fr); }
  .ci-headline { font-size: 38px; }
  .pricing-cell-icon { display: none; }
  .pricing-cell { padding: 14px 12px; }
  .pricing-head-cell { padding: 14px 12px; }
  .pricing-page .pricing-cell-icon {
    display: flex;
    width: 32px;
    height: 32px;
  }
  .pricing-page .pricing-cell {
    padding: 12px 9px;
  }
  .pricing-page .pricing-head-cell {
    padding: 12px 9px;
  }
  .pricing-page-main {
    padding-inline: 12px;
  }
  .sub-tag {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .sub-headline {
    font-size: 36px;
    letter-spacing: -1.6px;
  }
  .sub-sub {
    font-size: 16px;
  }
  .pricing-table {
    border-radius: 14px;
  }
  .pricing-head,
  .pricing-row {
    grid-template-columns: 1.18fr .72fr 1fr;
  }
  .pricing-cell-label {
    gap: 8px;
    font-size: 12px;
  }
  .pricing-plan,
  .pricing-cell-val {
    font-size: 14px;
  }
  .pricing-best {
    font-size: 8px;
    padding: 4px 6px;
  }
  .pricing-note {
    font-size: 13px;
  }
  .pricing-cta {
    flex-direction: column;
    align-items: center;
  }
  .btn-outline,
  .btn-solid {
    min-height: 52px;
    font-size: 16px;
    border-radius: 14px;
  }
  .policy-title {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .policy-subtitle {
    font-size: 15px;
  }
  .policy-body {
    padding: 34px 0 62px;
  }
  .policy-doc {
    border-radius: 16px;
  }
  .policy-doc p,
  .policy-list {
    font-size: 14px;
  }
  .policy-h3 {
    font-size: 19px;
  }
  .policy-tabs-wrap {
    top: 66px;
  }
  .policy-tab {
    padding: 10px 14px;
    font-size: 12px;
  }
  .policy-back-top {
    right: 16px;
    bottom: 16px;
  }
  .qa-hero h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .qa-hero p {
    font-size: 15px;
  }
  .qa-search-wrap {
    height: 56px;
    border-radius: 15px;
  }
  .qa-item summary {
    font-size: 15px;
    padding: 19px 18px;
  }
  .qa-item p {
    font-size: 14px;
    padding: 0 18px 20px;
  }
  .qa-final-inner h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }
  .qa-final-inner p {
    font-size: 15px;
  }
  .qa-final-actions {
    flex-direction: column;
    align-items: center;
  }
  .site-footer {
    padding: 48px 20px 26px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-logo img {
    height: 30px;
  }
  .about-final-cta h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .about-final-cta p {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .download-badge {
    width: min(100%, 220px);
    min-width: 0;
  }
  .about-problem-redesign {
    padding: 62px 20px 68px;
  }
  .about-problem-badge {
    font-size: 13px;
    padding: 8px 18px;
  }
  .about-problem-heading h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }
  .about-problem-card {
    border-radius: 18px;
    padding: 26px;
  }
  .about-problem-card h3 {
    font-size: 23px;
  }
  .about-problem-card p {
    font-size: 15px;
  }
  .hero-headline { letter-spacing: -1.5px; }
  .how-phone { width: 140px; height: 272px; }
}

@media print {
  .nav,
  .policy-tabs-wrap,
  .policy-back-top,
  .site-footer {
    display: none !important;
  }

  .policy-page,
  .policy-header,
  .policy-doc {
    background: #fff !important;
    box-shadow: none !important;
  }

  .policy-panel {
    display: block !important;
    page-break-before: always;
  }

  .policy-panel:first-child {
    page-break-before: auto;
  }

  .policy-doc {
    max-width: none;
    border: 0;
    padding: 0;
  }
}
