/* =============================================
   STYLE3.CSS – Premium Heritage Design System
   B+F Bakery & Food GmbH
   Inspired by: Coppenrath-Wiese, Kuehlmann, Dr. Oetker
   ============================================= */

/* ----- CSS Custom Properties ----- */
:root {
  /* Primary: Deep Navy (Kuehlmann-inspired authority) */
  --primary:        #1B3A5C;
  --primary-light:  #2A5A8C;
  --primary-dark:   #0F2640;
  --primary-soft:   rgba(27, 58, 92, 0.06);

  /* Accent: Warm Gold (Coppenrath appetite appeal) */
  --gold:           #C8993F;
  --gold-light:     #E2B964;
  --gold-dark:      #A67D2E;
  --gold-soft:      rgba(200, 153, 63, 0.10);

  /* Neutral palette */
  --cream:          #FFF9F0;
  --cream-dark:     #F0E6D4;
  --warm-white:     #FEFCF8;
  --ink:            #1A1A2E;
  --ink-light:      #4A4A5E;
  --muted:          #7A7A8E;
  --border:         #E8E2D8;
  --border-light:   #F2EDE5;

  /* Sustainability green */
  --green:          #2D6B45;
  --green-light:    #3D8B5D;
  --green-soft:     rgba(45, 107, 69, 0.08);

  /* System */
  --radius:         0.75rem;
  --radius-lg:      1.25rem;
  --radius-xl:      1.75rem;
  --radius-2xl:     2.5rem;
  --shadow-sm:      0 1px 3px rgba(26, 26, 46, 0.04), 0 1px 2px rgba(26, 26, 46, 0.02);
  --shadow:         0 4px 16px rgba(26, 26, 46, 0.06), 0 2px 4px rgba(26, 26, 46, 0.03);
  --shadow-md:      0 8px 30px rgba(26, 26, 46, 0.08);
  --shadow-lg:      0 16px 50px rgba(26, 26, 46, 0.10);
  --shadow-xl:      0 24px 64px rgba(26, 26, 46, 0.14);

  /* Transitions */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Background Utilities ----- */
.bg-light {
  background-color: var(--cream) !important;
}

.bg-white-section {
  background-color: var(--warm-white) !important;
}

.bg-primary-soft {
  background-color: var(--primary-soft) !important;
}

.bg-navy {
  background-color: var(--primary) !important;
}

.bg-green-soft {
  background-color: var(--green-soft) !important;
}

/* ----- Base Typography ----- */
body {
  font-family: 'DM Sans', 'Montserrat', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background: var(--warm-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

/* Serif headlines (Oetker-inspired heritage feel) */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h4, h5, h6 {
  font-family: 'DM Sans', 'Montserrat', sans-serif;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p {
  color: var(--ink-light);
  font-size: 1.05rem;
}

/* ----- Section Spacing ----- */
.section {
  padding: 7rem 0;
  scroll-margin-top: 80px;
  position: relative;
}

/* ----- Wave Divider (SVG between sections) ----- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider.flip {
  transform: scaleY(-1);
  margin-bottom: -1px;
  margin-top: 0;
}

/* ----- Section Kicker (Sub-Heading above h2) ----- */
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Sans', 'Montserrat', sans-serif;
}

.section-kicker::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
}

/* ----- Section Headers ----- */
.section-header {
  max-width: 680px;
  margin-bottom: 4rem;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ----- Divider Line ----- */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  border: none;
  opacity: 1;
}

/* =============================================
   BUTTONS – Premium pill style
   ============================================= */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2.25rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 58, 92, 0.3);
  color: #fff;
}

.btn-outline-brand {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  transition: all 0.5s var(--ease-out);
  font-family: 'DM Sans', sans-serif;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 58, 92, 0.25);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 2.25rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  transition: all 0.5s var(--ease-out);
  font-family: 'DM Sans', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 153, 63, 0.35);
  color: #fff;
  filter: brightness(1.08);
}

.btn-outline-gold {
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  transition: all 0.5s var(--ease-out);
  font-family: 'DM Sans', sans-serif;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 153, 63, 0.25);
}

.btn-brand {
  background: var(--primary);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.4s var(--ease-smooth);
  font-family: 'DM Sans', sans-serif;
}

.btn-brand:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   FEATURE CARDS – Glass morphism strip
   ============================================= */
.feature-card {
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  transition: all 0.6s var(--ease-out);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Gold top accent bar */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 2px 2px;
  transition: width 0.5s var(--ease-out);
}

.feature-card:hover::before {
  width: 80px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), rgba(27, 58, 92, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  transition: all 0.6s var(--ease-out);
  border: 1px solid rgba(27, 58, 92, 0.06);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(27, 58, 92, 0.2);
  border-color: transparent;
}

.feature-card h6 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* =============================================
   WELCOME SECTION IMAGE
   ============================================= */
.welcome-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.welcome-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(27, 58, 92, 0.06);
  pointer-events: none;
}

.welcome-image-wrapper img {
  transition: transform 1s var(--ease-out);
}

.welcome-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Decorative accent: golden corner badge */
.welcome-image-wrapper::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  top: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--gold-soft), transparent);
  border-radius: 50%;
  z-index: 1;
}

/* =============================================
   STATS / COUNTER SECTION (NEW – Oetker-inspired)
   ============================================= */
.stats-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  z-index: 0;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 153, 63, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'DM Sans', sans-serif;
}

