/* ============================================================
   WELLFIT — Design System (ISG-Style Adapted)
   ============================================================ */

/* --- CSS Variables --- */
:root {
   --wf-teal: #0d9488;
   --wf-teal-light: #2dd4bf;
   --wf-teal-lighter: #99f6e4;
   --wf-cyan: #06b6d4;
   --wf-blue: #1d4ed8;
   --font-body: 'Outfit', system-ui, sans-serif;
   --font-heading: 'Space Grotesk', 'Outfit', sans-serif;
   --font-serif: 'Space Grotesk', 'Outfit', sans-serif;
   --text-primary: #ffffff;
   --text-secondary: rgba(255, 255, 255, 0.65);
   --md-on-surface: #ffffff;
   --md-on-surface-variant: rgba(255, 255, 255, 0.6);
   --bg-surface: #000000;
   --space-xs: 8px;
   --space-sm: 16px;
   --space-md: 24px;
   --space-lg: 48px;
   --space-xl: 64px;
   --space-2xl: 96px;
   --radius-sm: 8px;
   --radius-md: 12px;
   --radius-lg: 16px;
   --radius-xl: 40px;
   --duration-short: 0.2s;
   --duration-medium: 0.35s;
   --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
   --sw-c: rgba(255, 255, 255, 0.7);
}

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

html {
   scroll-behavior: smooth;
   -webkit-font-smoothing: antialiased;
}

body {
   font-family: var(--font-body);
   background: var(--bg-surface);
   color: var(--text-primary);
   overflow-x: hidden;
   line-height: 1.6;
}

section {
   scroll-margin-top: 120px;
}

a {
   color: inherit;
   text-decoration: none;
}

ul {
   list-style: none;
}

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

.sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   border: 0;
}

/* --- Canvas Background --- */
#geo-canvas {
   position: fixed;
   inset: 0;
   z-index: 0;
   pointer-events: none;
   mix-blend-mode: screen;
}

/* --- Ambient Shapes --- */
.ambient-shape {
   position: fixed;
   border-radius: 50%;
   pointer-events: none;
   z-index: 0;
   filter: blur(100px);
   opacity: 0.15;
}

.ambient-shape--1 {
   width: 600px;
   height: 600px;
   top: -200px;
   left: -200px;
   background: radial-gradient(circle, var(--wf-teal) 0%, transparent 70%);
   animation: ambientFloat 20s ease-in-out infinite;
}

.ambient-shape--2 {
   width: 500px;
   height: 500px;
   top: 40%;
   right: -150px;
   background: radial-gradient(circle, var(--wf-cyan) 0%, transparent 70%);
   animation: ambientFloat 25s ease-in-out infinite reverse;
}

.ambient-shape--3 {
   width: 400px;
   height: 400px;
   bottom: 10%;
   left: 30%;
   background: radial-gradient(circle, var(--wf-blue) 0%, transparent 70%);
   animation: ambientFloat 30s ease-in-out infinite 5s;
}

@keyframes ambientFloat {

   0%,
   100% {
      transform: translate(0, 0) scale(1);
   }

   33% {
      transform: translate(30px, -20px) scale(1.05);
   }

   66% {
      transform: translate(-20px, 30px) scale(0.95);
   }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
   position: fixed;
   top: var(--space-md);
   left: 50%;
   transform: translateX(-50%);
   z-index: 1000;
   width: min(92vw, 1100px);
   transition: top 0.4s var(--ease-out), width 0.4s var(--ease-out);
}

.nav__inner {
   position: relative;
   display: grid;
   grid-template-columns: auto 1fr auto auto auto;
   align-items: center;
   gap: var(--space-md);
   padding: 10px 24px;
   border-radius: 100px;
   transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

   /* Apple-style Liquid Glass */
   background: rgba(22, 22, 22, 0.55);
   backdrop-filter: blur(40px) saturate(180%);
   -webkit-backdrop-filter: blur(40px) saturate(180%);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-top: 1px solid rgba(255, 255, 255, 0.3);
   box-shadow:
      0 12px 48px rgba(0, 0, 0, 0.5),
      inset 0 1px 1px rgba(255, 255, 255, 0.2),
      inset 0 -1px 2px rgba(0, 0, 0, 0.5);

   /* Hardware Acceleration */
   transform: translateZ(0);
   will-change: transform;
   overflow: visible;
   --nav-highlight-angle: 135deg;
   --nav-highlight-opacity: 0;
   isolation: isolate;
}

/* Noise Texture Layer for Vision Pro Feel */
.nav__inner::before {
   content: "";
   position: absolute;
   inset: 0;
   z-index: -1;
   opacity: 0.07;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
   pointer-events: none;
   mix-blend-mode: overlay;
   border-radius: inherit;
}

/* Specular highlight overlay — follows mouse */
.nav__inner::after {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: 100px;
   padding: 1px;
   background: linear-gradient(var(--nav-highlight-angle),
         rgba(255, 255, 255, 0) 0%,
         rgba(255, 255, 255, 0.12) 33%,
         rgba(255, 255, 255, 0.25) 66%,
         rgba(255, 255, 255, 0) 100%);
   -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
   mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   mix-blend-mode: screen;
   opacity: var(--nav-highlight-opacity);
   transition: opacity 0.3s ease-out;
   pointer-events: none;
}

