/* =============================================
   SOP Sürdürülebilirlik - site.css
   Color Palette: Deep Forest Green #1a3d2b
   ============================================= */

:root {
  --sop-green:      #1a3d2b;
  --sop-green-mid:  #2d6a4f;
  --sop-green-light:#52b788;
  --sop-green-pale: #d8f3dc;
  --sop-accent:     #74c69d;
  --sop-yellow:     #f4a261;
  --sop-blue:       #4895ef;
  --sop-teal:       #43aa8b;
  --sop-dark:       #0d1f17;
  --sop-text:       #2d3a2e;
  --sop-muted:      #6b7c6d;
  --sop-bg:         #f8faf8;
  --sop-white:      #ffffff;
  --radius:         16px;
  --radius-sm:      10px;
  --shadow:         0 8px 32px rgba(26,61,43,0.12);
  --shadow-lg:      0 20px 60px rgba(26,61,43,0.18);
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--sop-text);
  background: var(--sop-bg);
  overflow-x: hidden;
}

/* ======================== NAVBAR ======================== */
.sop-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,61,43,0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}
.sop-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,61,43,0.1);
}
.sop-navbar .nav-link {
  color: var(--sop-green) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all 0.2s;
}
.sop-navbar .nav-link:hover {
  background: var(--sop-green-pale);
  color: var(--sop-green-mid) !important;
}

/* ======================== HERO ======================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
/* Banner slider */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url('/images/banner-cricket-1.jpg'); }
.hero-slide-2 { background-image: url('/images/banner-cricket-2.jpg'); }
.hero-slide-3 { background-image: url('/images/banner-cricket-3.jpg'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,23,0.82) 0%,
    rgba(26,61,43,0.70) 50%,
    rgba(45,106,79,0.55) 100%
  );
}
/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--sop-accent);
  transform: scale(1.3);
}
.hero-section .container { position: relative; z-index: 2; }
.hero-scroll-hint { z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(116,198,157,0.2);
  border: 1px solid rgba(116,198,157,0.4);
  color: var(--sop-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--sop-white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-accent {
  color: var(--sop-accent);
  font-style: italic;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 380px;
  height: 380px;
  animation: fadeIn 1s ease 0.4s both;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(116,198,157,0.2);
  animation: spin linear infinite;
}
.hero-circle-1 { inset: 0; animation-duration: 30s; }
.hero-circle-2 { inset: 30px; animation-duration: 20s; animation-direction: reverse; }
.hero-circle-3 { inset: 80px; border-color: rgba(116,198,157,0.35); animation-duration: 15s; }

.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hsc-1 { top: 10%; right: 0; }
.hsc-2 { bottom: 20%; left: 0; }
.hsc-3 { top: 45%; right: 5%; }
.hsc-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sop-accent);
  line-height: 1;
}
.hsc-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

/* ======================== ABOUT ======================== */
.about-section {
  padding: 100px 0;
  background: var(--sop-white);
}
.about-image-grid {
  position: relative;
  height: 380px;
}
.aig-main {
  position: absolute;
  inset: 20px 40px 20px 0;
  background: linear-gradient(145deg, var(--sop-green) 0%, var(--sop-green-mid) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  box-shadow: var(--shadow-lg);
}
.aig-icon {
  font-size: 4rem;
  color: var(--sop-accent);
  line-height: 1;
}
.aig-main p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
}
.aig-small {
  position: absolute;
  right: 0;
  background: var(--sop-white);
  border: 2px solid var(--sop-green-pale);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--sop-green);
  white-space: nowrap;
}
.aig-small i { color: var(--sop-green-mid); font-size: 1.2rem; }
.aig-small.top { top: 30px; }
.aig-small.bottom { bottom: 40px; }

