/* ============================================================
   IRONVIGOR — Arctic Clarity Editorial v2 (PL)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #F4F3EF;
  --surface:    #FFFFFF;
  --surface-2:  #EDF1F6;
  --surface-3:  #E2E8EF;
  --navy:       #1B3A5C;
  --navy-mid:   #24527F;
  --navy-light: #4A7FA5;
  --coral:      #C94B3F;
  --coral-dim:  #A83D33;
  --coral-glow: rgba(201,75,63,.13);
  --sky:        #5B8DB8;
  --sky-pale:   rgba(91,141,184,.12);
  --text:       #18243A;
  --muted:      #546070;
  --dim:        #8A94A6;
  --line:       #D4DBE6;
  --white:      #FFFFFF;
  --warn:       #D97706;

  /* legacy aliases kept for backward compat */
  --black:      var(--navy); --lime: var(--coral); --lime-dim: var(--coral-dim);
  --lime-glow:  var(--coral-glow); --pulse: var(--coral); --pulse-dark: var(--coral-dim);
  --teal: var(--navy); --teal-pale: rgba(27,58,92,.08); --ice: var(--surface);
  --ice-deep: var(--surface-2); --ink: var(--text); --mid: var(--muted);
  --light: var(--dim); --border: var(--line); --dark: var(--muted);
  --charcoal: var(--text); --green: var(--navy); --green-mid: var(--navy-mid);
  --green-pale: rgba(27,58,92,.1); --red: var(--coral); --red-mid: var(--coral-dim);
  --jade: var(--navy); --jade-light: var(--navy-light); --jade-deep: var(--navy);
  --jade-pale: rgba(27,58,92,.08); --terra: var(--coral); --terra-dark: var(--coral-dim);
  --sand: var(--bg); --sand-deep: var(--surface-2); --gold: var(--coral);
  --gold-pale: var(--coral-glow); --cream: var(--bg); --cream-deep: var(--surface-2);
  --accent: var(--coral); --amber: var(--warn); --amber-pale: rgba(217,119,6,.1);

  --shadow-xs:  0 1px 4px rgba(27,58,92,.05);
  --shadow-sm:  0 2px 12px rgba(27,58,92,.07);
  --shadow-md:  0 8px 28px rgba(27,58,92,.11);
  --shadow-lg:  0 20px 56px rgba(27,58,92,.13);
  --shadow-xl:  0 32px 80px rgba(27,58,92,.16);
  --shadow-brutal: var(--shadow-md);
  --shadow-brutal-sm: var(--shadow-sm);
  --shadow-brutal-dark: var(--shadow-md);

  --max-w:   1240px;
  --display: 'Playfair Display', Georgia, serif;
  --sans:    'Plus Jakarta Sans', system-ui, sans-serif;
  --serif:   var(--display);
  --r:       14px;
  --r-lg:    24px;
  --r-xl:    32px;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 116px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all .2s ease; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.sec { padding: 104px 0; }
.sec-sm { padding: 64px 0; }

h1, h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--navy);
  text-transform: none;
}
h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.1rem; }
p  { color: var(--muted); margin-bottom: 1rem; line-height: 1.72; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--coral); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), rgba(201,75,63,.3));
  border-radius: 2px;
}
.lead { font-size: 1.08rem; color: var(--muted); line-height: 1.78; }

/* ── Section heading accent ──────────────────────────────── */
.sec-head h2, .faq-head h2, .steps-head h2 {
  position: relative;
  display: inline-block;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
  border-radius: 999px;
  padding: 15px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(27,58,92,.25);
}
.btn-dark:hover { background: var(--navy-mid); box-shadow: 0 8px 28px rgba(27,58,92,.3); color: var(--white); }

.btn-green {
  background: linear-gradient(135deg, var(--coral), #E05A4E);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,75,63,.3);
}
.btn-green:hover { box-shadow: 0 8px 28px rgba(201,75,63,.4); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(27,58,92,.25);
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--navy); background: rgba(27,58,92,.05); box-shadow: var(--shadow-sm); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: none;
  padding: 0;
  font-size: .88rem;
  font-weight: 700;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.btn-ghost::before { display: none; }
.btn-ghost::after { content: ' →'; position: static; background: none; opacity: 1; transition: transform .2s; }
.btn-ghost:hover { transform: none; color: var(--coral); background: transparent; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--surface-2); }

