@charset "UTF-8";
/* ============================================
   NovaPure -- style.css
   Theme: Dark Navy + Saturated & Pastel Blues
   Architecture: BEM + Utility Helpers
   Fonts: Playfair Display + Source Sans 3
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Brand Blues */
  --brand-950: #040b18;
  --brand-900: #070f1e;
  --brand-800: #0a1628;
  --brand-700: #0e2040;
  --brand-600: #152d5a;
  --brand-500: #1d3e7a;
  --brand-400: #2453a8;
  --brand-300: #3b6cd4;
  --brand-200: #5b90e8;
  --brand-100: #93c5fd;
  --brand-50:  #bfdbfe;
  --brand-25:  #dbeafe;

  /* Pastel Blues */
  --pastel-main: #b8d4f5;
  --pastel-light: #d4e8fc;
  --pastel-faint: #eef5fd;

  /* Accent */
  --accent:       #2563eb;
  --accent-hover: #1d4ed8;
  --accent-glow:  rgba(37, 99, 235, 0.22);
  --accent-soft:  rgba(37, 99, 235, 0.12);

  /* Surfaces */
  --surface-base:  #070f1e;
  --surface-raised: rgba(14, 32, 64, 0.90);
  --surface-card:  rgba(13, 34, 68, 0.70);
  --surface-glass: rgba(30, 62, 122, 0.35);
  --surface-line:  rgba(59, 130, 246, 0.18);
  --surface-line-strong: rgba(59, 130, 246, 0.35);

  /* Text */
  --text-bright:   #f0f4fc;
  --text-primary:  #d4dff4;
  --text-secondary:#9ab8d8;
  --text-muted:    #6488a8;
  --text-link:     #93c5fd;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(4, 11, 24, 0.5);
  --shadow-glow:  0 0 40px rgba(37, 99, 235, 0.20);
  --shadow-btn:   0 4px 20px rgba(37, 99, 235, 0.40);
  --shadow-deep:  0 16px 64px rgba(4, 11, 24, 0.70);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:   160ms;
  --t-mid:    280ms;
  --t-slow:   440ms;

  /* Layout */
  --max-w: 1160px;
  --header-h: 72px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--surface-base);
  background-image: radial-gradient(ellipse 800px 600px at 20% 10%, rgba(21, 45, 90, 0.6) 0%, transparent 60%), radial-gradient(ellipse 600px 500px at 80% 80%, rgba(14, 32, 64, 0.7) 0%, transparent 55%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--text-link); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--pastel-main); }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-100);
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  border-radius: var(--r-full);
  transition: all var(--t-mid) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.75rem 1.75rem;
}

.btn--primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.50);
  color: #fff;
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--text-bright);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
  color: var(--text-bright);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-100);
  border: 1.5px solid var(--surface-line-strong);
}
.btn--ghost:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #fff;
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1.02rem; }
.btn--full { width: 100%; justify-content: center; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- COOKIE BANNER ---------- */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(9, 19, 40, 0.98);
  border-top: 1px solid var(--surface-line-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-4) var(--sp-6);
  transform: translateY(100%);
  transition: transform var(--t-slow) var(--ease-out);
}
.cookie-bar.is-visible { transform: translateY(0); }

.cookie-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.cookie-bar__text {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  flex: 1;
  min-width: 240px;
}
.cookie-bar__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--brand-100); margin-top: 2px; }
.cookie-bar__text p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.cookie-bar__link { color: var(--brand-100); text-decoration: underline; }

.cookie-bar__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; }
.cookie-bar__btn {
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  font-family: inherit;
}
.cookie-bar__btn--accept {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-color: #2563eb;
}
.cookie-bar__btn--accept:hover { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.cookie-bar__btn--reject {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--surface-line-strong);
}
.cookie-bar__btn--reject:hover { color: var(--text-primary); border-color: var(--text-muted); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.site-header.is-scrolled {
  background: rgba(7, 15, 30, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(4, 11, 24, 0.6);
  border-bottom: 1px solid var(--surface-line);
}

.site-header__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }

.site-header__nav { display: flex; align-items: center; }
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.site-header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.site-header__nav-link:hover { color: var(--text-bright); background: var(--accent-soft); }
.site-header__nav-link--order {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.35);
}
.site-header__nav-link--order:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.site-header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease-out);
}
.site-header__burger.is-active .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger.is-active .site-header__burger-line:nth-child(2) { opacity: 0; }
.site-header__burger.is-active .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.site-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.site-hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.site-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 11, 24, 0.88) 0%,
    rgba(9, 22, 46, 0.78) 50%,
    rgba(14, 32, 64, 0.55) 100%
  );
}

