/* ============================================
   BIOHEK CORPORATE – DESIGN SYSTEM v3
   Light Theme: White + Turquoise + Black
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary: #00BCD4;
  --primary-dark: #00838F;
  --primary-light: #4DD0E1;
  --primary-lighter: #B2EBF2;
  --primary-glow: rgba(0, 188, 212, 0.2);
  --primary-bg: rgba(0, 188, 212, 0.04);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-300: #94A3B8;
  --gray-400: #64748B;
  --gray-500: #475569;
  --gray-600: #334155;
  --gray-700: #1E293B;
  --gray-800: #0F172A;
  --black: #0A0F1C;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 8px 30px rgba(0, 188, 212, 0.2);
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* --- Scroll Animations --- */
.sr {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr.revealed,
.sr-left.revealed,
.sr-right.revealed,
.sr-scale.revealed {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.d5 {
  transition-delay: 0.5s;
}

.d6 {
  transition-delay: 0.6s;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 transparent);
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px var(--primary-glow));
  }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 9999;
  width: 0;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-fast);
  background: transparent;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--gray-100);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-600);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-primary);
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

/* -- Hero text on dark bg -- */
.header.hero-dark .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.header.hero-dark .nav-links a:hover {
  color: var(--primary-light);
}

.header.hero-dark.scrolled .nav-links a {
  color: var(--gray-600);
}

.header.hero-dark.scrolled .nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.header.hero-dark .hamburger span {
  background: var(--white);
}

.header.hero-dark.scrolled .hamburger span {
  background: var(--gray-700);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 28, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   PAGE HERO (All Pages)
   ============================================ */
.page-hero {
  padding: 180px 0 100px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 560px;
}

.page-hero-deco {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   HOME HERO (Full-screen – animated)
   ============================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0f1c;
  overflow: hidden;
}

/* Animated gradient mesh */
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero-bg img {
  display: none;
}

.home-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 188, 212, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(0, 131, 143, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
  animation: meshShift 12s ease-in-out infinite;
}

@keyframes meshShift {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  33% {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.8;
  }

  66% {
    transform: scale(0.95) rotate(-1deg);
    opacity: 1;
  }
}

/* Morphing blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  will-change: transform;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.25) 0%, transparent 70%);
  animation: blobFloat1 10s ease-in-out infinite;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  bottom: 5%;
  left: 10%;
  background: radial-gradient(circle, rgba(0, 131, 143, 0.2) 0%, transparent 70%);
  animation: blobFloat2 14s ease-in-out infinite;
}

.hero-blob-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, rgba(0, 230, 255, 0.15) 0%, transparent 70%);
  animation: blobFloat3 8s ease-in-out infinite;
}

@keyframes blobFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-40px, 30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, -20px) scale(0.9);
  }

  75% {
    transform: translate(30px, 10px) scale(1.05);
  }
}

@keyframes blobFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.15);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes blobFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 30px) scale(1.2);
  }
}

/* Grid overlay */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 188, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 188, 212, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridFade 4s ease-out forwards;
}

@keyframes gridFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Particles */
.home-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift 12s infinite;
}

.particle:nth-child(odd) {
  background: var(--primary);
  width: 3px;
  height: 3px;
}

.particle:nth-child(even) {
  background: rgba(255, 255, 255, 0.3);
  width: 2px;
  height: 2px;
}

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translateY(100vh) translateX(0) scale(0);
  }

  15% {
    opacity: 0.7;
  }

  85% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateY(-80px) translateX(40px) scale(1);
  }
}

/* Content – stagger entrance */
.home-hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 188, 212, 0.08);
  border: 1px solid rgba(0, 188, 212, 0.2);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
  opacity: 0;
  animation: heroSlideUp 0.8s 0.3s ease-out forwards;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: dotGlow 2s infinite;
}

@keyframes dotGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.6);
  }

  50% {
    box-shadow: 0 0 12px 4px rgba(0, 188, 212, 0);
  }
}

.home-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroSlideUp 0.9s 0.5s ease-out forwards;
}