/* ======================== SHARED SECTION STYLES ======================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sop-green-mid);
  background: var(--sop-green-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--sop-green);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-body {
  color: var(--sop-muted);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--sop-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* About pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--sop-bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sop-green-light);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pillar-icon.green { background: var(--sop-green-pale); color: var(--sop-green-mid); }
.pillar-icon.blue  { background: #dbeafe; color: var(--sop-blue); }
.pillar-icon.amber { background: #fef3c7; color: #d97706; }
.pillar strong { display: block; color: var(--sop-green); font-size: 0.9rem; }
.pillar span   { font-size: 0.82rem; color: var(--sop-muted); }

/* ======================== REPORTS ======================== */
.reports-section {
  padding: 100px 0;
  background: var(--sop-bg);
}
.report-card {
  background: var(--sop-white);
  border: 1.5px solid rgba(26,61,43,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.report-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sop-green), var(--sop-green-light));
}
.report-card:hover {
  border-color: var(--sop-green-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.rc-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sop-green-mid);
  background: var(--sop-green-pale);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.rc-icon {
  font-size: 2.8rem;
  color: var(--sop-green);
  margin-bottom: 16px;
  line-height: 1;
}
.rc-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sop-green);
  margin-bottom: 12px;
}
.rc-desc {
  color: var(--sop-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.rc-action {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sop-green-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.report-card:hover .rc-action { gap: 12px; }
.report-card-disabled { cursor: default; opacity: 0.65; pointer-events: none; }
.rc-coming-soon { color: var(--sop-muted) !important; }

/* ======================== WHAT WE DO ======================== */
.whatwedo-section {
  padding: 100px 0;
  background: var(--sop-white);
}

/* Lab strip */
.lab-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--sop-green);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 36px;
  flex-wrap: wrap;
}
.ls-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 32px;
  border-right: 1.5px solid rgba(255,255,255,0.25);
}
.ls-badge i { font-size: 1.4rem; opacity: 0.85; }
.ls-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  flex-wrap: wrap;
}
.ls-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.ls-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.ls-label {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.4;
}
.ls-label small { opacity: 0.7; }
.ls-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Category blocks */
.wwd-category {
  background: var(--sop-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(26,61,43,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wwd-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 28px 24px;
  color: #fff;
}
.wwd-feed { background: linear-gradient(135deg, var(--sop-green) 0%, var(--sop-teal) 100%); }
.wwd-food { background: linear-gradient(135deg, #8B5E3C 0%, #C08040 100%); }
.wwd-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.wwd-cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}
.wwd-cat-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.wwd-cat-sub {
  font-size: 0.82rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}

/* Product cards inside category */
.wwd-products {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.wwd-product-card {
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid rgba(26,61,43,0.06);
  padding: 20px;
  display: flex;
  gap: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wwd-product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.wwd-pc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feed-icon { background: var(--sop-green-pale); color: var(--sop-green-mid); }
.food-icon { background: #fef3c7; color: #b45309; }
.oil-icon  { background: #ede9fe; color: #7c3aed; }
.wwd-pc-body h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sop-green);
  margin-bottom: 6px;
}
.wwd-pc-body p {
  font-size: 0.82rem;
  color: var(--sop-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.wwd-highlight {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--sop-green-pale);
  color: var(--sop-green-mid);
  border-radius: 6px;
  padding: 2px 8px;
  vertical-align: middle;
}
.wwd-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.wwd-tag {
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--sop-bg);
  color: var(--sop-green);
  border: 1px solid rgba(26,61,43,0.12);
  border-radius: 20px;
  padding: 2px 10px;
}

/* ======================== PRODUCTION PROCESS ======================== */
.production-section {
  padding: 100px 0;
  background: var(--sop-white);
}
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 64px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sop-green-light), var(--sop-green-pale));
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}
.ps-number {
  min-width: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sop-muted);
  letter-spacing: 0.05em;
  padding-top: 14px;
  text-align: right;
}
.ps-icon {
  min-width: 48px;
  height: 48px;
  background: var(--sop-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,61,43,0.25);
}
.ps-body {
  background: var(--sop-bg);
  border: 1px solid var(--sop-green-pale);
  border-radius: 14px;
  padding: 20px 24px;
  flex: 1;
  transition: box-shadow .2s, transform .2s;
}
.ps-body:hover {
  box-shadow: 0 6px 24px rgba(26,61,43,0.10);
  transform: translateX(4px);
}
.ps-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sop-green);
  margin-bottom: 6px;
}
.ps-body p {
  font-size: 0.9rem;
  color: var(--sop-muted);
  line-height: 1.65;
  margin: 0;
}
/* Nutrition bar */
.nutrition-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, var(--sop-dark), var(--sop-green));
  border-radius: 18px;
  padding: 32px 40px;
}
.nb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  text-align: center;
}
.nb-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sop-accent);
  line-height: 1;
}
.nb-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nb-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .process-timeline::before { left: 28px; }
  .ps-number { display: none; }
  .nb-divider { display: none; }
  .nb-item { padding: 12px 20px; }
}