/* ── Ad disclosure ───────────────────────────────────────── */
.ad-disclosure {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  min-height: 32px;
}
.ad-disclosure strong { font-weight: 700; color: var(--white); }
.ad-disclosure .ad-disclosure-sep { opacity: .3; }
.ad-disclosure .ad-disclosure-sub { font-weight: 500; letter-spacing: .04em; text-transform: none; opacity: .65; }

.scroll-progress {
  position: fixed;
  top: 32px; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), #E88A45, var(--sky));
  z-index: 401;
  border-radius: 0 2px 2px 0;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 300;
  background: rgba(244,243,239,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,219,230,.6);
  transition: all .3s ease;
}
.site-header.solid {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 24px rgba(27,58,92,.08);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.025em;
}
.logo span { color: var(--coral); }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(27,58,92,.2);
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; fill: none; stroke: var(--white); stroke-width: 2; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a:not(.btn) {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:not(.btn):hover { color: var(--navy); }
.main-nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav-btn { padding: 10px 22px; font-size: .82rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 20px 40px 32px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(201,75,63,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(27,58,92,.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-noir-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 56px 40px 0;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-noir-content { position: relative; }

.hero-noir-content::before {
  content: 'IV';
  position: absolute;
  top: -30px;
  right: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 15vw, 11rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(27,58,92,.06);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-glow);
  padding: 9px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(201,75,63,.2);
  border-radius: 999px;
}
.hero-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 28px;
  max-width: 620px;
}
.hero h1 em { color: var(--coral); }
.hero .lead { max-width: 520px; margin-bottom: 40px; font-size: 1.1rem; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-noir-visual { position: relative; z-index: 1; }

.hero-frame {
  position: relative;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero-frame:hover img { transform: scale(1.03); }
.hero-frame-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 50%;
  height: 38%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: .2;
}

/* floating badge on hero image */
.hero-frame::after {
  content: 'Polska';
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.hero-stats-bar {
  border-top: 1px solid var(--line);
  background: var(--surface);
  margin-top: auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 -1px 0 var(--line);
}
.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--surface-2); }
.hero-stat strong {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-stat span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero-inner, .hero-left, .hero-right, .hero-bg, .hero-overlay,
.hero-numbers, .hero-num-item, .hero-right-badge, .hero-pill { display: none !important; }

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.06); }
.trust-item svg { width: 22px; stroke: var(--coral); fill: none; flex-shrink: 0; margin-top: 1px; stroke-width: 1.8; }
.trust-item span { font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.88); line-height: 1.45; }

/* ── Callout ─────────────────────────────────────────────── */
.callout-strip {
  background: var(--surface);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.callout-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--coral), var(--sky));
}
.callout-strip::after {
  content: '"';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 14rem;
  line-height: 1;
  color: rgba(27,58,92,.04);
  pointer-events: none;
  user-select: none;
}
.callout-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px 0 56px;
  position: relative;
  z-index: 1;
}
.callout-inner blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.callout-cite {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── Foods editorial ─────────────────────────────────────── */
.ingredients-sec {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.ingredients-sec .sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.ingr-list { display: flex; flex-direction: column; }
.ingr-grid, .ingr-editorial { display: flex; flex-direction: column; gap: 20px; }

.ingr-row {
  display: grid;
  grid-template-columns: 72px 320px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
  box-shadow: var(--shadow-xs);
}
.ingr-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ingr-row:nth-child(even) { grid-template-columns: 72px 1fr 320px; }
.ingr-row:nth-child(even) .ingr-img { order: 3; }
.ingr-row:nth-child(even) .ingr-body { order: 2; }

.ingr-num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 12px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--bg));
  position: relative;
}
.ingr-num::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 3px;
  background: var(--coral);
  opacity: 0;
  transition: opacity .2s;
}
.ingr-row:hover .ingr-num::after { opacity: 1; }
.ingr-num span {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -.03em;
  line-height: 1;
}

