/* ============================================================
   RIMVITA – Main Stylesheet
   Architecture: Section-scoped semantic
   Palette: Light + Bright + Green + Pastel
   Typography: DM Serif Display + Nunito
   ============================================================ */

/* ---------- TOKEN SYSTEM ---------- */
:root {
  --tone-main:      #2D8A52;
  --tone-deep:      #1E6B3E;
  --tone-support:   #52B068;
  --tone-cta:       #38C96A;
  --tone-cta-hover: #29A855;
  --tone-pastel:    #A8D8B5;
  --tone-mint-light:#E4F5EB;
  --tone-pale-bg:   #F5FBF7;
  --tone-card-bg:   #EDF8F1;
  --tone-border:    #C5E4D0;
  --tone-text:      #1A2920;
  --tone-muted:     #5A7A66;
  --tone-white:     #FFFFFF;
  --tone-footer-bg: #1C3829;
  --tone-footer-bottom: #152A1E;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --shadow-sm:  0 2px 8px rgba(45,138,82,0.08);
  --shadow-md:  0 6px 24px rgba(45,138,82,0.13);
  --shadow-lg:  0 16px 48px rgba(45,138,82,0.16);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', sans-serif;

  --max-w: 1200px;
  --header-h: 74px;
}

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

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

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

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

a {
  color: var(--tone-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--tone-deep);
}

ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tone-main);
  background: var(--tone-mint-light);
  border: 1px solid var(--tone-border);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-eyebrow.light {
  color: var(--tone-white);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--tone-text);
  line-height: 1.22;
  margin-bottom: 16px;
}

.section-title.centered { text-align: center; }
.section-title.light { color: var(--tone-white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--tone-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.65;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.82);
}

.section-body {
  font-size: 1.02rem;
  color: var(--tone-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ---------- BUTTONS ---------- */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--tone-cta) 0%, var(--tone-main) 100%);
  color: var(--tone-white) !important;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 18px rgba(56,201,106,0.35);
  text-decoration: none;
}

.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(56,201,106,0.45);
  color: var(--tone-white) !important;
  opacity: 0.95;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--tone-white) !important;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-outline-pill:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  color: var(--tone-white) !important;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--tone-white);
  border-top: 3px solid var(--tone-cta);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.14);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

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

.cookie-banner__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tone-text);
  margin-bottom: 6px;
}

.cookie-banner__text p {
  font-size: 0.875rem;
  color: var(--tone-muted);
  line-height: 1.5;
}

.cookie-banner__text a { text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.cookie-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--tone-cta), var(--tone-main));
  color: var(--tone-white);
}

.cookie-btn--manage {
  background: var(--tone-mint-light);
  color: var(--tone-main);
  border: 1px solid var(--tone-border);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--tone-muted);
  border: 1px solid #D0D9D4;
}

.cookie-manage-panel {
  max-width: var(--max-w);
  margin: 16px auto 0;
  padding: 16px 20px;
  background: var(--tone-mint-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--tone-border);
}

.cookie-manage-panel h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tone-text);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--tone-muted);
  margin-bottom: 8px;
  cursor: pointer;
}

.cookie-toggle input { accent-color: var(--tone-main); width: 16px; height: 16px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--tone-white);
  border-bottom: 1px solid var(--tone-border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tone-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--tone-main);
  background: var(--tone-mint-light);
}

.header-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--tone-cta), var(--tone-main));
  color: var(--tone-white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(56,201,106,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(56,201,106,0.4);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--tone-main);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  background: var(--tone-white);
  border-top: 1px solid var(--tone-border);
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tone-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--tone-mint-light);
}

.mobile-nav-link:hover { color: var(--tone-main); }

.mobile-nav-cta {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tone-main);
  padding: 12px 0 0;
  letter-spacing: 0.02em;
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,41,32,0.82) 0%,
    rgba(30,107,62,0.6) 50%,
    rgba(26,41,32,0.35) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tone-cta);
  background: rgba(56,201,106,0.15);
  border: 1px solid rgba(56,201,106,0.4);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--tone-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--tone-cta);
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.trust-strip__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
}

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

.trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.trust-item-text {
  display: flex;
  flex-direction: column;
}

.trust-item-text strong {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--tone-text);
  line-height: 1.2;
}

.trust-item-text span {
  font-size: 0.8rem;
  color: var(--tone-muted);
}

/* ---------- FOR WHOM ---------- */
.for-whom-section {
  padding: 96px 0;
  background: var(--tone-pale-bg);
}

.for-whom__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.for-whom__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.for-whom__visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.for-whom__badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--tone-white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tone-main);
  box-shadow: var(--shadow-md);
}

