/* ============================================================
   BAMVEX — CSS Style System
   Architecture: Section-scoped semantic
   Token family: --ui-main / --ui-alt / --ui-cta / --ui-emphasis
   Typography: DM Sans + Cormorant Garamond
   Mood: Clean medical + informational clinical-light
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --ui-main:       #1a5c4a;
  --ui-alt:        #2e7d6a;
  --ui-cta:        #d4853a;
  --ui-emphasis:   #0d3b2e;
  --ui-surface:    #f4f9f7;
  --ui-surface-2:  #e8f4ef;
  --ui-line:       #c8dfd8;
  --ui-text:       #1d2924;
  --ui-text-muted: #5a7068;
  --ui-white:      #ffffff;
  --ui-shadow:     rgba(26, 92, 74, 0.12);

  --radius-card:   12px;
  --radius-btn:    8px;
  --radius-input:  8px;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  --max-w: 1160px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-py: clamp(3.5rem, 7vw, 6rem);

  --transition: 0.22s ease;
  --shadow-card: 0 4px 20px var(--ui-shadow);
  --shadow-lift: 0 8px 36px rgba(26, 92, 74, 0.18);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ui-text);
  background: var(--ui-white);
  overflow-x: hidden;
}

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

a {
  color: var(--ui-main);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--ui-cta); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ui-emphasis);
}

/* ---- LAYOUT UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ui-cta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--ui-emphasis);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--ui-text-muted);
  max-width: 560px;
}

.section-header.centered {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header.centered .section-intro {
  margin-inline: auto;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--ui-cta);
  color: var(--ui-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: #b86e2d;
  color: var(--ui-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 133, 58, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--ui-white);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: var(--ui-white);
}

.btn-full { width: 100%; }

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
}

/* ---- SITE HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ui-line);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px var(--ui-shadow);
}

.header-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.875rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  color: var(--ui-emphasis);
}

.brand-logo:hover { color: var(--ui-main); }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ui-emphasis);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ui-text-muted);
  transition: color var(--transition);
}

.header-nav a:hover { color: var(--ui-main); }

.header-cta {
  padding: 0.55rem 1.4rem;
  background: var(--ui-main);
  color: var(--ui-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--ui-emphasis);
  color: var(--ui-white);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ui-emphasis);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.5rem;
  border-top: 1px solid var(--ui-line);
  background: var(--ui-white);
  gap: 0.5rem;
}

/* Ensure hidden attribute works even when element has display set */
[hidden] { display: none !important; }

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ui-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ui-surface-2);
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav-cta {
  display: inline-flex !important;
  width: fit-content;
  padding: 0.75rem 2rem !important;
  background: var(--ui-cta);
  color: var(--ui-white) !important;
  border-radius: var(--radius-btn);
  font-weight: 600 !important;
  margin-top: 0.5rem;
  border-bottom: none !important;
}

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  min-height: clamp(520px, 80vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 59, 46, 0.85) 0%,
    rgba(26, 92, 74, 0.72) 45%,
    rgba(26, 92, 74, 0.35) 100%
  );
}

.hero-content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(3rem, 8vw, 6rem);
}

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

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--ui-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.88);
}

.hero-subtext {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-trust-strip span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ---- AWARENESS SECTION ---- */
.awareness-section {
  padding-block: var(--section-py);
  background: var(--ui-white);
}

.awareness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.awareness-text .section-title { margin-bottom: 1.25rem; }

.awareness-text p {
  color: var(--ui-text-muted);
  margin-bottom: 1rem;
  max-width: 520px;
}

.awareness-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.awareness-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ui-text);
}

.awareness-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.awareness-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.awareness-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.awareness-visual:hover img { transform: scale(1.03); }

/* ---- FOR WHOM SECTION ---- */
.forwhom-section {
  padding-block: var(--section-py);
  background: var(--ui-surface);
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.forwhom-card {
  background: var(--ui-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.forwhom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.forwhom-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.forwhom-card-body {
  padding: 1.5rem;
}

.forwhom-card-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ui-emphasis);
}

.forwhom-card-body p {
  font-size: 0.93rem;
  color: var(--ui-text-muted);
  line-height: 1.6;
}

/* ---- PRODUCT SECTION ---- */
.product-section {
  padding-block: var(--section-py);
  background: var(--ui-white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.product-visual-col {
  display: flex;
  justify-content: center;
}

.product-img-frame {
  position: relative;
  background: linear-gradient(135deg, var(--ui-surface) 0%, var(--ui-surface-2) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lift);
  max-width: 440px;
  width: 100%;
}

.product-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(26, 92, 74, 0.18));
}

.product-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--ui-main);
  color: var(--ui-white);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.4;
}

.product-badge strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-display);
}

.product-info-col .section-title { margin-bottom: 0.75rem; }

.product-desc {
  color: var(--ui-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ui-surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-item strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ui-emphasis);
  margin-bottom: 0.25rem;
}

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

.product-cta-block { display: flex; flex-direction: column; gap: 0.6rem; }

.product-note {
  font-size: 0.8rem;
  color: var(--ui-text-muted);
}

/* ---- ROUTINE SECTION ---- */
.routine-section {
  padding-block: var(--section-py);
  background: var(--ui-surface);
}

.routine-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.routine-step {
  flex: 1;
  min-width: 200px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--ui-cta);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ui-emphasis);
}

.step-body p {
  font-size: 0.875rem;
  color: var(--ui-text-muted);
  line-height: 1.6;
}

.routine-connector {
  width: 40px;
  height: 2px;
  background: var(--ui-line);
  flex-shrink: 0;
}