.ingr-img {
  overflow: hidden;
  min-height: 240px;
  border-right: 1px solid var(--line);
  position: relative;
}
.ingr-row:nth-child(even) .ingr-img { border-right: none; border-left: 1px solid var(--line); }
.ingr-img img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.ingr-row:hover .ingr-img img { transform: scale(1.06); }

.ingr-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ingr-body h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.ingr-body .lead { font-size: .93rem; margin-bottom: 20px; }
.ingr-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ingr-pill {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy-mid);
  background: var(--sky-pale);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(91,141,184,.2);
}

/* ── Audience ────────────────────────────────────────────── */
.audience-sec {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.audience-head { margin-bottom: 52px; max-width: 640px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sky));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transition: opacity .25s;
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.audience-card:hover::before { opacity: 1; }
.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27,58,92,.1), rgba(91,141,184,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.audience-icon svg { width: 26px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.audience-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.1rem; }
.audience-card p { font-size: .9rem; margin: 0; line-height: 1.65; }

/* ── Steps ───────────────────────────────────────────────── */
.steps-sec {
  background: linear-gradient(150deg, var(--navy) 0%, #1e4470 50%, var(--navy-mid) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.steps-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.steps-head { margin-bottom: 52px; position: relative; z-index: 1; }
.steps-head .label { color: var(--coral); }
.steps-head .label::before { background: linear-gradient(90deg, var(--coral), rgba(201,75,63,.3)); }
.steps-head h2 { color: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: background .2s, transform .25s;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,75,63,.15) 0%, transparent 70%);
  pointer-events: none;
}
.step-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.step-num {
  display: block;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -.03em;
}
.step-icon { display: none; }
.step-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 14px; }
.step-card p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.72; }

/* ── Tips ────────────────────────────────────────────────── */
.tips-sec {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.tips-head { margin-bottom: 52px; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.tip-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--coral), var(--sky));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .25s;
}
.tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tip-card:hover::before { opacity: 1; }
.tip-num {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
  opacity: .6;
  margin-bottom: 14px;
  line-height: 1;
}
.tip-card h3 { font-size: .95rem; margin-bottom: 10px; }
.tip-card p { font-size: .88rem; margin: 0; line-height: 1.65; }

/* ── Stat callout ────────────────────────────────────────── */
.stat-callout {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.stat-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-callout-main { display: flex; align-items: center; gap: 36px; }
.stat-big {
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), #E88A45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -.04em;
}
.stat-callout-text h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.stat-callout-text p { font-size: .92rem; max-width: 420px; margin: 0; }

/* ── Product ─────────────────────────────────────────────── */
.product-sec {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.product-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  background: var(--surface);
}

.product-photo {
  position: relative;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 60%, rgba(201,75,63,.04) 100%);
  border-right: 1px solid var(--line);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-photo-inner {
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  border: 1px solid var(--line);
}
.product-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .4s ease;
}
.product-photo:hover .product-photo-inner img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.product-badge strong {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.product-badge span {
  font-size: .65rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.product-text {
  padding: 52px;
}
.product-text h2 { margin-bottom: 16px; }
.product-text .lead { margin-bottom: 18px; }
.product-text > p { margin-bottom: 26px; }

.product-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(201,75,63,.06), rgba(201,75,63,.02));
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,75,63,.18);
  position: relative;
  overflow: hidden;
}
.product-price::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--coral), #E88A45);
  border-radius: 4px 0 0 4px;
}
.price-amount {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -.02em;
  line-height: 1;
}
.price-note {
  font-size: .82rem;
  color: var(--dim);
  font-weight: 500;
}

.ingr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.ingr-tags a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all .2s;
}
.ingr-tags a:hover { border-color: var(--navy); background: rgba(27,58,92,.07); }

.product-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.proof-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s;
}
.proof-card:hover { box-shadow: var(--shadow-sm); }
.proof-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-card-icon svg { width: 18px; stroke: var(--white); fill: none; }
.proof-card-text strong { font-size: .8rem; color: var(--navy); display: block; font-weight: 700; }
.proof-card-text span { font-size: .72rem; color: var(--dim); }

