/* =========================================================
   Multirin Complex – css/style.css
   Brand: Oriwell · Visual mood: Soft blue/teal trust
   Typography: Lexend (headings) + Mulish (body)
   Architecture: BEM + utility helpers
   ========================================================= */

/* ── CSS Custom Properties ── */
:root {
  --brand-primary:    #1A6EC7;
  --brand-secondary:  #4DBDBD;
  --brand-light:      #E8F5FF;
  --brand-lighter:    #F3FAFF;
  --brand-cta:        #E8630A;
  --brand-cta-hover:  #C95508;
  --brand-cta-light:  #FFF1EA;
  --brand-teal-light: #E0F7F6;

  --bg-page:          #F6FBFF;
  --bg-white:         #FFFFFF;
  --bg-card:          #EEF7FF;
  --bg-soft:          #F0F9FF;
  --bg-dark:          #0F2340;
  --bg-foot:          #112038;

  --text-dark:        #152B45;
  --text-body:        #3A5570;
  --text-muted:       #7593AD;
  --text-light:       #A8BFCF;

  --border-soft:      #C8E4F7;
  --border-card:      #D6ECF9;
  --shadow-card:      0 4px 24px rgba(26,110,199,0.08);
  --shadow-card-hover:0 8px 40px rgba(26,110,199,0.16);
  --shadow-float:     0 12px 48px rgba(26,110,199,0.18);

  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --radius-xl:        36px;
  --radius-pill:      999px;

  --transition-base:  all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  all 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max:    1220px;
  --container-pad:    clamp(16px, 4vw, 48px);

  --ff-head:          'Lexend', sans-serif;
  --ff-body:          'Mulish', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.72;
  color: var(--text-body);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover { color: var(--brand-secondary); text-decoration: underline; }

ul { list-style: none; }

address { font-style: normal; }

/* ── Shared Utility Classes ── */
.section-label {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand-secondary);
  background: var(--brand-teal-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Button System ── */
.btn--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--cta {
  background: var(--brand-cta);
  color: white;
  border-color: var(--brand-cta);
  box-shadow: 0 4px 20px rgba(232,99,10,0.28);
}

.btn--cta:hover {
  background: var(--brand-cta-hover);
  border-color: var(--brand-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,99,10,0.36);
  color: white;
  text-decoration: none;
}

.btn--cta:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn--outline:hover {
  background: var(--brand-light);
  color: var(--brand-primary);
  text-decoration: none;
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up--delay {
  transition-delay: 0.18s;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section .section-title,
.reveal-section .section-sub,
.reveal-section .section-label {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section.is-visible .section-title,
.reveal-section.is-visible .section-sub,
.reveal-section.is-visible .section-label {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .section-sub  { transition-delay: 0.1s; }
.reveal-section.is-visible .section-title { transition-delay: 0.06s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Container ── */
.pg-header__inner,
.hero-section__container,
.trust-strip__container,
.audience-section__container,
.benefit-grid__container,
.product-showcase__container,
.routine-flow__container,
.social-proof__container,
.order-panel__container,
.faq-section__container,
.reach-us__container,
.disclaimer-strip__container,
.site-foot__container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.ck-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: white;
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -4px 32px rgba(26,110,199,0.12);
  padding: 20px 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.ck-banner.is-hidden {
  transform: translateY(110%);
  pointer-events: none;
}

.ck-banner__wrap {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ck-banner__text { flex: 1; min-width: 260px; }

.ck-banner__headline {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ck-banner__body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.ck-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.ck-banner__btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-base);
  white-space: nowrap;
}

.ck-banner__btn--fill {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.ck-banner__btn--fill:hover {
  background: #155DB0;
  border-color: #155DB0;
}

.ck-banner__btn--outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.ck-banner__btn--outline:hover { background: var(--brand-light); }

.ck-banner__btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-soft);
}

.ck-banner__btn--ghost:hover {
  background: var(--bg-soft);
  color: var(--text-dark);
}

/* Cookie Modal */
.ck-modal { position: fixed; inset: 0; z-index: 9100; display: flex; align-items: center; justify-content: center; }

.ck-modal[hidden] { display: none; }

.ck-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,35,64,0.55);
  backdrop-filter: blur(4px);
}

.ck-modal__box {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  width: min(540px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(15,35,64,0.22);
}

.ck-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.ck-modal__close:hover { background: var(--bg-soft); color: var(--text-dark); }

.ck-modal__title {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ck-modal__intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.ck-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
}

.ck-modal__row:last-of-type { border-bottom: 1px solid var(--border-soft); }

.ck-modal__row-info strong {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.ck-modal__row-info p { font-size: 13px; color: var(--text-muted); }

.ck-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.ck-toggle input { opacity: 0; width: 0; height: 0; }

.ck-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--border-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-base);
}

.ck-toggle__track::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition-base);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.ck-toggle input:checked + .ck-toggle__track { background: var(--brand-primary); }

.ck-toggle input:checked + .ck-toggle__track::before { transform: translateX(20px); }

.ck-toggle--disabled .ck-toggle__track { background: var(--brand-secondary); cursor: not-allowed; }

.ck-modal__footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   HEADER
   ============================================================ */
.pg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,228,247,0.5);
  transition: var(--transition-base);
}

.pg-header.is-scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px rgba(26,110,199,0.1);
}