.site-hero__wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-24) var(--sp-6);
  width: 100%;
}
.site-hero__content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-100);
  background: rgba(37, 99, 235, 0.20);
  border: 1px solid rgba(147, 197, 253, 0.30);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge svg { width: 13px; height: 13px; }

.site-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-bright);
  margin-bottom: var(--sp-6);
}
.site-hero__title em {
  font-style: italic;
  color: var(--brand-100);
}

.site-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--sp-8);
}

.site-hero__cta-row {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.site-hero__trust-strip {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.mini-trust {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.mini-trust svg { width: 15px; height: 15px; color: var(--brand-200); flex-shrink: 0; }

/* ---------- TRUST RIBBON ---------- */
.trust-ribbon {
  background: rgba(10, 22, 40, 0.95);
  border-top: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--sp-6) var(--sp-6);
}
.trust-ribbon__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-ribbon__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-8);
  flex: 1;
  min-width: 190px;
  max-width: 260px;
}
.trust-ribbon__item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
}
.trust-ribbon__item span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.trust-ribbon__icon { width: 28px; height: 28px; color: var(--brand-200); flex-shrink: 0; }
.trust-ribbon__divider {
  width: 1px;
  height: 48px;
  background: var(--surface-line);
  flex-shrink: 0;
}

/* ---------- WHOM BLOCK ---------- */
.whom-block {
  padding: var(--sp-24) var(--sp-6);
}
.whom-block__wrap { max-width: var(--max-w); margin: 0 auto; }

.whom-block__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.whom-block__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
.whom-block__lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.whom-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.whom-block__img-stack { position: relative; }
.whom-block__img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--surface-line-strong);
  box-shadow: var(--shadow-deep);
}
.whom-block__img-main .whom-block__img { width: 100%; height: 340px; object-fit: cover; }

.whom-block__img-accent {
  position: absolute;
  width: 55%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid var(--surface-base);
  box-shadow: var(--shadow-deep);
  bottom: -24px;
  right: -24px;
}
.whom-block__img-accent .whom-block__img { width: 100%; height: 180px; object-fit: cover; }

.whom-block__features-col { display: flex; flex-direction: column; gap: var(--sp-5); padding-top: var(--sp-4); }

.feature-row {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-5);
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--t-mid) var(--ease-out);
}
.feature-row:hover {
  background: rgba(21, 45, 90, 0.70);
  border-color: var(--surface-line-strong);
  transform: translateX(4px);
}
.feature-row__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-200);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  padding-top: 2px;
}
.feature-row__title {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-bright);
  display: block;
  margin-bottom: 4px;
}
.feature-row__text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ---------- PRODUCT OVERVIEW ---------- */
.product-overview {
  padding: var(--sp-24) var(--sp-6);
  background: radial-gradient(ellipse 900px 600px at 50% 50%, rgba(21, 45, 90, 0.35) 0%, transparent 70%);
  border-top: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
}
.product-overview__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.product-overview__img-frame {
  background: var(--surface-card);
  border: 1px solid var(--surface-line-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glow), var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.product-overview__img { max-height: 320px; width: auto; margin: 0 auto; filter: drop-shadow(0 8px 32px rgba(37, 99, 235, 0.30)); }

.product-overview__tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: var(--sp-5);
  justify-content: center;
}
.product-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-100);
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.product-tag--light { background: rgba(30, 62, 122, 0.40); border-color: var(--surface-line-strong); }

.product-overview__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}
.product-overview__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.product-overview__check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.product-overview__check-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.93rem;
  color: var(--text-primary);
}
.product-overview__check-list li svg { width: 16px; height: 16px; color: var(--brand-200); flex-shrink: 0; }