.nav.is-scrolled {
   top: 12px;
}

.nav.is-scrolled .nav__inner {
   padding: 8px 20px;
   /* Thick High-Volume Glass Effect */
   background: rgba(30, 30, 30, 0.5);
   backdrop-filter: blur(12px) saturate(150%);
   -webkit-backdrop-filter: blur(12px) saturate(150%);

   /* 3D Cut Glass Edges */
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-top: 1px solid rgba(255, 255, 255, 0.4);
   border-bottom: 1px solid rgba(0, 0, 0, 0.4);

   /* Voluminous 3D Shadows */
   box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.1),
      inset 0 10px 20px rgba(255, 255, 255, 0.1),
      0 25px 50px -12px rgba(0, 0, 0, 0.8),
      0 0 30px rgba(0, 0, 0, 0.4);
}

/* Nav Logo */
.nav__logo {
   display: flex;
   align-items: center;
   z-index: 10;
   text-decoration: none;
   color: #fff;
}

.nav__logo-img {
   height: 52px;
   width: auto;
   transition: transform 0.3s var(--ease-out), filter 0.3s;
   transform-origin: center left;
}

.nav__logo:hover .nav__logo-img {
   transform: scale(1.05);
}

/* Nav Links */
.nav__links {
   display: flex;
   align-items: center;
   gap: 4px;
   justify-content: center;
   position: relative;
   grid-column: 2;
}

.nav__indicator {
   position: absolute;
   top: 50%;
   left: 0;
   height: 100%;
   background: rgba(255, 255, 255, 0.15);
   border-radius: 100px;
   transform: translateY(-50%);
   transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1),
               width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
               opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
   pointer-events: none;
   z-index: 1;
   opacity: 0;
}

.nav__link {
   position: relative;
   padding: 8px 16px;
   font-size: 1.5rem;
   font-weight: 500;
   color: rgba(255, 255, 255, 0.65);
   transition: color 0.3s;
   white-space: nowrap;
   z-index: 2;
}

.nav__link:hover,
.nav__link.is-active {
   color: #fff;
}

.nav__link.is-active {
   text-shadow: 0 0 12px rgba(13, 148, 136, 0.5);
}

/* Glow Orb */
.nav__glow-orb {
   position: absolute;
   pointer-events: none;
   z-index: 1;
   opacity: 0;
   will-change: left, width, height, opacity, filter, background;
   transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1),
               width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
               height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
               border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
               opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
               filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
               background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
               box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__glow-orb.is-morphing {
   transition: none;
}

.nav__glow-orb.is-logo-glow {
   background: rgba(13, 148, 136, 0.45);
   filter: blur(30px);
}

.nav__glow-orb.is-pill {
   /* Thick frosted glass fill */
   background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(13, 148, 136, 0.12) 40%,
      rgba(13, 148, 136, 0.18) 100%
   );
   backdrop-filter: blur(16px) saturate(180%);
   -webkit-backdrop-filter: blur(16px) saturate(180%);

   /* Cut glass edges */
   border: 1px solid rgba(255, 255, 255, 0.18);
   border-top: 1px solid rgba(255, 255, 255, 0.35);
   border-bottom: 1px solid rgba(0, 0, 0, 0.2);

   /* Volumetric 3D depth */
   box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.4),
      inset 0 -1px 2px rgba(0, 0, 0, 0.15),
      inset 0 4px 8px rgba(255, 255, 255, 0.06),
      0 2px 8px rgba(0, 0, 0, 0.25),
      0 0 12px rgba(13, 148, 136, 0.1);
}

/* Hamburger */
.nav__hamburger {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   padding: 8px;
   z-index: 10;
   flex-direction: column;
   gap: 5px;
}