.feat-list { margin-bottom: 28px; border-top: 1px solid var(--line); }
.feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.feat-item:hover { color: var(--text); }
.feat-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #E88A45);
  flex-shrink: 0;
}

.product-note {
  font-size: .82rem;
  color: var(--muted);
  border: 1px solid rgba(217,119,6,.25);
  border-left: 4px solid var(--warn);
  background: var(--amber-pale);
  padding: 16px 20px;
  border-radius: var(--r);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── Usage & Composition ─────────────────────────────────── */
.usage-sec {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.usage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.usage-steps { list-style: none; }
.usage-steps li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.usage-steps li:last-child { border-bottom: none; }
.usage-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(27,58,92,.2);
}
.usage-step-text strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: .96rem; }
.usage-step-text span { font-size: .88rem; color: var(--muted); }

.composition-sec { background: var(--bg); border-bottom: 1px solid var(--line); }
.composition-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.comp-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.comp-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sky));
  opacity: 0;
  transition: opacity .2s;
}
.comp-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.comp-item:hover::after { opacity: 1; }
.comp-item strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.comp-item span { font-size: .76rem; color: var(--dim); }
.composition-note {
  font-size: .85rem;
  color: var(--dim);
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-sec { background: var(--surface-2); border-bottom: 1px solid var(--line); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-aside {
  background: linear-gradient(160deg, var(--navy) 0%, #1a4472 100%);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,75,63,.2) 0%, transparent 65%);
  pointer-events: none;
}
.contact-aside .label { color: var(--coral); }
.contact-aside .label::before { background: linear-gradient(90deg, var(--coral), rgba(201,75,63,.3)); }
.contact-aside h2 { color: var(--white); margin-bottom: 18px; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.contact-aside .lead { color: rgba(255,255,255,.72); margin-bottom: 36px; }

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
}
.contact-info-list li:first-child { border-top: 1px solid rgba(255,255,255,.1); }

.ci-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.contact-info-list li:hover .ci-icon { background: rgba(255,255,255,.14); }
.ci-icon svg { width: 18px; stroke: var(--coral); fill: none; }
.ci-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 5px;
}
.ci-val { font-size: .94rem; color: var(--white); }
.ci-val a { color: var(--white); }
.ci-val a:hover { color: var(--coral); }

.contact-form-box {
  background: var(--surface);
  padding: 52px 48px;
}
.contact-form-box h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.3rem; }
.contact-form-box .sub { font-size: .86rem; color: var(--dim); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: .96rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  transition: all .18s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27,58,92,.08);
  background: var(--white);
}
.form-group textarea { min-height: 126px; resize: vertical; }

.btn-submit { width: 100%; justify-content: center; font-size: .9rem; padding: 17px 32px; }
.form-note { font-size: .76rem; color: var(--dim); margin-top: 16px; text-align: center; line-height: 1.55; }
.form-note a { color: var(--navy); font-weight: 700; }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(27,58,92,.06);
  border: 1px solid rgba(27,58,92,.18);
  border-left: 4px solid var(--navy);
  border-radius: var(--r);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { background: var(--bg); }
.faq-head { margin-bottom: 48px; }
.faq-list { max-width: 100%; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s;
}
.faq-item.open {
  border-color: rgba(27,58,92,.25);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .15s;
}
.faq-question:hover { color: var(--coral); }

.faq-icon {
  width: 34px; height: 34px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .22s;
  background: var(--bg);
}
.faq-icon svg { width: 13px; stroke: var(--muted); fill: none; }
.faq-item.open .faq-icon {
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(201,75,63,.25);
}
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-item.open .faq-question { color: var(--coral); }