.product-overview__action { margin-bottom: var(--sp-4); }
.product-overview__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* ---------- LIFESTYLE SECTION (3 CARDS) ---------- */
.lifestyle-section {
  padding: var(--sp-24) var(--sp-6);
}
.lifestyle-section__wrap { max-width: var(--max-w); margin: 0 auto; }
.lifestyle-section__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.lifestyle-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
.lifestyle-section__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 3 equal cards grid */
.lifestyle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.lcard {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: all var(--t-mid) var(--ease-out);
  box-shadow: var(--shadow-card);
}
.lcard:hover {
  transform: translateY(-6px);
  border-color: var(--surface-line-strong);
  box-shadow: var(--shadow-deep), var(--shadow-glow);
}

.lcard__media { position: relative; overflow: hidden; }
.lcard__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.lcard:hover .lcard__img { transform: scale(1.06); }

.lcard__num {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(37, 99, 235, 0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--r-full);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  border: 1px solid rgba(147, 197, 253, 0.35);
}

.lcard__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lcard__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.lcard__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

/* ---------- SOCIAL PROOF / REVIEWS ---------- */
.social-proof {
  padding: var(--sp-24) var(--sp-6);
  background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(14, 32, 64, 0.50) 0%, transparent 70%);
  border-top: 1px solid var(--surface-line);
}
.social-proof__wrap { max-width: var(--max-w); margin: 0 auto; }
.social-proof__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.social-proof__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}
.review-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--t-mid) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.review-card:hover {
  border-color: var(--surface-line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}
.review-card--featured {
  border-color: rgba(59, 130, 246, 0.40);
  background: rgba(21, 45, 90, 0.55);
  box-shadow: var(--shadow-glow);
}

.review-card__stars { font-size: 1rem; color: #fbbf24; letter-spacing: 2px; }
.review-card__stars span { color: #fbbf24; }

.review-card__quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  quotes: none;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
}
.review-card__info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.social-proof__stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.stat-pill {
  background: var(--surface-glass);
  border: 1px solid var(--surface-line-strong);
  border-radius: var(--r-full);
  padding: var(--sp-4) var(--sp-8);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 160px;
}
.stat-pill strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-100);
  line-height: 1.1;
}
.stat-pill span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- CHECKOUT / ORDER ---------- */
.checkout-section {
  padding: var(--sp-24) var(--sp-6);
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(21, 45, 90, 0.40) 0%, transparent 65%);
  border-top: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
}
.checkout-section__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--sp-16);
  align-items: start;
}

.checkout-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
.checkout-section__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.checkout-section__perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.checkout-section__perks li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.93rem;
  color: var(--text-primary);
}
.checkout-section__perks li svg { width: 16px; height: 16px; color: var(--brand-200); flex-shrink: 0; }

.checkout-section__price-tag {
  background: var(--surface-glass);
  border: 1px solid var(--surface-line-strong);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  flex-direction: column;
}
.price-tag__amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand-100);
  line-height: 1;
}
.price-tag__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.checkout-section__form-wrap {
  background: var(--surface-card);
  border: 1px solid var(--surface-line-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-deep);
}

.order-form { display: flex; flex-direction: column; gap: var(--sp-5); }

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.form-label span { color: var(--brand-200); }

.form-input {
  background: rgba(9, 22, 46, 0.60);
  border: 1px solid var(--surface-line-strong);
  border-radius: var(--r-md);
  color: var(--text-bright);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--accent);
  background: rgba(14, 32, 64, 0.80);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 viewBox=%270 0 12 8%27%3E%3Cpath d=%27M1 1l5 5 5-5%27 stroke=%27%236488a8%27 stroke-width=%272%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-select option { background: #0a1628; color: var(--text-primary); }

.form-group--consent .form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-group--consent a { color: var(--brand-100); text-decoration: underline; }

.form-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
}
.form-secure-note svg { flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-section {
  padding: var(--sp-24) var(--sp-6);
}
.faq-section__wrap { max-width: 760px; margin: 0 auto; }
.faq-section__header { text-align: center; margin-bottom: var(--sp-12); }
.faq-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}
.faq-section__sub { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--t-fast);
}
.faq-item.is-open { border-color: var(--surface-line-strong); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: transparent;
  border: none;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
}
.faq-item__trigger:hover { background: rgba(30, 62, 122, 0.30); }
.faq-item__trigger span {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-item__icon {
  width: 20px;
  height: 20px;
  color: var(--brand-200);
  flex-shrink: 0;
  transition: transform var(--t-mid) var(--ease-out);
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }

.faq-item__body { padding: 0 var(--sp-6) var(--sp-5); }
.faq-item__body p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  padding: var(--sp-16) var(--sp-6);
  background: rgba(8, 17, 35, 0.8);
  border-top: 1px solid var(--surface-line);
}
.contact-section__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: var(--sp-12);
  align-items: start;
}
.contact-section__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: var(--sp-3);
  font-style: italic;
}
.contact-section__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--sp-5);
}