/* ======================== CONTACT ======================== */
.contact-section {
  padding: 100px 0;
  background: var(--sop-bg);
}
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ci-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sop-green-pale);
  color: var(--sop-green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: 0.85rem; color: var(--sop-green); }
.ci-item span { font-size: 0.9rem; color: var(--sop-muted); }
.contact-form-card {
  background: var(--sop-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(26,61,43,0.07);
}
.sop-input {
  border: 1.5px solid rgba(26,61,43,0.12) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  color: var(--sop-text) !important;
  background: var(--sop-bg) !important;
  transition: border-color 0.2s !important;
  font-size: 0.9rem !important;
}
.sop-input:focus {
  border-color: var(--sop-green-light) !important;
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15) !important;
  outline: none !important;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sop-green);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

/* ======================== BUTTONS ======================== */
.btn-sop-primary {
  background: var(--sop-green);
  color: white !important;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.btn-sop-primary:hover {
  background: var(--sop-green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,61,43,0.25);
}
.btn-sop-outline {
  background: transparent;
  color: rgba(255,255,255,0.85) !important;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.btn-sop-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ======================== MODAL ======================== */
.sop-modal {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sop-modal-header {
  background: var(--sop-green);
  color: white;
  border: none;
  padding: 20px 28px;
}
.sop-modal-header .modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
}
.pdf-viewer-area {
  background: #f0f0f0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdf-placeholder {
  text-align: center;
  padding: 60px 40px;
  max-width: 500px;
}
.pdf-ph-icon {
  font-size: 4rem;
  color: var(--sop-green);
  margin-bottom: 20px;
}
.pdf-ph-icon i { animation: pulse 2s ease-in-out infinite; }
.pdf-placeholder h4 {
  font-family: var(--font-display);
  color: var(--sop-green);
  margin-bottom: 12px;
}
.pdf-path-note {
  background: var(--sop-green-pale);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--sop-green);
  margin-top: 16px;
}

/* ======================== MAP ======================== */
.map-section {
  line-height: 0;
  border-top: 3px solid var(--sop-green);
}

/* ======================== FOOTER ======================== */
.sop-footer {
  background: var(--sop-dark);
  padding: 48px 0;
  color: rgba(255,255,255,0.7);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-style: italic;
}
.footer-copy {
  font-size: 0.82rem;
  margin: 0;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sop-accent); }

/* ======================== ANIMATIONS ======================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 768px) {
  .hero-section { padding: 80px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .lab-strip { flex-direction: column; gap: 20px; }
  .ls-badge { border-right: none; padding-right: 0; border-bottom: 1.5px solid rgba(255,255,255,0.25); padding-bottom: 16px; width: 100%; }
  .ls-stats { gap: 12px; }
  .ls-stat { min-width: 80px; }
  .ls-divider { display: none; }
  .wwd-product-card { flex-direction: column; }
  .contact-form-card { padding: 24px; }
  .aig-small { display: none; }
  .footer-links { justify-content: flex-start; margin-top: 16px; }
}