/* ---- TRUST SECTION ---- */
.trust-section {
  padding-block: var(--section-py);
  background: var(--ui-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.trust-main .section-title { margin-bottom: 0.75rem; }

.trust-main > p {
  color: var(--ui-text-muted);
  margin-bottom: 2rem;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--ui-surface);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  border: 1px solid var(--ui-line);
  transition: border-color var(--transition);
}

.trust-card:hover { border-color: var(--ui-alt); }

.trust-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--ui-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--ui-shadow);
}

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--ui-text-muted);
  line-height: 1.55;
}

.trust-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.trust-note-box {
  background: var(--ui-surface-2);
  border-left: 3px solid var(--ui-main);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 1rem 1.25rem;
}

.trust-note-box p {
  font-size: 0.85rem;
  color: var(--ui-text-muted);
  line-height: 1.6;
}

.trust-note-box strong { color: var(--ui-emphasis); }

.consult-note {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  border-left-color: var(--ui-main);
}

.consult-note-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ui-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--ui-shadow);
}

.consult-note strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: var(--ui-emphasis);
}

.consult-note p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ui-text-muted);
  line-height: 1.6;
}

/* ---- TESTIMONIALS SECTION ---- */
.testimonials-section {
  padding-block: var(--section-py);
  background: var(--ui-surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--ui-white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--ui-line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.review-stars {
  display: flex;
  gap: 2px;
}

.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--ui-text);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ui-line);
}

.review-avatar {
  width: 38px;
  height: 38px;
  background: var(--ui-main);
  color: var(--ui-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--ui-emphasis);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--ui-text-muted);
}

/* ---- ORDER SECTION ---- */
.order-section {
  padding-block: var(--section-py);
  background: linear-gradient(135deg, var(--ui-emphasis) 0%, var(--ui-main) 100%);
}

.order-section .section-label { color: rgba(255,255,255,0.65); }
.order-section .section-title { color: var(--ui-white); }

.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.order-left > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
}

.order-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.order-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.order-right .order-form-card {
  background: var(--ui-white);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.order-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--ui-emphasis);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ui-text);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ui-line);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--ui-text);
  background: var(--ui-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder { color: #a0b8af; }

.form-field input:focus,
.form-field select:focus {
  border-color: var(--ui-main);
  box-shadow: 0 0 0 3px rgba(26, 92, 74, 0.1);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%235a7068' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--ui-text-muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.form-disclaimer a { color: var(--ui-main); }

/* ---- FAQ SECTION ---- */
.faq-section {
  padding-block: var(--section-py);
  background: var(--ui-white);
}

.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ui-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--ui-line);
}

.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ui-emphasis);
  transition: background var(--transition), color var(--transition);
}

.faq-trigger:hover { background: var(--ui-surface); }

.faq-trigger[aria-expanded="true"] {
  background: var(--ui-surface);
  color: var(--ui-main);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--ui-text-muted);
}

.faq-trigger[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--ui-main);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  background: var(--ui-surface);
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--ui-text-muted);
  line-height: 1.7;
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding-block: var(--section-py);
  background: var(--ui-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info .section-title { margin-bottom: 0.75rem; }

.contact-info > p {
  color: var(--ui-text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--ui-text);
  line-height: 1.5;
}

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

.contact-cta-card {
  background: var(--ui-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--ui-line);
  text-align: center;
}

.contact-cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.contact-cta-card p {
  color: var(--ui-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
}

.contact-note {
  font-size: 0.78rem;
  color: var(--ui-text-muted);
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

/* ---- SITE FOOTER ---- */
.site-footer {
  background: var(--ui-emphasis);
  color: rgba(255,255,255,0.75);
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-logo {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.footer-brand .brand-name { color: rgba(255,255,255,0.9); }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.78rem;
  opacity: 0.6;
  font-style: italic;
}

.footer-links-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-col li {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-links-col a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links-col a:hover { color: rgba(255,255,255,0.95); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  opacity: 0.5;
  line-height: 1.5;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--ui-emphasis);
  color: var(--ui-white);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 1rem 1.5rem;
  width: min(560px, calc(100vw - 2rem));
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.5;
  min-width: 200px;
}

.cookie-content a { color: var(--ui-cta); }

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-actions .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

/* ---- SUCCESS PAGE SPECIFIC ---- */
.success-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--gutter);
  text-align: center;
}

.success-card {
  max-width: 520px;
  background: var(--ui-white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lift);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--ui-surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* ---- LEGAL PAGES ---- */
.legal-hero {
  background: var(--ui-surface);
  padding: 3rem var(--gutter) 2.5rem;
  border-bottom: 1px solid var(--ui-line);
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ui-emphasis);
}

.legal-hero p {
  font-size: 0.9rem;
  color: var(--ui-text-muted);
  margin-top: 0.5rem;
}

.legal-body {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
}

.legal-body h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--ui-emphasis);
}

.legal-body h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--ui-emphasis);
  font-family: var(--font-body);
  font-weight: 600;
}

.legal-body p,
.legal-body li {
  font-size: 0.93rem;
  color: var(--ui-text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body a { color: var(--ui-main); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }

  .routine-steps { flex-direction: column; }
  .routine-connector { width: 2px; height: 30px; }
}

@media (max-width: 860px) {
  .awareness-grid,
  .product-grid,
  .trust-grid,
  .order-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid,
  .forwhom-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .product-visual-col { order: -1; }

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

  .mobile-toggle { display: flex; }

  .awareness-visual img { height: 320px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

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

  .order-form-card { padding: 1.25rem; }

  .cookie-content { flex-direction: column; align-items: flex-start; }
}

/* ---- SCROLL ANIMATIONS ---- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

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