.contact-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-list__item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--brand-200); margin-top: 2px; }
.contact-list__link { color: var(--brand-100); }
.contact-list__link:hover { color: var(--pastel-main); }

.contact-section__disclaimer-box {
  background: rgba(14, 32, 64, 0.50);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
.contact-section__disclaimer-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-section__disclaimer-box strong { color: var(--text-secondary); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--brand-950);
  border-top: 1px solid var(--surface-line);
  padding: var(--sp-8) var(--sp-6);
}
.site-footer__wrap { max-width: var(--max-w); margin: 0 auto; }
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--surface-line);
  margin-bottom: var(--sp-6);
}
.site-footer__copy { font-size: 0.85rem; color: var(--text-muted); }
.site-footer__legal-nav { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.site-footer__legal-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.site-footer__legal-link:hover { color: var(--brand-100); }

.site-footer__bottom {}
.site-footer__disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 900px;
}

/* ============================================
   LEGAL PAGES SHARED STYLES
   ============================================ */
.legal-page { padding-top: var(--header-h); }
.legal-hero {
  padding: var(--sp-16) var(--sp-6) var(--sp-12);
  border-bottom: 1px solid var(--surface-line);
  background: radial-gradient(ellipse 700px 400px at 50% 100%, rgba(14, 32, 64, 0.40) 0%, transparent 70%);
}
.legal-hero__wrap { max-width: 840px; margin: 0 auto; }
.legal-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: var(--sp-3);
}
.legal-hero__date { font-size: 0.85rem; color: var(--text-muted); }

.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6);
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-bright);
  margin: var(--sp-8) 0 var(--sp-3);
}
.legal-content p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal-content a { color: var(--brand-100); text-decoration: underline; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .product-overview__wrap { gap: var(--sp-10); }
  .whom-block__grid { gap: var(--sp-8); }
  .checkout-section__wrap { gap: var(--sp-10); }
  .contact-section__wrap { grid-template-columns: 1fr 1fr; }
  .contact-section__wrap > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-header__nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: rgba(7, 15, 30, 0.98); backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px); padding: var(--sp-6); border-bottom: 1px solid var(--surface-line); z-index: 890; }
  .site-header__nav.is-open { display: block; }
  .site-header__nav-list { flex-direction: column; gap: var(--sp-2); }
  .site-header__nav-link { display: block; padding: 0.6rem 1rem; border-radius: var(--r-md); }
  .site-header__nav-link--order { text-align: center; margin-top: var(--sp-2); }
  .site-header__burger { display: flex; }

  .whom-block__grid { grid-template-columns: 1fr; }
  .whom-block__img-accent { display: none; }
  .product-overview__wrap { grid-template-columns: 1fr; }
  .product-overview__image-col { text-align: center; }
  .checkout-section__wrap { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .trust-ribbon__divider { display: none; }
  .trust-ribbon__item { min-width: 140px; }
}

@media (max-width: 640px) {
  .lifestyle-cards { grid-template-columns: 1fr; }
  .site-hero__cta-row { flex-direction: column; }
  .site-hero__cta-row .btn { width: 100%; justify-content: center; }
  .social-proof__stats { flex-direction: column; align-items: center; }
  .site-footer__top { flex-direction: column; gap: var(--sp-4); }
  .site-footer__legal-nav { gap: var(--sp-3); }
  .contact-section__wrap { grid-template-columns: 1fr; }
  .product-overview__img-frame { min-height: 260px; }
  .cookie-bar__inner { flex-direction: column; }
}