.for-whom__badge-float svg { width: 20px; height: 20px; }

.for-whom__content { padding: 8px 0; }

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--tone-text);
  line-height: 1.5;
}

.benefit-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  min-width: 9px;
  background: var(--tone-cta);
  border-radius: 50%;
  margin-top: 7px;
}

/* ---------- PRODUCT SECTION ---------- */
.product-section {
  background: var(--tone-white);
  padding: 96px 0;
}

.product-section__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

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

.product-section__header .section-subtitle {
  margin-bottom: 0;
}

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

.product-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.product-image-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.product-image-wrap img {
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(45,138,82,0.2));
  transition: transform 0.4s ease;
}

.product-image-wrap:hover img { transform: scale(1.03) translateY(-4px); }

.product-glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(ellipse, rgba(56,201,106,0.22) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
  border-radius: 50%;
}

.product-price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--tone-mint-light), var(--tone-card-bg));
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.product-price-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tone-muted);
}

.product-price-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--tone-main);
  line-height: 1.1;
  margin: 4px 0;
}

.product-price-sub {
  font-size: 0.82rem;
  color: var(--tone-muted);
}

.product-features-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--tone-text);
  margin-bottom: 28px;
}

.product-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--tone-pale-bg);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.product-feature-row:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--tone-pastel);
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--tone-white);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box svg { width: 22px; height: 22px; }

.feature-text strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--tone-text);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.875rem;
  color: var(--tone-muted);
  line-height: 1.55;
}

/* ---------- LIFESTYLE CARDS (3 columns, organic) ---------- */
.lifestyle-section {
  padding: 96px 0;
  background: var(--tone-pale-bg);
}

.lifestyle-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.lifestyle-header {
  text-align: center;
  margin-bottom: 52px;
}

.lifestyle-header .section-subtitle {
  margin-bottom: 0;
}

/* 3-column grid — equal columns, no 4th card */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lifestyle-card {
  background: var(--tone-white);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.lifestyle-card__img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.lifestyle-card__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lifestyle-card:hover .lifestyle-card__img-wrap img {
  transform: scale(1.05);
}

.lifestyle-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tone-white);
  color: var(--tone-main);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--tone-border);
  line-height: 1.4;
}

.lifestyle-card__body {
  padding: 24px 24px 28px;
  flex: 1;
}

.lifestyle-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--tone-text);
  margin-bottom: 10px;
}

.lifestyle-card__text {
  font-size: 0.9rem;
  color: var(--tone-muted);
  line-height: 1.65;
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.how-section__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.how-section__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.how-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,42,30,0.9) 0%, rgba(45,138,82,0.78) 100%);
}

.how-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

.how-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.how-step {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  flex: 1;
  min-width: 240px;
  max-width: 320px;
}

.how-step__num {
  width: 52px;
  height: 52px;
  background: var(--tone-cta);
  color: var(--tone-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.how-step__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--tone-white);
  margin-bottom: 10px;
}

.how-step__body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.how-step-arrow {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-display);
}

/* ---------- REVIEWS ---------- */
.reviews-section {
  padding: 96px 0;
  background: var(--tone-white);
}

.reviews-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.review-card {
  background: var(--tone-card-bg);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.review-card__stars svg {
  width: 88px;
  height: 16px;
}

.review-card__quote p {
  font-size: 0.93rem;
  color: var(--tone-text);
  line-height: 1.7;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--tone-border);
  padding-top: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--tone-cta), var(--tone-main));
  color: var(--tone-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__author strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--tone-text);
}

.review-card__author span {
  font-size: 0.8rem;
  color: var(--tone-muted);
}

.reviews-cta-note {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reviews-cta-note p {
  font-size: 1.05rem;
  color: var(--tone-muted);
}

/* ---------- ORDER SECTION ---------- */
.order-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #E8F7EE 0%, #F0FCF5 50%, #E4F5EB 100%);
}

.order-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.order-header {
  text-align: center;
  margin-bottom: 56px;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.order-summary {
  background: var(--tone-white);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.order-summary__product img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: var(--tone-mint-light);
  padding: 20px;
}

.order-summary__details {
  padding: 24px;
}

.order-summary__details h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tone-text);
  margin-bottom: 8px;
}

.order-summary__desc {
  font-size: 0.875rem;
  color: var(--tone-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.order-price-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.order-price-main {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--tone-main);
  font-weight: 400;
}

.order-price-badge {
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(56,201,106,0.15);
  color: var(--tone-main);
  border: 1px solid rgba(56,201,106,0.35);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.order-perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-perks li {
  font-size: 0.875rem;
  color: var(--tone-muted);
}

/* Form */
.order-form-block {
  background: var(--tone-white);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.order-form__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tone-text);
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-row--two > .form-group { flex: 1; }

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tone-text);
}

