/* =========================================================
   Prostalis · Beautona — Landing styles
   Architecture: BEM + utility helpers
   Palette: light backgrounds + saturated + dark blue accents
   ========================================================= */

:root{
  --brand:           #0b2a5b;
  --brand-alt:       #143a7a;
  --brand-deep:      #061a3c;
  --highlight:       #1e7bd8;
  --highlight-soft:  #7cc4ff;
  --accent-glow:     #2a9df4;

  --ink:             #0e1a30;
  --ink-soft:        #43526b;
  --ink-mute:        #7a8699;

  --bg:              #ffffff;
  --bg-soft:         #f4f7fc;
  --bg-tint:         #e9f1fb;
  --bg-deep:         #0b2a5b;

  --line:            #d8e2f1;
  --line-soft:       #ecf1f9;

  --ok:              #1eaf6a;
  --warn:            #f0b500;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-1: 0 2px 8px rgba(11, 42, 91, .06);
  --shadow-2: 0 12px 30px rgba(11, 42, 91, .10);
  --shadow-3: 0 24px 60px rgba(11, 42, 91, .18);

  --maxw: 1180px;
  --gap-1: 8px;
  --gap-2: 14px;
  --gap-3: 22px;
  --gap-4: 32px;
  --gap-5: 48px;
  --gap-6: 72px;

  --t-fast: .18s ease;
  --t-base: .28s cubic-bezier(.2,.7,.2,1);

  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body:    "Inter",    system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Base reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--highlight);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--brand); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout shell ---------- */
.shell{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Section heads ---------- */
.section-head{
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--gap-5);
}
.section-head__title{
  font-size: clamp(1.6rem, 2.4vw + .8rem, 2.4rem);
  font-weight: 700;
  margin-bottom: .4em;
}
.section-head__lead{
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.eyebrow{
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: var(--bg-tint);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 14px;
}
.eyebrow--center{ display: inline-block; }

.hl{
  background: linear-gradient(120deg, var(--highlight), var(--brand));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn{
  --btn-bg: var(--brand);
  --btn-fg: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  transition:
    transform var(--t-fast),
    background var(--t-fast),
    box-shadow var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast);
  box-shadow: var(--shadow-1);
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active{ transform: translateY(0); }

.btn--primary{
  background: linear-gradient(135deg, var(--highlight) 0%, var(--brand) 100%);
  color: #fff;
}
.btn--primary:hover{ color: #fff; background: linear-gradient(135deg, var(--accent-glow), var(--brand-alt)); }

.btn--ghost{
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover{ background: var(--brand); color: #fff; }

.btn--large{ padding: 17px 30px; font-size: 1.05rem; }
.btn--small{ padding: 10px 16px; font-size: .88rem; }
.btn--block{ width: 100%; }

/* ============ HEADER ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .shell{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark{ display: inline-flex; }
.brand__name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--brand), var(--highlight));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.nav{ display: flex; align-items: center; gap: 28px; }
.nav__link{
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .96rem;
  position: relative;
}
.nav__link:hover{ color: var(--brand); }
.nav__link--cta{
  background: var(--brand);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.nav__link--cta:hover{ background: var(--highlight); color:#fff; }

.burger{
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.burger span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--line-soft);
  padding: 12px 22px 22px;
}
.mobile-nav a{
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.mobile-nav__cta{
  margin-top: 10px;
  background: var(--brand);
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-pill);
  border-bottom: 0 !important;
}
.mobile-nav.is-open{ display: flex; }

/* ============ HERO ============ */
.hero{
  position: relative;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(30,123,216,.18), transparent 60%),
    linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%);
  padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--gap-5);
  align-items: center;
}
.hero__title{
  font-size: clamp(2rem, 3.4vw + .6rem, 3.4rem);
  font-weight: 800;
  margin-bottom: .35em;
}
.hero__lead{
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 540px;
}
.hero__ctas{ display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 28px; }

.hero__points{ display: flex; flex-wrap: wrap; gap: 18px 28px; color: var(--ink-soft); }
.hero__points li{ display: flex; align-items: center; gap: 10px; font-size: .96rem; }
.dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--brand));
  box-shadow: 0 0 0 4px rgba(30,123,216,.12);
}