.home-hero h1 .hl {
  background: linear-gradient(135deg, var(--primary), #4dd0e1, var(--primary-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 6s ease infinite;
}

@keyframes gradientText {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.home-hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
  opacity: 0;
  animation: heroSlideUp 0.9s 0.7s ease-out forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroSlideUp 0.9s 0.9s ease-out forwards;
}

@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating products */
.hero-products-float {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hero-float-item {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all 0.4s ease;
  opacity: 0;
}

.hero-float-item:nth-child(1) {
  animation: floatIn 0.8s 1.0s ease-out forwards, floatBob 6s 2s ease-in-out infinite;
}

.hero-float-item:nth-child(2) {
  animation: floatIn 0.8s 1.2s ease-out forwards, floatBob 7s 2.5s ease-in-out infinite;
  margin-left: 60px;
}

.hero-float-item:nth-child(3) {
  animation: floatIn 0.8s 1.4s ease-out forwards, floatBob 5s 3s ease-in-out infinite;
}

.hero-float-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 188, 212, 0.15));
}

.hero-float-item:hover {
  transform: scale(1.1);
  border-color: rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.06);
  box-shadow: 0 8px 40px rgba(0, 188, 212, 0.15);
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.7);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes floatBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Glow line */
.hero-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.4;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroSlideUp 0.9s 1.5s ease-out forwards;
}

.scroll-down span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
  }
}

/* Stats entrance */
.stats .stat-item {
  opacity: 0;
  animation: heroSlideUp 0.7s ease-out forwards;
}

.stats .stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stats .stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stats .stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stats .stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 1024px) {
  .hero-products-float {
    display: none;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 100svh;
  }

  .home-hero h1 {
    font-size: 2.2rem;
  }

  .home-hero p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 8px 16px;
  }

  .hero-blob-1 {
    width: 300px;
    height: 300px;
  }

  .hero-blob-2 {
    width: 200px;
    height: 200px;
  }

  .hero-blob-3 {
    display: none;
  }

  .scroll-down {
    display: none;
  }
}

@media (max-width: 480px) {
  .home-hero h1 {
    font-size: 1.8rem;
  }

  .home-hero p {
    font-size: 0.88rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 7px 14px;
    margin-bottom: 20px;
  }

  .hero-blob-1 {
    width: 200px;
    height: 200px;
  }

  .hero-blob-2 {
    width: 150px;
    height: 150px;
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary-fill {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary-fill:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 188, 212, 0.3);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-white-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-dark-fill {
  background: var(--gray-800);
  color: var(--white);
}

.btn-dark-fill:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}


/* ============================================
   SECTION TITLES
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -55px;
}

.stats-grid {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--gray-100);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================
   ABOUT PREVIEW (Home)
   ============================================ */
.about-preview {
  padding: var(--section-padding);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-primary);
}

.about-badge .ab-big {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
}

.about-badge .ab-sm {
  font-size: 0.8rem;
  font-weight: 600;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 18px;
  line-height: 1.25;
}

.about-text p {
  color: var(--gray-500);
  font-size: 1.02rem;
  margin-bottom: 28px;
}

.about-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.about-feat-item:hover {
  border-color: var(--primary-lighter);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feat-item span {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-700);
}

/* ============================================
   PRODUCT CARDS (Home & Ürünler Page)
   ============================================ */
.products-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-lighter);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.pc-brand {
  font-size: 0.75rem;
  color: var(--gray-300);
  font-weight: 600;
  letter-spacing: 2px;
}

.pc-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-lighter);
  color: var(--primary);
}

.pc-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.product-card:hover .pc-icon {
  transform: scale(1.1);
  background: rgba(0, 188, 212, 0.1);
  box-shadow: 0 0 30px var(--primary-glow);
}

.pc-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 4px;
}