.form-group label span { color: var(--tone-main); }

.form-group input,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--tone-text);
  background: var(--tone-pale-bg);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(45,138,82,0.12);
  background: var(--tone-white);
}

.form-group input::placeholder { color: #AABDB3; }

.form-consent {
  margin: 6px 0 20px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--tone-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--tone-main);
  border: none;
  padding: 0;
  background: none;
}

.form-checkbox a { text-decoration: underline; color: var(--tone-main); }

.btn-order-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--tone-cta) 0%, var(--tone-main) 100%);
  color: var(--tone-white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 22px rgba(56,201,106,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-order-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56,201,106,0.5);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--tone-muted);
  margin-top: 12px;
  line-height: 1.5;
}

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

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--tone-white);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
  border-color: var(--tone-pastel);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tone-text);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--tone-main); }

.faq-chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--tone-main);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--tone-muted);
  line-height: 1.7;
  border-top: 1px solid var(--tone-mint-light);
  padding-top: 16px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  padding: 80px 0;
  background: var(--tone-white);
  border-top: 1px solid var(--tone-border);
}

.contact-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--tone-text);
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-disclaimer-box {
  background: var(--tone-card-bg);
  border: 1.5px solid var(--tone-border);
  border-left: 4px solid var(--tone-main);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-disclaimer-box svg { flex-shrink: 0; margin-top: 3px; }

.contact-disclaimer-box p {
  font-size: 0.875rem;
  color: var(--tone-muted);
  line-height: 1.7;
}

.contact-disclaimer-box strong {
  display: block;
  color: var(--tone-text);
  margin-bottom: 6px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--tone-footer-bg);
  color: rgba(255,255,255,0.75);
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-logo--footer { opacity: 0.9; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 12px 0 8px;
  line-height: 1.5;
  max-width: 240px;
}

.footer-company {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links-col a:hover { color: var(--tone-cta); }

.footer-bottom {
  background: var(--tone-footer-bottom);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* ---------- LEGAL PAGES SHARED ---------- */
.legal-page {
  min-height: 100vh;
  background: var(--tone-pale-bg);
}

.legal-hero {
  background: linear-gradient(135deg, var(--tone-footer-bg) 0%, var(--tone-deep) 100%);
  padding: 60px 28px;
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--tone-white);
}

.legal-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tone-text);
  margin: 36px 0 12px;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tone-text);
  margin: 24px 0 8px;
}

.legal-content p, .legal-content li {
  font-size: 0.93rem;
  color: var(--tone-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content a { text-decoration: underline; }

/* ---------- SUCCESS PAGE ---------- */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  background: linear-gradient(135deg, #E8F7EE 0%, #F5FBF7 100%);
  text-align: center;
}

.success-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--tone-cta), var(--tone-main));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 30px rgba(56,201,106,0.4);
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

.success-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--tone-white);
  stroke-width: 2.5;
  fill: none;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--tone-text);
  margin-bottom: 12px;
}

.success-subtitle {
  font-size: 1.05rem;
  color: var(--tone-muted);
  max-width: 480px;
  line-height: 1.65;
  margin: 0 auto 32px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeInUp 0.6s ease both;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .for-whom__container,
  .product-layout,
  .order-layout,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .for-whom__visual img { height: 360px; }
  .product-image-wrap { max-width: 280px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header-nav,
  .header-cta { display: none; }

  .mobile-toggle { display: flex; }

  .hero-title { font-size: 2rem; }

  .trust-strip__container { flex-direction: column; gap: 0; }
  .trust-strip__item { padding: 10px 20px; }
  .trust-strip__divider { width: 80%; height: 1px; }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 40px;
  }

  .how-steps { flex-direction: column; align-items: center; }
  .how-step { max-width: 100%; width: 100%; }
  .how-step-arrow { transform: rotate(90deg); padding: 6px 0; }

  .form-row--two { flex-direction: column; gap: 0; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 28px 32px;
  }

  .order-form-block { padding: 24px; }
}

@media (max-width: 520px) {
  .hero-container { padding: 60px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary-pill,
  .btn-outline-pill { width: 100%; justify-content: center; }

  .product-section__container,
  .for-whom__container,
  .lifestyle-container,
  .how-container,
  .reviews-container,
  .order-container,
  .faq-container,
  .contact-container {
    padding: 0 18px;
  }

  .cookie-banner { padding: 16px 18px; }
  .cookie-banner__actions { flex-direction: column; align-items: stretch; }
  .cookie-btn { text-align: center; }
}