.hero__media{ position: relative; }
.hero__figure{
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.hero__figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__chip{
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(11, 42, 91, .92);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: grid;
  font-family: var(--font-display);
  backdrop-filter: blur(4px);
}
.hero__chip strong{ font-size: 1rem; font-weight: 700; }
.hero__chip em{ font-style: normal; font-size: .8rem; color: var(--highlight-soft); }

/* ============ TRUST STRIP ============ */
.trust-strip{
  background: var(--bg-deep);
  color: #eaf2fb;
}
.trust-strip__row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 26px 22px;
}
.trust-strip__cell{
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--highlight-soft);
}
.trust-strip__cell p{ margin: 0; line-height: 1.3; }
.trust-strip__cell strong{ display:block; color:#fff; font-family: var(--font-display); font-size: .98rem; }
.trust-strip__cell span{ color: rgba(234,242,251,.7); font-size: .85rem; }

/* ============ FOR WHOM ============ */
.for-whom{
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
}
.for-whom__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-4);
}
.who-card{
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.who-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-2); }
.who-card__media{ margin: 0; aspect-ratio: 16 / 9; overflow: hidden; }
.who-card__media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.who-card:hover .who-card__media img{ transform: scale(1.05); }
.who-card__body{ padding: 26px 28px 30px; }
.who-card__body h3{ font-size: 1.3rem; margin-bottom: .35em; }
.who-card__body p{ color: var(--ink-soft); margin: 0; }
.who-card--alt{ background: var(--bg-tint); }

/* ============ PILLARS (3 equal cards) ============ */
.pillars{
  padding: clamp(56px, 7vw, 96px) 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.pillars__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.pillar{
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  height: 100%;
}
.pillar:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-color: var(--highlight-soft);
}
.pillar__media{
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-tint);
}
.pillar__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.pillar:hover .pillar__media img{ transform: scale(1.06); }
.pillar__body{
  display: flex;
  flex-direction: column;
  padding: 26px 26px 28px;
  flex: 1 1 auto;
}
.pillar__title{
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .4em;
  color: var(--brand);
}
.pillar__text{
  color: var(--ink-soft);
  margin: 0;
  font-size: .98rem;
}

/* ============ PRODUCT ============ */
.product{
  padding: clamp(56px, 7vw, 100px) 0;
  background:
    radial-gradient(900px 400px at 10% 100%, rgba(30,123,216,.10), transparent 60%),
    #ffffff;
}
.product__grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--gap-5);
  align-items: center;
}
.product__media{
  background:
    radial-gradient(closest-side, var(--bg-tint), transparent 70%),
    var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
}
.product__media img{
  max-width: 360px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 30px rgba(11,42,91,.18));
}
.product__title{
  font-size: clamp(1.5rem, 2vw + .6rem, 2.1rem);
  font-weight: 700;
  margin-bottom: .4em;
}
.product__lead{ color: var(--ink-soft); }
.product__features{
  margin: 22px 0 28px;
  display: grid;
  gap: 14px;
}
.product__features li{
  display: flex; gap: 12px;
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: .96rem;
  color: var(--ink-soft);
}
.product__features strong{ color: var(--ink); font-family: var(--font-display); }

.ico{
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--brand));
  flex-shrink: 0;
  position: relative;
}
.ico--check::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 11px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-1px) rotate(-45deg);
}

.product__buy{
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(30,123,216,.08), rgba(11,42,91,.04));
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}
.product__price{ display: flex; flex-direction: column; }
.product__price-label{ font-size: .82rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .1em; }
.product__price-value{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
}
.product__price-note{ font-size: .82rem; color: var(--ink-soft); }

/* ============ ROUTINE ============ */
.routine{
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-deep);
  color: #eaf2fb;
}
.routine .section-head__title{ color: #fff; }
.routine .eyebrow{ background: rgba(255,255,255,.08); color: var(--highlight-soft); }

.routine__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.routine__step{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
}
.routine__num{
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--highlight-soft);
  display: block;
  margin-bottom: 10px;
}
.routine__step h3{ color: #fff; font-size: 1.15rem; margin-bottom: .4em; }
.routine__step p{ color: rgba(234,242,251,.78); margin: 0; font-size: .96rem; }

/* ============ REVIEWS ============ */
.reviews{
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
}
.reviews__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review{
  background: var(--bg-soft);
  border-left: 4px solid var(--highlight);
  border-radius: var(--radius-md);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-1);
}
.review__head{ display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review__avatar{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--highlight));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
}
.review__head strong{ display:block; font-family: var(--font-display); color: var(--ink); }
.review__head em{ font-style: normal; color: var(--ink-mute); font-size: .85rem; }
.review__text{ color: var(--ink-soft); font-size: .98rem; }
.review__stars{ color: #f5b524; letter-spacing: 2px; }

/* ============ CONFIDENCE / TRUST ============ */
.confidence{
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-soft);
}
.confidence__row{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap-5);
  align-items: center;
}
.confidence__title{
  font-size: clamp(1.5rem, 2vw + .6rem, 2rem);
  font-weight: 700;
  margin-bottom: .4em;
}
.confidence__list{ display: grid; gap: 10px; margin-top: 10px; }
.confidence__list li{
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
}
.confidence__list li::before{
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--brand));
}
.confidence__card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-1);
}
.confidence__card h3{ color: var(--brand); font-size: 1.4rem; margin-bottom: .5em; }
.confidence__line{ color: var(--ink-soft); margin: 0 0 12px; font-size: .96rem; }