.pg-header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.pg-header__logo { flex-shrink: 0; display: flex; }

.pg-header__nav { flex: 1; }

.pg-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}

.pg-header__nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition-base);
  text-decoration: none;
}

.pg-header__nav-link:hover {
  color: var(--brand-primary);
  background: var(--brand-light);
  text-decoration: none;
}

.pg-header__cta {
  flex-shrink: 0;
  font-size: 14px !important;
  padding: 10px 22px !important;
}

.pg-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}

.pg-header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #EBF5FF 0%, #F0FAFF 40%, #E6F7F6 100%);
  padding-top: 72px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77,189,189,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,110,199,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-block: 60px;
}

.hero-section__content { max-width: 560px; }

.hero-section__tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-light);
  border: 1px solid rgba(26,110,199,0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-section__headline {
  font-family: var(--ff-head);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero-section__headline-em {
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
}

.hero-section__headline-em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 2px;
  opacity: 0.4;
}

.hero-section__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-section__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-section__btn-primary {
  font-size: 16px !important;
  padding: 16px 36px !important;
}

.hero-section__trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-section__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
}

/* Hero Visual */
.hero-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section__img-wrap {
  position: relative;
  max-width: 520px;
  width: 100%;
}

.hero-section__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-float);
}

.hero-section__float-card {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 36px rgba(26,110,199,0.18);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-section__float-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-section__float-text { display: flex; flex-direction: column; }

.hero-section__float-text strong {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-section__float-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-section__float-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--brand-secondary);
  color: white;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(77,189,189,0.35);
  white-space: nowrap;
}

.hero-section__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-section__wave svg { width: 100%; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--border-soft);
}

.trust-strip__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

.trust-strip__divider {
  width: 1px;
  height: 32px;
  background: var(--border-soft);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience-section {
  padding: 96px 0;
  background: var(--bg-white);
}

.audience-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.audience-section__header .section-sub {
  margin-inline: auto;
}

.audience-section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.audience-section__img-stack {
  position: relative;
}

.audience-section__img--main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-card);
}

.audience-section__img--accent {
  position: absolute;
  bottom: -28px;
  right: -24px;
  width: 200px;
  height: 160px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(26,110,199,0.22);
  border: 4px solid white;
}