.nav__hamburger-line {
   width: 24px;
   height: 2px;
   background: #fff;
   border-radius: 2px;
   transition: all 0.3s;
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(2) {
   opacity: 0;
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(3) {
   transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 90px var(--space-lg) var(--space-md);
   z-index: 1;
   overflow: hidden;
}

.hero__content {
   max-width: 1200px;
   margin: 0 auto;
   text-align: center;
}

.hero--centered .hero__content {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
}

.hero__subtitle {
   font-family: var(--font-heading);
   font-size: clamp(1.2rem, 2.5vw, 2rem);
   font-weight: 800;
   color: var(--wf-teal-light);
   letter-spacing: 0.15em;
   text-transform: uppercase;
   margin-bottom: var(--space-sm);
   animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__tagline {
   font-size: clamp(1rem, 1.5vw, 1.2rem);
   font-weight: 500;
   color: rgba(255, 255, 255, 0.9);
   max-width: 600px;
   margin: 0 auto var(--space-sm);
   animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(20px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Hero Action Pills */
.hero__actions {
   display: flex;
   gap: var(--space-sm);
   justify-content: center;
   margin-bottom: var(--space-xl);
   animation: fadeInUp 0.8s var(--ease-out) 1s both;
   flex-wrap: wrap;
}

/* Liquid / Fancy Hover Button */
.btn-liquid {
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 4px;
   border-radius: 100px;
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
   text-decoration: none;
   overflow: hidden;
   transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-liquid:hover {
   transform: scale(1.05);
}

.btn-liquid__inner {
   position: relative;
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 16px 40px;
   background: var(--bg-surface);
   border-radius: 100px;
   z-index: 2;
   font-family: var(--font-body);
   font-weight: 600;
   font-size: 1.125rem;
   color: var(--text-primary);
   border: 1px solid rgba(13, 148, 136, 0.3);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
   transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-liquid:hover .btn-liquid__inner {
   border-color: rgba(45, 212, 191, 0.8);
   box-shadow: 0 12px 40px rgba(13, 148, 136, 0.4);
}

.btn-liquid__bg {
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, #0d9488, #2dd4bf, #0284c7, #0d9488);
   background-size: 300% 100%;
   border-radius: 100px;
   z-index: 0;
   animation: liquidShift 4s linear infinite;
   opacity: 0.6;
   transition: opacity 0.3s;
}

.btn-liquid:hover .btn-liquid__bg {
   opacity: 1;
   filter: blur(8px);
}

.btn-liquid__blob {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 120%;
   height: 120%;
   background: radial-gradient(circle, rgba(45, 212, 191, 0.8) 0%, transparent 70%);
   transform: translate(-50%, -50%) scale(0);
   border-radius: 50%;
   z-index: 1;
   transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
   pointer-events: none;
}

.btn-liquid:hover .btn-liquid__blob {
   transform: translate(-50%, -50%) scale(1);
   animation: pulseBlob 2s infinite alternate;
}

@keyframes liquidShift {
   0% {
      background-position: 0% 50%;
   }

   100% {
      background-position: 100% 50%;
   }
}

@keyframes pulseBlob {
   0% {
      opacity: 0.5;
      transform: translate(-50%, -50%) scale(0.9);
   }

   100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.1);
   }
}

.btn-liquid .icon {
   color: var(--wf-teal-light);
   transition: color 0.3s, transform 0.3s;
}

.btn-liquid:hover .icon {
   color: #fff;
   transform: rotate(-10deg) scale(1.1);
}

body.theme-light .btn-liquid__inner {
   background: #fff;
   color: #1a1a1a;
}

/* Sparkle Star Burst on Hover */
.sparkle-btn { overflow: visible; }

.sparkle-star {
   position: absolute;
   width: 20px;
   height: auto;
   filter: drop-shadow(0 0 0 #a5f3fc);
   z-index: -5;
   transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
   opacity: 0;
}
.sparkle-fill { fill: #a5f3fc; }
.sparkle-star.star-1 { top: 20%; left: 20%; width: 22px; }
.sparkle-star.star-2 { top: 45%; left: 45%; width: 12px; transition-timing-function: cubic-bezier(0, 0.4, 0, 1.01); }
.sparkle-star.star-3 { top: 40%; left: 40%; width: 5px; transition-timing-function: cubic-bezier(0, 0.4, 0, 1.01); }
.sparkle-star.star-4 { top: 20%; left: 60%; width: 8px; transition-duration: 0.8s; }
.sparkle-star.star-5 { top: 25%; left: 45%; width: 14px; transition-duration: 0.6s; }
.sparkle-star.star-6 { top: 5%; left: 50%; width: 5px; transition-duration: 0.8s; }

.sparkle-btn:hover .sparkle-star { opacity: 1; }
.sparkle-btn:hover .sparkle-star.star-1 { top: -90%; left: -35%; filter: drop-shadow(0 0 10px #a5f3fc); z-index: 2; }
.sparkle-btn:hover .sparkle-star.star-2 { top: -40%; left: 5%; filter: drop-shadow(0 0 10px #67e8f9); z-index: 2; }
.sparkle-btn:hover .sparkle-star.star-3 { top: 70%; left: -20%; filter: drop-shadow(0 0 10px #22d3ee); z-index: 2; }
.sparkle-btn:hover .sparkle-star.star-4 { top: 20%; left: 100%; filter: drop-shadow(0 0 10px #2dd4bf); z-index: 2; }
.sparkle-btn:hover .sparkle-star.star-5 { top: -50%; left: 120%; filter: drop-shadow(0 0 10px #5eead4); z-index: 2; }
.sparkle-btn:hover .sparkle-star.star-6 { top: -80%; left: 50%; filter: drop-shadow(0 0 10px #99f6e4); z-index: 2; }

/* Hero Product */
.hero__image-wrapper {
   animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero__product-img--centered {
   height: clamp(350px, 50vh, 600px);
   width: auto;
   filter: drop-shadow(0 40px 80px rgba(13, 148, 136, 0.25));
   transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
   transform-origin: center center;
}

.hero__image-wrapper:hover .hero__product-img--centered {
   transform: scale(1.15) translateY(-15px);
   filter: drop-shadow(0 30px 60px rgba(45, 212, 191, 0.8)) brightness(1.1);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
   padding: var(--space-xl) var(--space-lg);
   border-top: 1px solid rgba(13, 148, 136, 0.15);
   border-bottom: 1px solid rgba(13, 148, 136, 0.15);
   background: linear-gradient(180deg, rgba(13, 148, 136, 0.04) 0%, transparent 40%, transparent 60%, rgba(13, 148, 136, 0.04) 100%);
   position: relative;
   z-index: 1;
}

.stats__inner {
   max-width: 1400px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: var(--space-lg);
}

.stat {
   text-align: center;
   flex: 1;
}

.stat__number {
   font-size: clamp(2.5rem, 5vw, 3.5rem);
   font-weight: 700;
   color: #fff;
   font-variant-numeric: tabular-nums;
   text-shadow: 0 0 30px rgba(13, 148, 136, 0.4), 0 0 60px rgba(13, 148, 136, 0.15);
}

.stat__suffix {
   font-size: clamp(1.5rem, 3vw, 2rem);
   font-weight: 300;
   color: var(--wf-teal-light);
   text-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
}

.stat__label {
   display: block;
   font-size: 0.8125rem;
   font-weight: 500;
   color: var(--md-on-surface-variant);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   margin-top: var(--space-xs);
   max-width: 170px;
   margin-inline: auto;
}

.stat__divider {
   width: 1px;
   height: 56px;
   background: linear-gradient(to bottom, transparent, rgba(13, 148, 136, 0.3), transparent);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
   text-align: center;
   margin-bottom: var(--space-xl);
}

.section-header__label {
   display: inline-block;
   font-size: 0.95rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   color: var(--wf-teal-light);
   padding: 10px 24px;
   border: 2.5px solid rgba(13, 148, 136, 0.5);
   border-radius: var(--radius-xl);
   margin-bottom: var(--space-md);
   box-shadow: 0 0 15px rgba(13, 148, 136, 0.1), inset 0 0 15px rgba(13, 148, 136, 0.05);
   background: rgba(13, 148, 136, 0.06);
}

.section-header__title {
   font-family: var(--font-serif);
   font-size: clamp(2rem, 4vw, 3rem);
   line-height: 1.2;
   color: var(--md-on-surface);
   clip-path: inset(0 100% 0 0);
   transition: clip-path 0.8s var(--ease-out);
}

.animate-on-scroll.is-visible .section-header__title,
.section-header__title.is-revealed {
   clip-path: inset(0 0% 0 0);
}

.section-header__subtitle {
   font-size: 1.125rem;
   color: var(--md-on-surface-variant);
   margin-top: var(--space-md);
   max-width: 500px;
   margin-left: auto;
   margin-right: auto;
}

/* ============================================================
   BENEFITS / SERVICE CARDS
   ============================================================ */
.services {
   padding: var(--space-2xl) var(--space-lg);
   position: relative;
   z-index: 1;
}

.services__inner {
   max-width: 1400px;
   margin: 0 auto;
}

.services__grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: var(--space-md);
   perspective: 1000px;
}

.service-card {
   position: relative;
   display: flex;
   flex-direction: column;
   background: rgb(29, 31, 36);
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-top: 2px solid rgba(255, 255, 255, 0.25);
   border-radius: var(--radius-lg);
   padding: 28px;
   overflow: hidden;
   cursor: pointer;
   transition: all var(--duration-medium) var(--ease-out);
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card__accent {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.4), transparent);
   transform: scaleX(0);
   transform-origin: center;
   transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
   transform: translateY(-4px);
   border-color: rgba(255, 255, 255, 0.16);
   box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.12);
}

.service-card:hover .service-card__accent {
   transform: scaleX(1);
}

.service-card__bg-icon {
   position: absolute;
   bottom: -4%;
   right: -2%;
   width: 45%;
   max-width: 180px;
   height: auto;
   color: rgba(255, 255, 255, 0.12);
   pointer-events: none;
   z-index: 0;
}

.service-card__bg-icon-img {
   position: absolute;
   top: 32px;
   right: 32px;
   width: 72px;
   height: 72px;
   opacity: 1;
   pointer-events: none;
   z-index: 10;
   object-fit: contain;
   transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__bg-icon-img {
   transform: scale(1.15) translateY(-4px) rotate(5deg);
}

/* Language Switcher — Circular Liquid Glass */
.lang-switcher {
   position: relative;
   margin-left: 8px;
}

.lang-switcher__btn {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 42px;
   height: 42px;
   padding: 0;
   border-radius: 50%;
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.15);
   box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.4),
      0 2px 6px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 3px rgba(0, 0, 0, 0.3);
   color: var(--text-primary);
   font-family: var(--font-body);
   font-size: 0.85rem;
   font-weight: 700;
   letter-spacing: 0.05em;
   cursor: pointer;
   transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
   outline: none;
}

.lang-switcher__btn:hover {
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
   border-color: rgba(255, 255, 255, 0.25);
   transform: scale(1.08);
   box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.5),
      0 2px 8px rgba(0, 0, 0, 0.3),
      inset 0 1px 1px rgba(255, 255, 255, 0.25),
      inset 0 -1px 3px rgba(0, 0, 0, 0.3);
}

.lang-switcher__dropdown {
   position: absolute;
   top: calc(100% + 10px);
   left: 50%;
   min-width: 140px;
   background: rgba(22, 22, 22, 0.9);
   backdrop-filter: blur(40px);
   -webkit-backdrop-filter: blur(40px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-top: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 16px;
   padding: 6px;
   flex-direction: column;
   z-index: 1000;
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
   opacity: 0;
   visibility: hidden;
   transform: translateX(-50%) translateY(-8px);
   transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-switcher__dropdown.is-open {
   opacity: 1;
   visibility: visible;
   transform: translateX(-50%) translateY(0);
   display: flex;
}

.lang-switcher__option {
   padding: 9px 14px;
   background: none;
   border: none;
   color: rgba(255, 255, 255, 0.7);
   font-family: var(--font-body);
   font-size: 0.9rem;
   text-align: left;
   cursor: pointer;
   border-radius: 10px;
   transition: all 0.2s ease;
}

.lang-switcher__option:hover {
   background: rgba(255, 255, 255, 0.1);
   color: #fff;
}

.lang-switcher__option.is-active {
   color: var(--wf-teal-light);
   font-weight: 600;
}

body.theme-light .lang-switcher__btn {
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 100%);
   border-color: rgba(255, 255, 255, 0.4);
   color: #1a1a1a;
   box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.08),
      0 2px 6px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      inset 0 -1px 3px rgba(0, 0, 0, 0.05);
}

body.theme-light .lang-switcher__btn:hover {
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 100%);
}

body.theme-light .lang-switcher__dropdown {
   background: rgba(255, 255, 255, 0.9);
   border-color: rgba(255, 255, 255, 0.5);
}

body.theme-light .lang-switcher__option {
   color: rgba(0, 0, 0, 0.6);
}

body.theme-light .lang-switcher__option:hover {
   background: rgba(0, 0, 0, 0.05);
   color: #1a1a1a;
}

.service-card__title {
   font-family: var(--font-heading);
   font-size: 2rem;
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: var(--space-sm);
   position: relative;
   z-index: 1;
}

.service-card__desc {
   color: var(--text-secondary);
   font-size: 1.15rem;
   line-height: 1.6;
   margin-bottom: var(--space-md);
   max-width: 85%;
   flex-grow: 1;
   position: relative;
   z-index: 1;
}

.service-card__ripple {
   position: absolute;
   inset: 0;
   background: radial-gradient(circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(13, 148, 136, 0.15) 0%, transparent 100%);
   opacity: 0;
   transition: opacity var(--duration-medium);
   pointer-events: none;
}

.service-card:hover .service-card__ripple {
   opacity: 1;
}

/* ============================================================
   NUTRITION / HERITAGE SECTION
   ============================================================ */
.heritage {
   padding: var(--space-lg) var(--space-lg) var(--space-2xl);
   position: relative;
   z-index: 1;
}

.heritage__inner {
   max-width: 1400px;
   margin: 0 auto;
}

.heritage__grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: var(--space-md);
}

.heritage-card {
   position: relative;
   background: rgba(30, 30, 30, 0.6);
   backdrop-filter: blur(20px) saturate(1.2);
   -webkit-backdrop-filter: blur(20px) saturate(1.2);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-top: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: var(--radius-lg);
   padding: 24px;
   display: flex;
   flex-direction: column;
   height: 100%;
   transition: all var(--duration-medium) var(--ease-out);
   box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
   overflow: hidden;
}

.heritage-card:hover {
   background: rgba(30, 30, 30, 0.75);
   border-color: rgba(255, 255, 255, 0.16);
   transform: translateY(-4px);
   box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.12);
}

.heritage-card__bg-icon {
   position: absolute;
   bottom: -5%;
   right: -5%;
   width: 50%;
   max-width: 140px;
   color: rgba(255, 255, 255, 0.08);
   pointer-events: none;
   z-index: 0;
}

.heritage-card__content {
   position: relative;
   z-index: 1;
   flex: 1;
   display: flex;
   flex-direction: column;
}

.heritage-card__content--centered {
   align-items: center;
   justify-content: center;
}

.heritage-card__title {
   font-family: var(--font-heading);
   font-size: 1.4rem;
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: var(--space-sm);
}

.heritage-card__desc {
   color: var(--text-secondary);
   font-size: 1rem;
   line-height: 1.6;
}

.heritage-card__product-image {
   max-height: 200px;
   object-fit: contain;
   filter: drop-shadow(0 10px 30px rgba(13, 148, 136, 0.2));
}

/* Nutrition Table */
.nutrition-table {
   display: flex;
   flex-direction: column;
   gap: 0;
   border-top: 2px solid rgba(255, 255, 255, 0.2);
   margin-top: var(--space-sm);
}

.nutrition-row {
   display: flex;
   justify-content: space-between;
   padding: 10px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   font-size: 0.95rem;
   color: var(--text-secondary);
}

.nutrition-row--header {
   font-weight: 600;
   color: var(--text-primary);
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.05em;
   border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nutrition-row--highlight {
   color: var(--wf-teal-light);
   font-weight: 600;
}

/* Badge Grid */
.badge-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: var(--space-sm);
   margin-top: var(--space-sm);
}

.badge-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   padding: 16px 8px;
   border-radius: var(--radius-md);
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.06);
   transition: all 0.3s;
}

.badge-item:hover {
   background: rgba(13, 148, 136, 0.08);
   border-color: rgba(13, 148, 136, 0.2);
}

.badge-icon {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(13, 148, 136, 0.12);
   color: var(--wf-teal-light);
}

.badge-icon .material-symbols-outlined {
   font-size: 22px;
}

.badge-label {
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--text-secondary);
   text-transform: uppercase;
   letter-spacing: 0.1em;
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews-section {
   padding: var(--space-2xl) var(--space-lg);
   position: relative;
   z-index: 1;
}

.reviews-section__inner {
   max-width: 1100px;
   margin: 0 auto;
}

.reviews-carousel {
   position: relative;
   display: flex;
   align-items: center;
   gap: var(--space-md);
}

.reviews-carousel__track {
   display: flex;
   gap: var(--space-md);
   overflow: hidden;
   scroll-behavior: smooth;
   flex: 1;
   padding-top: 20px;
   padding-bottom: 20px;
   margin-top: -20px;
   margin-bottom: -20px;
   -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
   mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.review-card {
   flex: 0 0 calc(50% - 10px);
   min-height: 220px;
   padding: 32px;
   border-radius: var(--radius-xl);
   background: rgba(30, 30, 30, 0.55);
   backdrop-filter: blur(40px) saturate(1.3);
   -webkit-backdrop-filter: blur(40px) saturate(1.3);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-top: 1px solid rgba(255, 255, 255, 0.22);
   box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
   display: flex;
   flex-direction: column;
   justify-content: center;
   transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card:hover {
   border-color: rgba(255, 255, 255, 0.18);
   border-top-color: rgba(255, 255, 255, 0.3);
   transform: translateY(-4px);
   box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.45),
      inset 0 1px 2px rgba(255, 255, 255, 0.14),
      inset 0 -1px 2px rgba(0, 0, 0, 0.3);
}

.review-card__stars {
   font-size: 1.3rem;
   color: #f59e0b;
   margin-bottom: var(--space-sm);
   letter-spacing: 2px;
}

.review-card__text {
   color: var(--text-secondary);
   font-size: 1.05rem;
   line-height: 1.7;
   font-style: italic;
   flex: 1;
}

.review-card__author {
   margin-top: var(--space-md);
   font-weight: 600;
   color: var(--text-primary);
   font-size: 0.95rem;
}

.reviews-carousel__arrow {
   flex-shrink: 0;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.15);
   background: rgba(30, 30, 30, 0.6);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   color: var(--text-primary);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   box-shadow:
      0 2px 12px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.reviews-carousel__arrow:hover {
   background: rgba(13, 148, 136, 0.2);
   border-color: var(--wf-teal);
   transform: scale(1.1);
}

.reviews-carousel__arrow .material-symbols-outlined {
   font-size: 1.5rem;
}

/* Light theme */
body.theme-light .review-card {
   background: rgba(255, 255, 255, 0.7);
   border-color: rgba(255, 255, 255, 0.5);
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.theme-light .reviews-carousel__arrow {
   background: rgba(255, 255, 255, 0.6);
   border-color: rgba(0, 0, 0, 0.08);
}

/* Lang arrow */
.lang-switcher__arrow {
   font-size: 0.9rem !important;
   margin-left: -2px;
   opacity: 0.7;
   transition: transform 0.3s ease;
}

.lang-switcher__btn {
   gap: 1px;
}

/* Expand button width for label + arrow */
.lang-switcher__btn {
   width: auto;
   min-width: 42px;
   padding: 0 10px;
   border-radius: 100px;
}

@media (max-width: 768px) {
   .reviews-carousel__track {
      gap: var(--space-sm);
   }
   .review-card {
      flex: 0 0 calc(100% - 0px);
      min-height: 180px;
      padding: 24px;
   }
   .reviews-carousel__arrow {
      width: 38px;
      height: 38px;
   }
}

/* ============================================================
   CONTACT / NEWSLETTER
   ============================================================ */
.contact {
   padding: var(--space-2xl) var(--space-lg);
   position: relative;
   z-index: 1;
}

.contact__inner {
   max-width: 700px;
   margin: 0 auto;
}

.contact__form {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: var(--space-md);
}

.form-field {
   position: relative;
}

.form-field--full {
   grid-column: span 2;
}

.form-field__input {
   width: 100%;
   padding: 16px 20px;
   font-size: 1rem;
   font-family: var(--font-body);
   color: #fff;
   background: rgba(30, 30, 30, 0.6);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: var(--radius-md);
   outline: none;
   transition: all 0.3s;
}

.form-field__input:focus {
   border-color: var(--wf-teal);
   box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-field__input--textarea {
   resize: vertical;
   min-height: 120px;
}

.form-field__label {
   position: absolute;
   left: 20px;
   top: 16px;
   font-size: 1rem;
   color: var(--md-on-surface-variant);
   pointer-events: none;
   transition: all 0.3s;
}

.form-field__input:focus~.form-field__label,
.form-field__input:not(:placeholder-shown)~.form-field__label {
   top: -10px;
   left: 16px;
   font-size: 0.75rem;
   color: var(--wf-teal-light);
   background: var(--bg-surface);
   padding: 0 4px;
}

.form-field__line {
   position: absolute;
   bottom: 0;
   left: 50%;
   width: 0;
   height: 2px;
   background: var(--wf-teal);
   transition: all 0.3s;
}

.form-field__input:focus~.form-field__line {
   width: 100%;
   left: 0;
}

/* Button */
.btn {
   display: inline-flex;
   align-items: center;
   gap: var(--space-xs);
   padding: 14px 28px;
   border-radius: var(--radius-xl);
   font-family: var(--font-body);
   font-size: 1.0625rem;
   font-weight: 600;
   letter-spacing: 0.02em;
   cursor: pointer;
   border: none;
   position: relative;
   overflow: hidden;
   transition: background-color var(--duration-short) var(--ease-out), box-shadow var(--duration-short) var(--ease-out), color var(--duration-short) var(--ease-out);
}

.btn--primary {
   background: rgba(0, 0, 0, 0.45);
   backdrop-filter: blur(40px) saturate(180%);
   -webkit-backdrop-filter: blur(40px) saturate(180%);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-top: 1px solid rgba(255, 255, 255, 0.28);
   color: #fff;
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
   background: rgba(13, 80, 72, 0.55);
   border-color: rgba(255, 255, 255, 0.2);
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(13, 148, 136, 0.15);
}

.btn--large {
   grid-column: span 2;
   justify-content: center;
   padding: 18px 36px;
}

.btn__icon {
   font-size: 1.125rem;
}

.btn__ripple {
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
   opacity: 0;
   transition: opacity 0.4s;
}

.btn:active .btn__ripple {
   opacity: 1;
}

.ripple-effect {
   position: absolute;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.3);
   transform: scale(0);
   animation: rippleAnim 0.6s ease-out;
   pointer-events: none;
   width: 100px;
   height: 100px;
   margin-left: -50px;
   margin-top: -50px;
}

@keyframes rippleAnim {
   to {
      transform: scale(4);
      opacity: 0;
   }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
   padding: var(--space-xl) var(--space-md);
   background: var(--bg-darker);
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   text-align: center;
}

.footer__copyright {
   color: var(--text-secondary);
   font-size: 0.875rem;
   letter-spacing: 0.5px;
}

/* Glass Social Icons (hosseinnabi pattern) */
.glass-social {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   align-items: center;
}

.glass-icon {
   cursor: pointer;
   position: relative;
   width: 32px;
   height: 32px;
   transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   text-decoration: none;
   isolation: isolate;
}

.glass-icon:hover {
   transform: scale(1.15) translateY(-2px);
}

.glass-icon__bg {
   position: absolute;
   inset: 0;
   border-radius: 8px;
   transform: rotate(10deg);
   transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
   opacity: 0.85; /* Let a tiny bit of background through the color block */
   background: rgba(255, 255, 255, 0.08); /* Default neutral glass */
   border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-icon:hover .glass-icon__bg {
   transform: rotate(18deg) scale(1.1);
   background: var(--brand-color);
}

.glass-icon__front {
   position: absolute;
   inset: 0;
   display: grid;
   place-items: center;
   backdrop-filter: blur(12px) saturate(180%);
   -webkit-backdrop-filter: blur(12px) saturate(180%);
   background: rgba(255, 255, 255, 0.05); /* very clear glass */
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-top: 1px solid rgba(255, 255, 255, 0.6); /* Specular highlight on top */
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 8px;
   box-shadow: 
      inset 0 1px 2px rgba(255, 255, 255, 0.6),
      inset 0 -1px 2px rgba(0, 0, 0, 0.1),
      0 4px 12px rgba(0, 0, 0, 0.4);
   z-index: 1;
   transition: all 0.3s;
}

.glass-icon:hover .glass-icon__front {
   background: rgba(255, 255, 255, 0.12);
   border-top-color: rgba(255, 255, 255, 0.8);
   box-shadow: 
      inset 0 1px 3px rgba(255, 255, 255, 0.8),
      inset 0 -1px 2px rgba(0, 0, 0, 0.1),
      0 6px 16px rgba(0, 0, 0, 0.5);
}

.glass-icon i {
   font-size: 18px;
   background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.footer__legal {
   max-width: 1200px;
   margin: var(--space-xl) auto 0;
   padding-top: var(--space-md);
   border-top: 1px solid rgba(255, 255, 255, 0.05);
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.4);
}

.footer__legal-links {
   display: flex;
   gap: var(--space-md);
}

.footer__legal-links a {
   color: rgba(255, 255, 255, 0.4);
   transition: color 0.3s;
}

.footer__legal-links a:hover {
   color: var(--wf-teal-light);
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.animate-on-scroll {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
   opacity: 1;
   transform: translateY(0);
}


/* Pill Shine */
@keyframes pillShine {

   0%,
   100% {
      background-position: -100% 0;
   }

   50% {
      background-position: 200% 0;
   }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
   .heritage__grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .services__grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 768px) {
   .nav__social {
      display: none !important;
   }

   .nav__links {
      display: none;
   }

   .nav__hamburger {
      display: flex;
      outline: none !important;
      -webkit-tap-highlight-color: transparent;
   }

   .nav button, .nav a, .nav__hamburger:focus, .nav__hamburger:active {
      outline: none !important;
      -webkit-tap-highlight-color: transparent !important;
   }

   .nav__inner {
      grid-template-columns: 1fr auto auto;
   }

   .nav__inner.is-mobile-open {
      border-radius: 24px;
      flex-direction: column;
      padding-bottom: 20px;
   }

   .nav__inner.is-mobile-open::after {
      border-radius: 24px;
   }

   .nav__glow-orb {
      display: none !important;
   }

   .nav__inner.is-mobile-open .nav__links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 16px 0;
      grid-column: 1 / -1;
   }

   .nav__inner.is-mobile-open .nav__social {
      display: flex !important;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 8px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
      grid-column: 1 / -1;
   }

   .hero__title {
      font-size: clamp(5rem, 22vw, 10rem) !important;
   }

   .hero__letter {
      font-size: inherit !important;
   }

   .hero__actions {
      flex-direction: column;
      align-items: center;
   }

   .hero-action-pill {
      width: 100%;
      max-width: 320px;
   }

   .heritage__grid {
      grid-template-columns: 1fr;
   }

   .stats__inner {
      flex-direction: column;
      gap: var(--space-md);
   }

   .stat__divider {
      width: 56px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(13, 148, 136, 0.3), transparent);
   }

   .footer__inner {
      flex-direction: column;
      gap: var(--space-lg);
   }

   .footer__legal {
      flex-direction: column;
      gap: var(--space-sm);
      text-align: center;
   }

   .contact__form {
      grid-template-columns: 1fr;
   }

   .form-field--full,
   .btn--large {
      grid-column: span 1;
   }

   .approach__timeline {
      padding-left: 50px;
   }

   .approach__step-number {
      left: -50px;
      width: 32px;
      height: 32px;
      font-size: 0.55rem;
   }
}

/* ============================================================
   SPECS / SUPPLEMENT FACTS
   ============================================================ */
.specs {
   padding: var(--space-2xl) var(--space-lg);
   position: relative;
   z-index: 1;
}

.specs__inner {
   max-width: 1400px;
   margin: 0 auto;
}

.specs__grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: var(--space-xl);
   align-items: center;
   margin-top: var(--space-xl);
}

.specs__box {
   background: var(--bg-surface);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: var(--radius-xl);
   padding: var(--space-xl);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Supplement Facts Label Styling */
.specs__label {
   background: #fff;
   color: #000;
   padding: 24px;
   font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
   border-radius: 4px; /* classic label feel */
   box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.specs__label-header h3 {
   font-size: 2rem;
   font-weight: 900;
   margin: 0;
   line-height: 1;
   text-transform: uppercase;
}

.specs__label-header p {
   margin: 5px 0 0 0;
   font-weight: 600;
   font-size: 0.9rem;
}

.specs__label-line {
   height: 2px;
   background: #000;
   margin: 10px 0;
}

.specs__label-line--thick {
   height: 6px;
}

.specs__label-row {
   display: flex;
   justify-content: space-between;
   padding: 4px 0;
   font-size: 0.95rem;
}

.specs__label-row--bold {
   font-weight: 900;
}

.specs__label-row--indent {
   padding-left: 15px;
}

.specs__label-footer {
   font-size: 0.75rem;
   margin-top: 10px;
   line-height: 1.3;
}

/* Badge Grid Styling */
.badge-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: var(--space-lg);
}

.badge-item {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   padding: var(--space-lg);
   background: rgba(255, 255, 255, 0.03);
   border-radius: var(--radius-lg);
   border: 1px solid rgba(255, 255, 255, 0.05);
   transition: all 0.3s ease;
}

.badge-item:hover {
   background: rgba(255, 255, 255, 0.06);
   border-color: var(--wf-teal-light);
   transform: translateY(-5px);
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.badge-item__icon {
   width: 48px;
   height: 48px;
   color: var(--wf-teal-light);
   margin-bottom: var(--space-sm);
}

.badge-item__name {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--text-primary);
   margin-bottom: 4px;
}

.badge-item__desc {
   font-size: 0.875rem;
   color: var(--text-secondary);
   line-height: 1.4;
}

@media (max-width: 992px) {
   .specs__grid {
      grid-column-gap: 0;
      grid-template-columns: 1fr;
   }
}

@media (max-width: 576px) {
   .badge-grid {
      grid-template-columns: 1fr;
   }
}