.faq-answer { display: none; padding: 0 32px 28px; }
.faq-answer p { font-size: .92rem; line-height: 1.78; margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ── Disclaimer ──────────────────────────────────────────── */
.disclaimer {
  background: var(--surface-2);
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.disclaimer p {
  font-size: .79rem;
  line-height: 1.78;
  color: var(--dim);
  text-align: center;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}
.disclaimer strong { color: var(--text); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, var(--navy) 0%, #162d47 100%);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-brand .logo { color: var(--white); margin-bottom: 18px; }
.foot-brand .logo span { color: var(--coral); }
.foot-brand .logo-mark { background: rgba(255,255,255,.1); box-shadow: none; }
.foot-brand p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.72; max-width: 300px; }

.foot-col h5 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { font-size: .86rem; color: rgba(255,255,255,.6); }
.foot-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .79rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }

/* ── Legal pages ─────────────────────────────────────────── */
.pg-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 132px 0 64px;
  position: relative;
  overflow: hidden;
}
.pg-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.pg-hero .crumb { font-size: .78rem; letter-spacing: .05em; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.pg-hero .crumb a { color: rgba(255,255,255,.75); }
.pg-hero .crumb a:hover { color: var(--white); }
.pg-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.5vw, 3.1rem); margin-bottom: 14px; }
.pg-hero p { color: rgba(255,255,255,.72); margin: 0; }
.pg-bar { width: 64px; height: 4px; background: linear-gradient(90deg, var(--coral), #E88A45); margin-top: 28px; border-radius: 4px; }

.content-sec { padding: 72px 0 104px; background: var(--bg); }
.content-body { max-width: 740px; }
.content-body h2 {
  font-size: 1.3rem;
  margin: 44px 0 16px;
  color: var(--navy);
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 1.1rem; }
.content-body ul { margin: 0 0 1.1rem 20px; }
.content-body li { margin-bottom: 10px; color: var(--muted); }
.content-body a { color: var(--navy); font-weight: 600; border-bottom: 1px solid rgba(27,58,92,.2); }
.content-body a:hover { color: var(--coral); border-bottom-color: var(--coral); }

.info-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin-top: 44px;
  box-shadow: var(--shadow-sm);
}
.info-box h3 { margin-bottom: 16px; font-size: 1.05rem; color: var(--navy); }
.info-box p { margin-bottom: 10px; font-size: .92rem; }
.info-box a { color: var(--navy); border-bottom: 1px solid rgba(27,58,92,.2); }

.page-hero, .contact-info-card, .contact-page-grid { display: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .container { padding: 0 28px; }
  .header-inner { padding: 0 28px; }
  .hero-noir-grid { grid-template-columns: 1fr; padding-top: 40px; padding-left: 28px; padding-right: 28px; }
  .hero-noir-visual { max-width: 500px; margin: 0 auto; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat { border-bottom: 1px solid var(--line); }
  .ingr-row, .ingr-row:nth-child(even) {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .ingr-row .ingr-img, .ingr-row:nth-child(even) .ingr-img {
    grid-column: 1 / -1;
    order: 0;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--line);
  }
  .ingr-row .ingr-body, .ingr-row:nth-child(even) .ingr-body { grid-column: 2; order: 1; }
  .ingr-row .ingr-num, .ingr-row:nth-child(even) .ingr-num { grid-row: 2; order: 1; }
  .product-wrap { grid-template-columns: 1fr; }
  .product-photo { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .composition-grid { grid-template-columns: repeat(3, 1fr); }
  .usage-wrap { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .ingredients-sec .sec-head { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-aside { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .product-proof { grid-template-columns: 1fr; }
  .stat-callout-inner { flex-direction: column; align-items: flex-start; }
  .stat-callout-main { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tips-grid { grid-template-columns: 1fr; }
  .composition-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .mobile-nav { padding: 20px 20px 32px; }
  .hero-noir-grid { padding: 28px 20px 0; gap: 36px; }
  .hero-stats-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .hero-stat { border-right: none; }
  .sec { padding: 72px 0; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .ingr-row, .ingr-row:nth-child(even) { grid-template-columns: 1fr; }
  .ingr-num { border-right: none; border-bottom: 1px solid var(--line); padding: 20px; }
  .ingr-body { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box, .contact-aside { padding: 36px 28px; }
  .product-text { padding: 36px 28px; }
  .product-photo { padding: 32px 28px; }
  .composition-grid { grid-template-columns: 1fr; }
  .callout-inner { padding: 0 28px 0 40px; }
}

@media (max-width: 480px) {
  .ad-disclosure .ad-disclosure-sub { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .product-photo-inner { aspect-ratio: 1; }
  .price-amount { font-size: 2.2rem; }
  .hero-frame::after { display: none; }
}