.stat-divider {
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  border-radius: 1px;
  opacity: 0.5;
}

/* =============================================
   PROGRESS BARS – Navy to Gold gradient
   ============================================= */
.progress {
  background: var(--cream-dark);
  border-radius: 999px;
  overflow: hidden;
  height: 8px;
}

.progress-bar-brand {
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--gold));
  border-radius: 999px;
  transition: width 1.8s var(--ease-out);
  position: relative;
}

.progress-bar-brand::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  border-radius: 0 999px 999px 0;
}

/* =============================================
   SUSTAINABILITY CARD
   ============================================= */
.sustainability-card {
  border: none;
  border-radius: var(--radius-2xl);
  background: var(--warm-white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.sustainability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--gold));
}

/* =============================================
   CHECK LIST ITEMS
   ============================================= */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  transition: transform 0.3s var(--ease-smooth);
}

.check-item:hover {
  transform: translateX(4px);
}

.check-item .bi-check-circle-fill {
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* =============================================
   CTA BANNER (NEW – full-width navy strip)
   ============================================= */
.cta-banner {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  z-index: 0;
}

/* Decorative gold circles */
.cta-banner::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(200, 153, 63, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.cta-banner .cta-circle-2 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(200, 153, 63, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h3 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* =============================================
   CONTACT LIST
   ============================================= */
.contact-list li {
  font-size: 0.95rem;
  padding: 0.6rem 0;
  transition: transform 0.3s var(--ease-smooth);
}

.contact-list li:hover {
  transform: translateX(4px);
}

.contact-list a:hover {
  color: var(--primary) !important;
}

.contact-list .bi {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-dark) !important;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.4s var(--ease-smooth);
}

.contact-list li:hover .bi {
  background: var(--gold);
  color: #fff !important;
}

/* =============================================
   MEGA DROPDOWN (Navbar)
   ============================================= */
.mega-dropdown .mega-menu {
  min-width: 740px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
}

.mega-brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: var(--cream);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--border);
  font-weight: 600;
  transition: all 0.4s var(--ease-out);
  font-size: 0.85rem;
}

.mega-brand-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 58, 92, 0.2);
}

/* =============================================
   SCROLL-REVEAL ANIMATION
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out),
              transform 0.9s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* Staggered reveal delays */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* =============================================
   MAP CONTAINER
   ============================================= */
.map-container {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* =============================================
   FOOTER – Deep navy gradient
   ============================================= */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark), #0A1A2E);
  color: rgba(255, 255, 255, 0.6);
  padding: 5rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}

.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(200, 153, 63, 0.25);
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.9rem;
  position: relative;
  padding-left: 0;
  transition: all 0.3s var(--ease-smooth);
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.4s var(--ease-out);
}

.footer-links a:hover {
  padding-left: 6px;
  color: var(--gold-light);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.85rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
}

/* Footer newsletter */
.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease-smooth);
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 153, 63, 0.15);
  color: #fff;
}

.footer-newsletter .btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.footer-newsletter .btn:hover {
  filter: brightness(1.1);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  margin-top: 3.5rem;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* =============================================
   PARALLAX BACKGROUND (organic shapes)
   ============================================= */
.parallax-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.parallax-bg::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-soft), transparent 70%);
  top: -120px;
  right: -120px;
  animation: organicFloat 14s ease-in-out infinite;
}

.parallax-bg::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 60% 40% 50% 50%;
  background: radial-gradient(circle, rgba(200, 153, 63, 0.04), transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: organicFloat 11s ease-in-out infinite reverse;
}

@keyframes organicFloat {
  0%, 100% {
    border-radius: 60% 40% 50% 50%;
    transform: rotate(0deg) scale(1);
  }
  33% {
    border-radius: 50% 60% 40% 50%;
    transform: rotate(3deg) scale(1.03);
  }
  66% {
    border-radius: 40% 50% 60% 50%;
    transform: rotate(-3deg) scale(0.97);
  }
}

/* =============================================
   TEXT UTILITIES
   ============================================= */
.text-primary-custom {
  color: var(--primary) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-green {
  color: var(--green) !important;
}

/* =============================================
   ORGANIC SHAPES (decoration)
   ============================================= */
.organic-shape {
  position: absolute;
  border-radius: 60% 40% 50% 50%;
  background: var(--primary-soft);
  z-index: 0;
  pointer-events: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .mega-dropdown .mega-menu {
    min-width: auto;
  }
  .section {
    padding: 5rem 0;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .welcome-image-wrapper::before {
    display: none;
  }
  .stat-number {
    font-size: 2.75rem;
  }
  .cta-banner h3 {
    font-size: 1.85rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 3.5rem 0;
  }
  h1.display-5 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-header h2 {
    font-size: 1.75rem;
  }
  .section-kicker {
    font-size: 0.65rem;
  }
  .feature-card {
    padding: 1.75rem 1.25rem;
  }
  .stat-number {
    font-size: 2.25rem;
  }
  .stats-section {
    padding: 3rem 0;
  }
  .cta-banner {
    padding: 3rem 0;
  }
  .cta-banner h3 {
    font-size: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .feature-card,
  .feature-icon,
  .product-premium,
  .welcome-image-wrapper img {
    transition: none;
  }
  .parallax-bg::before,
  .parallax-bg::after {
    animation: none;
  }
}
