/* ═══════════════════════════════════════════
   BloomHerbalX — Premium Wellness Studio
   Palette: White · Lavender · Grey
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Core Palette */
  --white: #FFFFFF;
  --white-warm: #FDFBFD;
  --lavender-lightest: #F5F0FA;
  --lavender-light: #E8DFF2;
  --lavender: #C4B1D9;
  --lavender-mid: #A48BBE;
  --lavender-deep: #7B5EA7;
  --lavender-dark: #5C3D8F;
  --grey-lightest: #F7F6F8;
  --grey-light: #E8E6EB;
  --grey: #9B96A3;
  --grey-dark: #5A5462;
  --grey-darkest: #2D2833;
  --text-primary: #2D2833;
  --text-secondary: #5A5462;
  --text-muted: #9B96A3;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1140px;

  /* Transitions */
  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.35s var(--ease-elegant);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--white-warm);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }

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

/* ── Typography ───────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 500; }

p { margin-bottom: 1em; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lavender-mid);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  margin-bottom: 20px;
}

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

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lavender-deep), var(--lavender-dark));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(123, 94, 167, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(123, 94, 167, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--lavender-deep);
  border: 1.5px solid var(--lavender-light);
}

.btn-secondary:hover {
  background: var(--lavender-lightest);
  border-color: var(--lavender);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ── Header / Navigation ─────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease-elegant);
  background: rgba(253, 251, 253, 0.0);
}

.site-header.scrolled {
  background: rgba(253, 251, 253, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(45, 40, 51, 0.06);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--lavender-dark);
  letter-spacing: 0.02em;
}

.logo span {
  font-weight: 300;
  color: var(--lavender-mid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--lavender-deep);
  transition: width var(--transition-base);
}

.nav-links a:hover { color: var(--lavender-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--lavender-deep); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  padding: 10px 26px;
  background: var(--lavender-deep);
  color: var(--white) !important;
  border-radius: 60px;
  transition: all var(--transition-base);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--lavender-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Sections ─────────────────────────────── */
section {
  padding: var(--section-padding);
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--lavender-light);
  margin: 0 auto 20px;
}

/* ── Cards ────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--grey-light);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--lavender-light);
  box-shadow: 0 12px 48px rgba(123, 94, 167, 0.08);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--lavender-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}

/* ── Forms ────────────────────────────────── */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: 12px;
  outline: none;
  transition: all var(--transition-base);
}

.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(196, 177, 217, 0.15);
}

/* ── Footer ───────────────────────────────── */
.site-footer {
  background: var(--grey-darkest);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand .logo span { color: var(--lavender-light); }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: color var(--transition-base);
}

.footer-col a:hover { color: var(--lavender-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links a:hover { color: var(--lavender-light); }

.medical-disclaimer {
  width: 100%;
  padding: 24px 0 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.medical-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 700px;
  font-style: italic;
}

/* ── Cookie Modal ─────────────────────────── */
.cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px;
  display: none;
}

.cookie-overlay.show { display: block; }

.cookie-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(45, 40, 51, 0.18);
  border: 1px solid var(--grey-light);
  animation: slideUp 0.5s var(--ease-elegant);
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-box h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cookie-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  padding: 12px 28px;
  font-size: 0.75rem;
}

/* ── Hero Section ─────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(165deg, var(--white-warm) 0%, var(--lavender-lightest) 50%, var(--lavender-light) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(196, 177, 217, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white-warm), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 60px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 32px;
  border: 1px solid var(--lavender-light);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--lavender-deep);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 24px;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  color: var(--lavender-deep);
}

.hero-text {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(92, 61, 143, 0.15));
  animation: float 6s ease-in-out infinite;
}

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

/* ── Trust Bar ────────────────────────────── */
.trust-bar {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
}

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

.trust-item {
  text-align: center;
}

.trust-item .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--lavender-deep);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-item .label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Feature Grid ─────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Steps ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 48px 32px;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--lavender-light);
  line-height: 1;
  margin-bottom: 20px;
}

.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.92rem; }

/* ── Product Card ─────────────────────────── */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-image-box {
  background: linear-gradient(145deg, var(--lavender-lightest), var(--grey-lightest));
  border-radius: 28px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(196, 177, 217, 0.2);
  pointer-events: none;
}

.product-image-box img {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(92, 61, 143, 0.12));
}

.product-info .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--lavender-deep);
  margin: 20px 0;
}

.product-info .price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
}

.product-features {
  margin: 28px 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--grey-lightest);
}

.product-features li:last-child { border-bottom: none; }

.product-features li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lavender-lightest);
  color: var(--lavender-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Order Form ───────────────────────────── */
.order-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--grey-light);
  box-shadow: 0 8px 40px rgba(45, 40, 51, 0.05);
}

.order-form-wrapper h3 {
  margin-bottom: 8px;
}

.order-form-wrapper .form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── FAQ ──────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-base);
}

.faq-question:hover { color: var(--lavender-deep); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lavender-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--lavender-deep);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-elegant);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Contact ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-lightest);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lavender-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.contact-card p {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 400;
}

.map-placeholder {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  background: var(--grey-lightest);
  border: 1px solid var(--grey-light);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
}

/* ── Page Header ──────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(165deg, var(--white-warm), var(--lavender-lightest));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(196, 177, 217, 0.12) 0%, transparent 70%);
}

.page-header h1 { margin-bottom: 16px; position: relative; z-index: 2; }
.page-header p { position: relative; z-index: 2; }

/* ── Consultation Page ────────────────────── */
.consult-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.consult-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--grey-light);
  text-align: center;
  transition: all var(--transition-base);
}

.consult-card:hover {
  border-color: var(--lavender-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123, 94, 167, 0.08);
}

.consult-card .icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.consult-card h3 { margin-bottom: 12px; }

/* ── Advantages Grid ──────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lavender-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.advantage-item h4 { margin-bottom: 6px; }
.advantage-item p { font-size: 0.9rem; margin: 0; }

/* ── Success Page ─────────────────────────── */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  background: linear-gradient(165deg, var(--white-warm), var(--lavender-lightest));
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-deep), var(--lavender-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2.4rem;
  color: var(--white);
  animation: scaleIn 0.6s var(--ease-elegant);
}

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

/* ── Legal Pages ──────────────────────────── */
.legal-content {
  padding: 60px 0 100px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.8;
}

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

.legal-content ul li {
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Eco Badge ────────────────────────────── */
.eco-banner {
  background: var(--grey-darkest);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.eco-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.eco-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.eco-badge .icon {
  font-size: 1.8rem;
}

.eco-badge .text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Animations ───────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-elegant), transform 0.7s var(--ease-elegant);
}

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

/* ── Responsive ───────────────────────────── */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-wrapper img { max-height: 380px; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .consult-process { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s var(--ease-elegant);
    z-index: 1005;
  }

  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .hero-image-wrapper img { max-height: 300px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .btn { padding: 14px 32px; font-size: 0.78rem; }

  .order-form-wrapper { padding: 32px 24px; }
  .product-image-box { padding: 40px; }

  .cookie-box { padding: 24px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }

  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .container { padding: 0 16px; }
}