.pc-sub {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.pc-formula {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 24px;
}

.pc-ingredients {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pc-ingr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}

.pc-ingr-pct {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.pc-ingr-name {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pc-sizes {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pc-size {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  color: var(--gray-500);
  transition: all var(--transition-fast);
}

.pc-size.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.pc-usp {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.06), rgba(0, 188, 212, 0.02));
  border-radius: 10px;
  margin-bottom: 24px;
  border-left: 3px solid var(--primary);
}

.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
  padding: 14px 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.pc-link:hover {
  gap: 14px;
  color: var(--primary-dark);
}

/* Biofuran accent */
.product-card.biofuran-theme .pc-ingr-pct {
  color: #0288D1;
}

.product-card.biofuran-theme .pc-icon {
  background: rgba(2, 136, 209, 0.06);
}

.product-card.biofuran-theme:hover .pc-icon {
  background: rgba(2, 136, 209, 0.12);
  box-shadow: 0 0 30px rgba(2, 136, 209, 0.15);
}

.product-card.biofuran-theme::before {
  background: linear-gradient(90deg, #0288D1, #4FC3F7);
}

.product-card.biofuran-theme .pc-badge {
  background: rgba(2, 136, 209, 0.06);
  border-color: rgba(2, 136, 209, 0.15);
  color: #0288D1;
}

.product-card.biofuran-theme .pc-sub {
  color: #0288D1;
}

.product-card.biofuran-theme .pc-usp {
  border-left-color: #0288D1;
}

.product-card.biofuran-theme .pc-size.active {
  background: #0288D1;
  border-color: #0288D1;
  box-shadow: 0 8px 30px rgba(2, 136, 209, 0.2);
}

.product-card.biofuran-theme .pc-link {
  color: #0288D1;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  padding: var(--section-padding);
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pd-visual {
  position: sticky;
  top: 120px;
  background: var(--off-white);
  border-radius: 28px;
  padding: 50px 40px;
  border: 1px solid var(--gray-100);
  text-align: center;
}

.pd-visual-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-visual h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.pd-visual .pd-sub {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.pd-visual .pd-formula {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.pd-ingr-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.pd-ingr-box {
  padding: 16px 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  text-align: center;
}

.pd-ingr-box .pct {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.pd-ingr-box .name {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pd-sizes-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pd-size {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pd-size:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pd-size.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.pd-domestic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pd-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 18px;
  line-height: 1.3;
}

.pd-content>p {
  color: var(--gray-500);
  font-size: 1.02rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.pd-usp-box {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.06), var(--off-white));
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 36px;
  border: 1px solid var(--primary-lighter);
}

.pd-usp-box h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.pd-usp-box p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin: 0;
}

.pd-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pd-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.pd-feat:hover {
  border-color: var(--primary-lighter);
  transform: translateX(6px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pd-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pd-feat span {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.pd-cta {
  margin-top: 40px;
}

/* ============================================
   WHY US
   ============================================ */
.why-section {
  padding: var(--section-padding);
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.why-card:hover .why-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certs-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-smooth);
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}

.cert-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-fast);
}

.cert-card:hover .cert-icon {
  background: rgba(0, 188, 212, 0.12);
  transform: scale(1.08);
}

.cert-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.cert-card p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-800), var(--black));
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-deco.d-left {
  top: -200px;
  left: -100px;
}

.cta-banner-deco.d-right {
  bottom: -200px;
  right: -100px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 14px;
}

.contact-info>p {
  color: var(--gray-400);
  font-size: 1rem;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.ci p {
  color: var(--gray-400);
  font-size: 0.88rem;
  margin: 0;
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid var(--gray-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 15px 18px;
  color: var(--gray-700);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 70px 0 24px;
  background: var(--gray-800);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-full {
  padding: var(--section-padding);
  background: var(--white);
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.af-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 18px;
}

.af-content p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.timeline {
  padding: var(--section-padding);
  background: var(--off-white);
}

.timeline-items {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.tl-item {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}

.tl-dot {
  width: 50px;
  height: 50px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.tl-content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.tl-content p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* Mission Vision */
.mv-section {
  padding: var(--section-padding);
  background: var(--white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-smooth);
}

.mv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {

  .about-grid,
  .about-full-grid,
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pd-visual {
    position: static;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  /* ---------- Mobile Navigation Drawer ---------- */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 100px 36px 60px;
    border-left: 1px solid var(--gray-100);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.12);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
    color: var(--gray-600) !important;
    padding: 16px 20px !important;
    border-radius: 14px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--primary-bg) !important;
    color: var(--primary) !important;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-links a.nav-cta {
    margin-top: 16px;
    background: var(--primary) !important;
    color: var(--white) !important;
    justify-content: center;
    padding: 16px 26px !important;
  }

  .hamburger {
    display: flex;
  }

  /* ---------- Hero Mobile ---------- */
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  /* ---------- Stats Mobile ---------- */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 28px 24px;
    gap: 20px;
    border-radius: 16px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* ---------- About Mobile ---------- */
  .about-img img {
    height: 280px;
  }

  .about-feat {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 16px;
    bottom: -14px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  /* ---------- Products Mobile ---------- */
  .product-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .pc-name {
    font-size: 1.6rem;
  }

  .pc-sub {
    font-size: 1rem;
  }

  .pc-ingredients {
    gap: 10px;
  }

  .pc-ingr {
    padding: 10px 14px;
  }

  .pc-ingr-pct {
    font-size: 1.2rem;
  }

  .pc-size {
    padding: 10px 16px;
    font-size: 0.82rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .pc-link {
    padding: 16px 0;
    font-size: 1rem;
    min-height: 48px;
  }

  /* ---------- Why Section Mobile ---------- */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  /* ---------- Certs Mobile ---------- */
  .certs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .cert-card {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .cert-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .cert-card h3 {
    font-size: 0.88rem;
  }

  /* ---------- CTA Banner Mobile ---------- */
  .cta-banner {
    padding: 70px 0;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .cta-banner p {
    font-size: 0.92rem;
  }

  /* ---------- Contact Mobile ---------- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info h2 {
    font-size: 1.7rem;
  }

  .contact-form-wrap {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    padding: 16px 18px;
    border-radius: 14px;
  }

  .btn-submit {
    padding: 18px;
    font-size: 1rem;
    border-radius: 14px;
    min-height: 52px;
  }

  .ci-icon {
    width: 44px;
    height: 44px;
  }

  /* ---------- Maps Mobile ---------- */
  .contact-section+section iframe {
    height: 280px;
  }

  /* ---------- Footer Mobile ---------- */
  .footer {
    padding: 50px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* ---------- Page Hero Mobile ---------- */
  .page-hero {
    padding: 140px 0 70px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  /* ---------- About Page Mobile ---------- */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mv-card {
    padding: 28px 22px;
  }

  .mv-card h3 {
    font-size: 1.1rem;
  }

  .timeline-items::before {
    left: 20px;
  }

  .tl-item {
    gap: 18px;
  }

  .tl-dot {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .tl-content h3 {
    font-size: 0.95rem;
  }

  .tl-content p {
    font-size: 0.82rem;
  }

  /* ---------- Product Detail Mobile ---------- */
  .pd-ingr-row {
    flex-direction: column;
    gap: 10px;
  }

  .pd-sizes-row {
    flex-wrap: wrap;
  }

  .pd-size {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* ---------- Section headers Mobile ---------- */
  .section-header {
    margin-bottom: 44px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-tag {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .section-tag::before,
  .section-tag::after {
    width: 16px;
  }

  /* ---------- Buttons Mobile ---------- */
  .btn {
    padding: 14px 28px;
    font-size: 0.92rem;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 56px 0;
  }

  .stats {
    margin-top: -40px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 20px 16px;
    gap: 16px;
    border-radius: 14px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .page-hero {
    padding: 120px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .certs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cert-card {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .cert-icon {
    margin: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .product-card {
    padding: 22px 18px;
  }

  .pc-photo {
    height: 200px;
    border-radius: 12px;
  }

  .pc-name {
    font-size: 1.4rem;
  }

  .why-card {
    padding: 22px 18px;
  }

  .cta-banner {
    padding: 50px 0;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-feat-item {
    padding: 12px 14px;
  }

  .about-feat-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .about-feat-item span {
    font-size: 0.82rem;
  }

  .mv-card {
    padding: 22px 18px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .header {
    padding: 14px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .logo img {
    height: 32px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* Product card image */
.pc-photo {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}

.pc-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}

.product-card:hover .pc-photo img {
  transform: scale(1.08);
}

/* ============================================
   BENTO PRODUCT DETAIL SYSTEM
   ============================================ */
.bento-hero {
  padding: 40px 0 0;
}

.bento-hero .container {
  max-width: 1200px;
}

.bento-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.bento-breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bento-breadcrumb a:hover {
  color: var(--primary);
}

.bento-breadcrumb .sep {
  color: var(--gray-200);
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.bento-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  padding: 28px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--primary-lighter);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Photo Card - Large */
.bento-photo {
  grid-column: span 5;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.bento-photo-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.bento-photo-main img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.bento-photo:hover .bento-photo-main img {
  transform: scale(1.06);
}

.bento-thumbs {
  display: flex;
  gap: 8px;
}

.bento-thumb {
  flex: 1;
  height: 72px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid var(--gray-100);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  padding: 4px;
}

.bento-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.bento-thumb.active,
.bento-thumb:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Title Card */
.bento-title {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-title .bt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.bento-title h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.1;
  margin-bottom: 6px;
}

.bento-title .bt-sub {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.bento-title .bt-formula {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.bento-title .bt-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* License Mini Card */
.bento-license {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.bento-license .bl-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.bento-license .bl-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 6px;
}

.bento-license .bl-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-700);
}

.bento-license .bl-date {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Ingredients Card */
.bento-ingredients {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bento-ingredients h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  font-weight: 600;
}

.bento-ingr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}

.bento-ingr-pct {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  min-width: 70px;
}

.bento-ingr-name {
  font-size: 0.88rem;
  color: var(--gray-600);
  font-weight: 500;
}

.bento-ingr-cas {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Sizes Card */
.bento-sizes {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-sizes h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 16px;
}

.bento-size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bento-size-item {
  padding: 14px 10px;
  border-radius: 14px;
  text-align: center;
  border: 2px solid var(--gray-100);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--white);
}

.bento-size-item:hover {
  border-color: var(--primary-light);
  background: var(--primary-bg);
}

.bento-size-item.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.bento-size-item .bs-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

/* USP Card */
.bento-usp {
  grid-column: span 5;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.bento-usp::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.bento-usp::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.bento-usp h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.bento-usp p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.bento-usp:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 188, 212, 0.3);
}

/* Pest Grid */
.bento-pests {
  grid-column: span 7;
}

.bento-pests h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 16px;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pest-item {
  padding: 14px 8px;
  border-radius: 14px;
  text-align: center;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.pest-item:hover {
  border-color: var(--primary-lighter);
  background: var(--primary-bg);
  transform: translateY(-2px);
}

.pest-item .pest-emoji {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.pest-item .pest-name {
  font-size: 0.72rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.3;
}

/* Table Card */
.bento-table-card {
  grid-column: span 12;
}

.bento-table-card h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 16px;
}

/* Warning Card */
.bento-warning {
  grid-column: span 5;
  background: #FFF9E6;
  border-color: #FDE68A;
}

.bento-warning h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #B45309;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-warning ul {
  list-style: none;
  padding: 0;
}

.bento-warning ul li {
  font-size: 0.8rem;
  color: #92400E;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.bento-warning ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F59E0B;
}

/* CTA Card */
.bento-cta {
  grid-column: span 7;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--black) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 24px;
}

.bento-cta .bc-text {
  flex: 1;
}

.bento-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bento-cta p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.bento-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.bento-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Cross-sell Card */
.bento-cross {
  grid-column: span 12;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--off-white);
}

.bento-cross-img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-cross-img img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.bento-cross-text {
  flex: 1;
}

.bento-cross-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.bento-cross-text p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Domestic Badge */
.bento-domestic {
  grid-column: span 5;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  border-color: #C8E6C9;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bento-domestic .bd-flag {
  font-size: 2.4rem;
}

.bento-domestic h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #2E7D32;
}

.bento-domestic p {
  font-size: 0.82rem;
  color: #558B2F;
}

/* Biofuran accent override */
.bf-accent .bento-usp {
  background: linear-gradient(135deg, #0288D1 0%, #01579B 100%);
}

.bf-accent .bento-usp:hover {
  box-shadow: 0 12px 40px rgba(2, 136, 209, 0.3);
}

.bf-accent .bento-ingr-pct {
  color: #0288D1;
}

.bf-accent .bento-size-item.active {
  border-color: #0288D1;
  background: #0288D1;
  box-shadow: 0 8px 30px rgba(2, 136, 209, 0.2);
}

.bf-accent .bento-size-item:hover {
  border-color: #4FC3F7;
  background: rgba(2, 136, 209, 0.04);
}

.bf-accent .bento-thumb.active,
.bf-accent .bento-thumb:hover {
  border-color: #0288D1;
  box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.2);
}

.bf-accent .bt-sub {
  color: #0288D1;
}

/* Usage table */
.pd-usage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.pd-usage-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 14px;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-heading);
}

.pd-usage-table th:first-child {
  border-radius: 10px 0 0 0;
}

.pd-usage-table th:last-child {
  border-radius: 0 10px 0 0;
}

.pd-usage-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.pd-usage-table tr:hover td {
  background: var(--primary-bg);
}

.pd-usage-table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.pd-usage-table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.bf-accent .pd-usage-table th {
  background: #0288D1;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento-photo {
    grid-column: span 6;
    grid-row: auto;
  }

  .bento-title {
    grid-column: span 4;
  }

  .bento-license {
    grid-column: span 2;
  }

  .bento-ingredients {
    grid-column: span 3;
  }

  .bento-sizes {
    grid-column: span 3;
  }

  .bento-usp {
    grid-column: span 6;
  }

  .bento-pests {
    grid-column: span 6;
  }

  .bento-table-card {
    grid-column: span 6;
  }

  .bento-warning {
    grid-column: span 6;
  }

  .bento-cta {
    grid-column: span 6;
  }

  .bento-cross {
    grid-column: span 6;
  }

  .bento-domestic {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .bento-hero {
    padding: 20px 0 0;
  }

  .bento-breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  /* Force Flex Column for Bento Grid */
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  /* Reset all bento cards to full width */
  .bento-card,
  .bento-photo,
  .bento-title,
  .bento-license,
  .bento-ingredients,
  .bento-sizes,
  .bento-usp,
  .bento-pests,
  .bento-table-card,
  .bento-warning,
  .bento-cta,
  .bento-cross,
  .bento-domestic {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  /* Card specific adjustments */
  .bento-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  /* Title Section */
  .bento-title h1 {
    font-size: 1.8rem;
    word-wrap: break-word;
  }

  .bento-title .bt-sub {
    font-size: 1.1rem;
  }

  /* Ingredients - Allow wrapping */
  .bento-ingr-item {
    padding: 12px;
    flex-wrap: wrap;
  }

  .bento-ingr-pct {
    font-size: 1.4rem;
    min-width: auto;
    margin-right: 8px;
  }

  /* Sizes Grid */
  .bento-size-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bento-size-item {
    min-height: 44px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* USP Card - Clip overflow for circles */
  .bento-usp {
    padding: 24px 20px;
    overflow: hidden;
  }

  .bento-usp h3 {
    font-size: 1.2rem;
  }

  /* Pests Grid - 3 cols -> 2 cols on very small */
  .pest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pest-item {
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* CTA & Cross-sell */
  .bento-cta,
  .bento-cross {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
  }

  .bento-cta .btn {
    width: 100%;
    margin: 0;
  }

  /* Usage Table Wrapper */
  .bento-table-card {
    padding: 18px 0;
    overflow: hidden;
    /* Prevent card expansion */
  }

  .bento-table-card h3 {
    padding: 0 18px;
  }

  .table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 18px;
    margin-bottom: 4px;
  }

  .pd-usage-table {
    width: 100%;
    min-width: 500px;
    /* Force scroll */
  }

  /* Domestic Badge */
  .bento-domestic {
    flex-direction: row;
    /* Keep row if possible */
    align-items: center;
    gap: 12px;
  }

  .bento-domestic .bd-flag {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .pest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-size-grid {
    grid-template-columns: 1fr;
  }

  .bento-domestic {
    flex-direction: column;
    text-align: center;
  }
}