/* ============ FAQ ============ */
.faq{
  padding: clamp(56px, 7vw, 96px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.faq__list{
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq__item{
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq__item[open]{ border-color: var(--highlight-soft); box-shadow: var(--shadow-2); }
.faq__item summary{
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item summary::after{
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq__item[open] summary::after{ transform: rotate(-135deg); }
.faq__body{
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: .98rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

/* ============ ORDER FORM ============ */
.order{
  padding: clamp(56px, 7vw, 100px) 0;
  background:
    radial-gradient(800px 380px at 100% 0%, rgba(30,123,216,.18), transparent 60%),
    var(--bg-deep);
  color: #eaf2fb;
}
.order .eyebrow{
  background: rgba(255,255,255,.08);
  color: var(--highlight-soft);
}
.order__grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-5);
  align-items: start;
}
.order__title{
  font-size: clamp(1.6rem, 2.2vw + .6rem, 2.4rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: .4em;
}
.order__lead{ color: rgba(234,242,251,.85); }
.order__perks{ display: grid; gap: 8px; margin: 18px 0 0; }
.order__perks li{
  position: relative;
  padding-left: 24px;
  color: rgba(234,242,251,.92);
}
.order__perks li::before{
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--highlight-soft);
  font-weight: 800;
}

.order__form{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
  color: var(--ink);
  box-shadow: var(--shadow-3);
  display: grid;
  gap: 14px;
}

.field{ display: grid; gap: 6px; }
.field label{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 0 0 4px rgba(30,123,216,.15);
}
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--ink-soft);
}
.check input{ margin-top: 4px; }

.order__legal{
  font-size: .82rem;
  color: var(--ink-mute);
  margin: 0;
}

/* ============ FOOTER ============ */
.site-footer{
  background: var(--brand-deep);
  color: #c9d6ec;
  padding: 56px 0 0;
}
.site-footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.site-footer h4{
  color: #fff;
  font-size: 1rem;
  margin-bottom: .6em;
}
.site-footer p{ color: #b6c5e1; margin: 0 0 6px; line-height: 1.6; }
.site-footer a{ color: #ffffff; }
.site-footer a:hover{ color: var(--highlight-soft); }
.brand--footer .brand__name{
  background: linear-gradient(120deg, #fff, var(--highlight-soft));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* Address — clean, semantic, no awkward wraps */
.footer-address{
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #b6c5e1;
  line-height: 1.55;
  font-size: .94rem;
  /* prevent ugly mid-word breaks but allow the line to wrap if absolutely needed */
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}
.footer-address__name{
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-address__line{
  display: block;
}

.legal-links{ display: grid; gap: 6px; }
.legal-links a{ font-size: .94rem; }

.site-footer__bottom{
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 22px 30px;
  font-size: .85rem;
}
.site-footer__bottom p{ margin: 0; color: #99accc; }
.site-footer__disclaimer{ font-style: italic; }

/* ============ COOKIE BANNER ============ */
.cookie-banner{
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 90;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3);
  padding: 18px 20px;
  transform: translateY(160%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
}
.cookie-banner.is-visible{
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner{
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text{ flex: 1 1 380px; min-width: 260px; }
.cookie-banner__text strong{ display: block; font-family: var(--font-display); margin-bottom: 4px; }
.cookie-banner__text p{ margin: 0; font-size: .9rem; color: var(--ink-soft); }
.cookie-banner__actions{ display: flex; gap: 10px; flex-wrap: wrap; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .nav{ display: none; }
  .burger{ display: flex; }

  .hero__grid{ grid-template-columns: 1fr; gap: var(--gap-4); }
  .hero__figure{ aspect-ratio: 4 / 3; }

  .product__grid{ grid-template-columns: 1fr; }
  .product__media{ order: -1; }

  .for-whom__grid{ grid-template-columns: 1fr; }
  .pillars__grid{ grid-template-columns: 1fr; }

  .routine__list{ grid-template-columns: 1fr; }

  .reviews__grid{ grid-template-columns: 1fr; }

  .confidence__row{ grid-template-columns: 1fr; }

  .order__grid{ grid-template-columns: 1fr; }

  .trust-strip__row{ grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .site-footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .shell{ padding: 0 16px; }
  .hero{ padding: 30px 0 50px; }
  .hero__ctas .btn{ flex: 1 1 100%; }
  .product__buy{ flex-direction: column; align-items: stretch; }
  .product__buy .btn{ width: 100%; }
  .field-row{ grid-template-columns: 1fr; }
  .trust-strip__row{ grid-template-columns: 1fr; }
  .site-footer__grid{ grid-template-columns: 1fr; }
  .cookie-banner__actions .btn{ flex: 1 1 100%; }
}

/* Print fallback */
@media print {
  .site-header, .cookie-banner, .order__form, .nav, .burger { display: none !important; }
}