.audience-section__checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.audience-section__check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.audience-section__check-icon {
  width: 32px;
  height: 32px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-section__check-item strong {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.audience-section__check-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   BENEFIT GRID
   ============================================================ */
.benefit-grid {
  padding: 96px 0;
  background: var(--bg-soft);
}

.benefit-grid__header {
  text-align: center;
  margin-bottom: 56px;
}

.benefit-grid__header .section-sub {
  margin-inline: auto;
}

.benefit-grid__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
  border: 1px solid var(--border-card);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.benefit-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.benefit-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-card__img {
  transform: scale(1.05);
}

.benefit-card__num {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  background: rgba(26,110,199,0.8);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.benefit-card__body {
  padding: 22px 22px 24px;
}

.benefit-card__title {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.benefit-card__tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--brand-secondary);
  background: var(--brand-teal-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.product-showcase {
  padding: 96px 0;
  background: var(--bg-white);
  overflow: hidden;
}

.product-showcase__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-showcase__img-frame {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-showcase__img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 24px 60px rgba(26,110,199,0.2));
  animation: floatCard 5s ease-in-out infinite;
}

.product-showcase__badge-price {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--brand-primary);
  color: white;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,110,199,0.32);
}

.product-showcase__price-label {
  display: block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}

.product-showcase__price-val {
  display: block;
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.product-showcase__price-note {
  display: block;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
}

.product-showcase__title { margin-bottom: 20px; }

.product-showcase__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-showcase__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.product-showcase__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.product-showcase__feature-dot {
  width: 10px;
  height: 10px;
  background: var(--brand-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.product-showcase__feature strong {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 3px;
}

.product-showcase__feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-showcase__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-showcase__disclaimer-link {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   ROUTINE FLOW
   ============================================================ */
.routine-flow {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-white) 100%);
}

.routine-flow__header {
  text-align: center;
  margin-bottom: 56px;
}

.routine-flow__header .section-sub {
  margin-inline: auto;
}

.routine-flow__steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.routine-step {
  flex: 1;
  max-width: 280px;
  min-width: 200px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  position: relative;
}

.routine-step__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  background: var(--brand-primary);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.routine-step__icon {
  width: 64px;
  height: 64px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.routine-step__title {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.routine-step__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

.routine-step__arrow {
  padding: 0 12px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.routine-flow__note {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--brand-light);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  border-left: 4px solid var(--brand-primary);
  line-height: 1.7;
}

/* ============================================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================================ */
.social-proof {
  padding: 96px 0;
  background: var(--bg-soft);
}

.social-proof__header {
  text-align: center;
  margin-bottom: 56px;
}

.social-proof__header .section-sub {
  margin-inline: auto;
}

.social-proof__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.review-card--featured {
  border-color: var(--brand-secondary);
  border-width: 2px;
  position: relative;
}

.review-card--featured::before {
  content: '⭐ Nejoblíbenější recenze';
  position: absolute;
  top: -14px;
  left: 24px;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: var(--brand-secondary);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.review-card__stars {
  color: #F5A623;
  font-size: 18px;
}

.review-card__quote {
  flex: 1;
  border: none;
  padding: 0;
}

.review-card__quote p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

.review-card__detail {
  font-size: 12px;
  color: var(--text-muted);
}

.social-proof__aggregate {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 28px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  max-width: 500px;
  margin-inline: auto;
  box-shadow: var(--shadow-card);
}

.social-proof__agg-score {
  font-family: var(--ff-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.social-proof__agg-stars {
  color: #F5A623;
  font-size: 24px;
}

.social-proof__agg-label {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.5;
}

/* ============================================================
   ORDER PANEL
   ============================================================ */
.order-panel {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0D2D55 100%);
  position: relative;
  overflow: hidden;
}

.order-panel::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(77,189,189,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.order-panel__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.order-panel__info .section-label {
  background: rgba(77,189,189,0.2);
  color: var(--brand-secondary);
}

.order-panel__info .section-title {
  color: white;
}

.order-panel__title { margin-bottom: 20px; }

.order-panel__desc {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.order-panel__product-sum {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.order-panel__product-img-wrap { flex-shrink: 0; }

.order-panel__product-img { width: 80px; filter: drop-shadow(0 4px 16px rgba(77,189,189,0.3)); }

.order-panel__product-name {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.order-panel__product-format {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.order-panel__product-price {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-secondary);
}

.order-panel__product-price span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

.order-panel__guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-panel__guarantees li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* Order Form */
.order-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.order-form__title {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border-soft);
}

.order-form__row { margin-bottom: 16px; }

.order-form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-form__row--two-thirds {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}

.order-form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.order-form__label {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
}

.order-form__label span { color: var(--brand-cta); }

.order-form__input {
  padding: 12px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition-base);
  outline: none;
  width: 100%;
}

.order-form__input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(26,110,199,0.12);
}

.order-form__input.is-invalid { border-color: #e53e3e; }

.order-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237593AD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; cursor: pointer; }

.order-form__field--consent { margin-bottom: 16px; }

.order-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.55;
}

.order-form__consent-check { margin-top: 2px; accent-color: var(--brand-primary); flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }

.order-form__error {
  font-size: 12px;
  color: #e53e3e;
  min-height: 14px;
}

.order-form__total {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(26,110,199,0.2);
}

.order-form__total strong { color: var(--brand-primary); font-size: 20px; }

.order-form__submit { width: 100%; justify-content: center; font-size: 16px !important; padding: 16px !important; }

.order-form__legal-note {
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.55;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 96px 0;
  background: var(--bg-white);
}

.faq-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-section__header .section-sub {
  margin-inline: auto;
}

.faq-section__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.is-open { border-color: var(--brand-primary); }

.faq-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-base);
}

.faq-item__btn:hover { color: var(--brand-primary); }

.faq-item.is-open .faq-item__btn { color: var(--brand-primary); }

.faq-item__icon { flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }

.faq-item.is-open .faq-item__icon { transform: rotate(180deg); color: var(--brand-primary); }

.faq-item__ans {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
}

.faq-item__ans[hidden] { display: none; }

.faq-item__ans a { color: var(--brand-primary); text-decoration: underline; }

/* ============================================================
   REACH US / CONTACT
   ============================================================ */
.reach-us {
  padding: 80px 0;
  background: var(--bg-soft);
}

.reach-us__header {
  text-align: center;
  margin-bottom: 48px;
}

.reach-us__header .section-sub {
  margin-inline: auto;
}

.reach-us__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reach-us__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  transition: var(--transition-slow);
}

.reach-us__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.reach-us__card-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.reach-us__card-title {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.reach-us__card-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.reach-us__card-value {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  display: block;
}

.reach-us__card-address { font-size: 14px; line-height: 1.6; }

/* ============================================================
   DISCLAIMER STRIP
   ============================================================ */
.disclaimer-strip {
  background: #FFF8EE;
  border-top: 1px solid #FFE4B3;
  border-bottom: 1px solid #FFE4B3;
  padding: 18px 0;
}

.disclaimer-strip__container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #8B6914;
}

.disclaimer-strip__container svg { flex-shrink: 0; margin-top: 2px; }

.disclaimer-strip p {
  font-size: 12.5px;
  line-height: 1.6;
}

.disclaimer-strip a { color: #8B6914; text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  background: var(--bg-foot);
  padding: 64px 0 0;
}

.site-foot__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.site-foot__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 10px;
  max-width: 280px;
}

.site-foot__company-info {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.site-foot__col-title {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.site-foot__link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-foot__link-list li,
.site-foot__link-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-base);
  text-decoration: none;
}

.site-foot__link-list a:hover { color: var(--brand-secondary); text-decoration: none; }

.site-foot__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-foot__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.site-foot__legal-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 600px;
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
  .benefit-grid__cards { grid-template-columns: repeat(2, 1fr); }
  .site-foot__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-section__container { grid-template-columns: 1fr; min-height: auto; padding-block: 48px 80px; }
  .hero-section__content { max-width: 100%; text-align: center; }
  .hero-section__actions { justify-content: center; }
  .hero-section__trust-row { justify-content: center; }
  .hero-section__visual { order: -1; }
  .hero-section__img-wrap { max-width: 420px; }
  .hero-section__float-badge { right: 0; }
  .audience-section__split { grid-template-columns: 1fr; gap: 48px; }
  .audience-section__img--accent { display: none; }
  .product-showcase__container { grid-template-columns: 1fr; gap: 48px; }
  .product-showcase__visual { order: -1; }
  .social-proof__cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .order-panel__container { grid-template-columns: 1fr; }
  .reach-us__cards { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .pg-header__nav { display: none; }
  .pg-header__cta { display: none; }
  .pg-header__burger { display: flex; }
  .pg-header__nav.is-open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-soft);
    padding: 16px;
    box-shadow: 0 8px 32px rgba(26,110,199,0.1);
  }
  .pg-header__nav.is-open .pg-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .pg-header__nav.is-open .pg-header__nav-link {
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
  }
  .trust-strip__divider { display: none; }
  .trust-strip__item { width: 50%; justify-content: center; padding: 8px; }
  .routine-flow__steps { flex-direction: column; align-items: center; }
  .routine-step__arrow { transform: rotate(90deg); }
  .benefit-grid__cards { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .order-form { padding: 28px 20px; }
  .order-form__row--half,
  .order-form__row--two-thirds { grid-template-columns: 1fr; }
  .site-foot__top { grid-template-columns: 1fr; }
  .site-foot__bottom { flex-direction: column; text-align: center; }
  .ck-banner__wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-section__headline { font-size: 36px; }
  .hero-section__actions { flex-direction: column; }
  .hero-section__btn-primary { width: 100%; justify-content: center; }
  .hero-section__float-card { left: 0; bottom: 16px; }
  .hero-section__float-badge { display: none; }
}
