/* ============================================
   Ecoveritas Pack Care - Premium Stylesheet
   Modern Startup Design System
   ============================================ */

/* ----- Google Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ----- CSS Custom Properties ----- */
:root {
  --primary: #0b5c2c;
  --primary-rgb: 11, 92, 44;
  --primary-dark: #08471f;
  --secondary: #1fa463;
  --secondary-rgb: 31, 164, 99;
  --secondary-light: #25d17d;
  --accent: #34d399;
  --accent-rgb: 52, 211, 153;

  --bg-light: #e8f7ef;
  --bg-lighter: #f3fbf7;
  --bg-white: #ffffff;
  --bg-dark: #0c1a12;
  --bg-dark-card: #132a1c;

  --text-dark: #0f1f15;
  --text-body: #3d5a48;
  --text-muted: #6b8f79;
  --text-light: #ffffff;

  --border-light: rgba(11, 92, 44, 0.08);
  --border-medium: rgba(11, 92, 44, 0.12);

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 60px rgba(31, 164, 99, 0.15);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition: 0.35s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);

  --container-max: 1200px;
  --section-gap: 120px;
  --section-gap-sm: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ----- Layout Utilities ----- */
.section-padding {
  padding: var(--section-gap) 0;
}

.section-padding-sm {
  padding: var(--section-gap-sm) 0;
}

.bg-light-green { background-color: var(--bg-lighter); }
.bg-white { background-color: var(--bg-white); }

/* ----- Section Headers ----- */
.section-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(var(--secondary-rgb), 0.08);
  border: 1px solid rgba(var(--secondary-rgb), 0.15);
  border-radius: var(--radius-full);
}

.section-eyebrow i {
  font-size: 0.7rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  padding: 12px 0;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1050;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.navbar-brand {
  display: flex;
  align-items: center;
  transition: all var(--transition);
  padding: 0;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.02);
  animation: logoReveal 1.2s var(--ease-out) forwards;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: transform var(--transition), height var(--transition);
}

.navbar.scrolled .brand-logo-img {
  height: 38px;
}

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

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95) blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) blur(0);
  }
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--text-body) !important;
  padding: 6px 16px !important;
  font-size: 0.9rem;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary) !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--border-medium);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
}

.navbar-toggler:focus { box-shadow: none; }

.nav-cta .btn {
  background: var(--primary);
  color: white !important;
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.nav-cta .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.35);
}

.btn-primary-custom:hover::after { opacity: 1; }

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border-medium);
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background: var(--bg-lighter);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary);
  border: none;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-cta-white:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-white);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--secondary-rgb), 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 60%, rgba(var(--primary-rgb), 0.03) 0%, transparent 40%);
  pointer-events: none;
}

/* Organic floating shapes */
.hero-organic-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero-organic-shape-1 {
  width: 400px;
  height: 400px;
  right: -5%;
  top: 5%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.07), transparent 70%);
  border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
}

.hero-organic-shape-2 {
  width: 300px;
  height: 300px;
  left: -3%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05), transparent 70%);
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
}

.hero-organic-shape-3 {
  width: 200px;
  height: 200px;
  right: 25%;
  bottom: 20%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04), transparent 70%);
  border-radius: 50% 50% 40% 60% / 50% 50% 60% 40%;
}

/* Leaf SVG decorations */
.hero-leaf {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  will-change: transform;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--secondary-rgb), 0.08);
  border: 1px solid rgba(var(--secondary-rgb), 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  max-width: 600px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero stats row */
.hero-metrics {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.hero-metric {
  text-align: left;
}

.hero-metric .metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-metric .metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.hero-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1), transparent 60%);
  border-radius: var(--radius-2xl);
  pointer-events: none;
  z-index: -1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: var(--border-medium);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--secondary);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--secondary-rgb), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================
   PRODUCT CARDS (3D hover)
   ============================================ */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  perspective: 800px;
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--bg-lighter);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.65;
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.btn-link-arrow:hover {
  color: var(--primary);
  gap: 12px;
}

/* ============================================
   3D FLAGSHIP PRODUCT DISPLAY
   ============================================ */
.flagship-section {
  position: relative;
  overflow: hidden;
}

.flagship-product-wrapper {
  position: relative;
  perspective: 1200px;
}

.flagship-product-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transition: transform 0.6s var(--ease-out);
  transform: rotateY(-5deg) rotateX(2deg);
}

.flagship-product-image:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.flagship-product-image img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.flagship-feature-list {
  list-style: none;
  padding: 0;
}

.flagship-feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.flagship-feature-list li:last-child {
  border-bottom: none;
}

.flagship-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(var(--secondary-rgb), 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.flagship-feature-list li:hover .flagship-feature-icon {
  background: var(--primary);
  color: white;
}

/* ============================================
   INFOGRAPHIC COUNTERS
   ============================================ */
.infographic-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
}

.infographic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.infographic-icon {
  width: 64px;
  height: 64px;
  background: rgba(var(--secondary-rgb), 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: all var(--transition);
}

.infographic-card:hover .infographic-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.infographic-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.infographic-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.infographic-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.why-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(var(--secondary-rgb), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--secondary);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: white;
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--secondary-rgb), 0.3);
}

.cert-icon {
  width: 72px;
  height: 72px;
  background: rgba(var(--secondary-rgb), 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
  color: var(--secondary);
  transition: all var(--transition);
}

.cert-card:hover .cert-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
}

.cert-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d7535 50%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255,255,255,0.06), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,255,255,0.04), transparent);
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(var(--secondary-rgb), 0.2);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(var(--secondary-rgb), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
}

.contact-info-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 13px 18px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-fast);
  background: var(--bg-white);
  color: var(--text-dark);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.1);
}

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary), #0d7535, var(--secondary));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255,255,255,0.06), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,0.03), transparent);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  position: relative;
}

.page-header .breadcrumb {
  justify-content: center;
  margin-top: 20px;
  position: relative;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.page-header .breadcrumb-item.active { color: white; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image-wrapper img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 2px;
  color: white;
}

.about-badge p {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.8;
}

.mission-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mission-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(var(--secondary-rgb), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.mission-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-body);
}

.capability-item:last-child { border-bottom: none; }
.capability-item i { color: var(--secondary); font-size: 1rem; }

/* ============================================
   SUSTAINABILITY PAGE
   ============================================ */
.sustainability-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  height: 100%;
}

.sustainability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sustainability-icon {
  width: 52px;
  height: 52px;
  background: rgba(var(--secondary-rgb), 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.sustainability-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sustainability-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Process timeline */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.process-step:not(:last-child) .process-step-number::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
}

.process-step-content h5 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1rem;
}

.process-step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Commitment list */
.commitment-list {
  list-style: none;
  padding: 0;
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.commitment-list .check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  margin-top: 2px;
}

/* ============================================
   FOOTER (Premium Dark)
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding-top: 80px;
}

.footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.75;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-fast);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255,255,255,0.1);
}

.newsletter-form button {
  padding: 10px 20px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--secondary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4);
}

/* ============================================
   GSAP ANIMATION STATES
   ============================================ */
.gs-reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.gs-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  will-change: transform, opacity;
}

.gs-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  will-change: transform, opacity;
}

.gs-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  will-change: transform, opacity;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--bg-light);
  border-top: 3px solid var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-lighter); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Large Desktops & Below (≤1200px) --- */
@media (max-width: 1199.98px) {
  :root {
    --section-gap: 100px;
    --section-gap-sm: 70px;
  }
}

/* --- Tablets & Below (≤992px) --- */
@media (max-width: 991.98px) {
  :root {
    --section-gap: 72px;
    --section-gap-sm: 56px;
  }

  /* --- Navigation Mobile Menu --- */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .navbar .nav-link {
    padding: 10px 14px !important;
    font-size: 0.95rem;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
  }

  .nav-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .brand-logo-img {
    height: 46px;
  }

  .navbar.scrolled .brand-logo-img {
    height: 36px;
  }

  /* --- Hero Section --- */
  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-image-wrapper {
    margin-top: 36px;
  }

  .hero-metrics {
    gap: 28px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-buttons {
    margin-bottom: 40px;
  }

  /* Hide decorative shapes on tablet */
  .hero-organic-shape {
    display: none;
  }

  .hero-leaf {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  /* --- Flagship Section --- */
  .flagship-product-image {
    transform: none;
  }

  .flagship-product-image:hover {
    transform: scale(1.01);
  }

  /* --- Page Header (inner pages) --- */
  .page-header {
    padding: 110px 0 50px;
  }

  /* --- Section Headers --- */
  .section-header {
    margin-bottom: 40px;
  }
}

/* --- Mobile Landscape & Below (≤768px) --- */
@media (max-width: 767.98px) {
  :root {
    --section-gap: 56px;
    --section-gap-sm: 40px;
  }

  body {
    font-size: 15px;
  }

  /* --- Hero --- */
  .hero-section {
    padding: 90px 0 44px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 28px;
  }

  .hero-metric .metric-value {
    font-size: 1.5rem;
  }

  .hero-metric .metric-label {
    font-size: 0.72rem;
  }

  .hero-image-wrapper {
    margin-top: 28px;
  }

  .hero-image-wrapper img {
    border-radius: var(--radius-md);
  }

  /* --- Section Headers --- */
  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  .section-eyebrow {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  /* --- Feature Cards --- */
  .feature-card {
    padding: 24px 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .feature-card h4 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* --- Product Cards --- */
  .product-card-img {
    height: 200px;
  }

  .product-card-body {
    padding: 20px;
  }

  .product-card-body h4 {
    font-size: 1rem;
  }

  .product-card-body p {
    font-size: 0.84rem;
    margin-bottom: 14px;
  }

  /* --- Flagship Product --- */
  .flagship-feature-list li {
    padding: 14px 0;
    font-size: 0.9rem;
    gap: 12px;
  }

  .flagship-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1rem;
  }

  /* --- Infographic Cards --- */
  .infographic-card {
    padding: 28px 18px;
  }

  .infographic-number {
    font-size: 2.25rem;
  }

  .infographic-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  /* --- Why Choose Us Cards --- */
  .why-card {
    padding: 20px;
    gap: 16px;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
  }

  /* --- Certification Cards --- */
  .cert-card {
    padding: 28px 20px;
  }

  .cert-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    margin-bottom: 14px;
  }

  /* --- CTA Section --- */
  .cta-section h2 {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
  }

  .cta-section p {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .btn-cta-white {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  /* --- Footer --- */
  .footer {
    padding-top: 44px;
  }

  .footer .row > div {
    margin-bottom: 8px;
  }

  .footer h5 {
    margin-bottom: 14px;
    font-size: 0.9rem;
  }

  .footer p {
    font-size: 0.82rem;
  }

  .footer-brand .brand-logo-img {
    height: 40px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding: 18px 0;
    font-size: 0.75rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-form input {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .newsletter-form button {
    padding: 10px 20px;
    font-size: 0.8rem;
    width: 100%;
  }

  /* --- Page Header (inner pages) --- */
  .page-header {
    padding: 100px 0 44px;
  }

  .page-header h1 {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .page-header p {
    font-size: 0.9rem;
  }

  /* --- Back to Top --- */
  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* --- Small Mobile (≤576px) --- */
@media (max-width: 575.98px) {
  :root {
    --section-gap: 44px;
    --section-gap-sm: 32px;
  }

  body {
    font-size: 14.5px;
  }

  /* --- Navbar --- */
  .brand-logo-img {
    height: 40px;
  }

  .navbar.scrolled .brand-logo-img {
    height: 34px;
  }

  .navbar-brand {
    padding: 2px 0;
  }

  .navbar {
    padding: 8px 0;
  }

  .navbar.scrolled {
    padding: 6px 0;
  }

  .navbar-collapse {
    padding: 16px;
    margin-top: 10px;
  }

  /* --- Hero --- */
  .hero-section {
    padding: 82px 0 36px;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 16px;
    gap: 6px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .hero-buttons {
    margin-bottom: 28px;
    gap: 8px;
  }

  .hero-buttons .btn {
    padding: 11px 20px;
    font-size: 0.85rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 24px;
  }

  .hero-metric .metric-value {
    font-size: 1.3rem;
  }

  .hero-metric .metric-label {
    font-size: 0.68rem;
  }

  .hero-image-wrapper {
    margin-top: 24px;
  }

  /* --- Section spacing tighten --- */
  .section-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .section-eyebrow {
    font-size: 0.68rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  /* --- Bootstrap Row gutters tighten --- */
  .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  /* --- Feature Cards --- */
  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .feature-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .feature-card p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  /* --- Product Cards --- */
  .product-card-img {
    height: 180px;
  }

  .product-card-body {
    padding: 16px;
  }

  .product-card-body h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .product-card-body p {
    font-size: 0.82rem;
    margin-bottom: 12px;
    line-height: 1.55;
  }

  .product-card-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
    top: 12px;
    left: 12px;
  }

  .btn-link-arrow {
    font-size: 0.82rem;
  }

  /* --- Flagship Product --- */
  .flagship-feature-list li {
    padding: 12px 0;
    font-size: 0.85rem;
    gap: 10px;
  }

  .flagship-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.9rem;
  }

  /* --- Infographic Cards --- */
  .infographic-card {
    padding: 22px 14px;
  }

  .infographic-number {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .infographic-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .infographic-card h5 {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }

  .infographic-card p {
    font-size: 0.78rem;
  }

  /* --- Why Choose Us Cards --- */
  .why-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .why-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .why-card h5 {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }

  .why-card p {
    font-size: 0.82rem;
  }

  /* --- Certification Cards --- */
  .cert-card {
    padding: 22px 16px;
  }

  .cert-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .cert-card h5 {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .cert-card p {
    font-size: 0.78rem;
  }

  /* --- CTA Section --- */
  .cta-section {
    padding: 44px 0 !important;
  }

  .cta-section h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.6rem);
    margin-bottom: 10px;
  }

  .cta-section p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .btn-cta-white {
    padding: 11px 24px;
    font-size: 0.85rem;
  }

  /* --- Footer --- */
  .footer {
    padding-top: 36px;
  }

  .footer h5 {
    margin-bottom: 10px;
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .footer p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .footer-social {
    margin-top: 10px;
    gap: 8px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .footer-brand .brand-logo-img {
    height: 36px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding: 16px 0;
    font-size: 0.72rem;
  }

  /* --- Page Header (inner pages) --- */
  .page-header {
    padding: 90px 0 36px;
  }

  /* --- Buttons --- */
  .btn-primary-custom {
    padding: 11px 24px;
    font-size: 0.88rem;
    gap: 6px;
  }

  .btn-secondary-custom {
    padding: 10px 22px;
    font-size: 0.88rem;
    gap: 6px;
  }

  /* --- View All Products button --- */
  .text-center.mt-5 {
    margin-top: 1.5rem !important;
  }

  /* --- About page specific --- */
  .about-badge {
    padding: 10px 16px;
  }

  .about-badge h4 {
    font-size: 1.1rem;
  }

  .mission-card {
    padding: 22px;
  }

  /* --- Contact page specific --- */
  .contact-info-card {
    padding: 16px;
    gap: 12px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .map-container {
    height: 220px;
  }

  /* --- Process steps (sustainability page) --- */
  .process-step {
    gap: 16px;
    margin-bottom: 28px;
  }

  .process-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.88rem;
  }
}

/* --- Extra Small Mobile (≤480px) --- */
@media (max-width: 480px) {
  :root {
    --section-gap: 36px;
    --section-gap-sm: 28px;
  }

  /* Ensure no horizontal overflow */
  html, body {
    overflow-x: hidden;
  }

  /* Tighter container padding */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* --- Hero even tighter --- */
  .hero-section {
    padding: 76px 0 28px;
  }

  .hero-title {
    font-size: clamp(1.45rem, 7.5vw, 1.9rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.84rem;
    margin-bottom: 20px;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 4px 10px;
    margin-bottom: 14px;
  }

  .hero-buttons {
    margin-bottom: 24px;
  }

  .hero-buttons .btn {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 20px;
  }

  .hero-metric .metric-value {
    font-size: 1.15rem;
  }

  .hero-metric .metric-label {
    font-size: 0.62rem;
  }

  .hero-image-wrapper {
    margin-top: 20px;
  }

  /* --- Cards even tighter --- */
  .feature-card {
    padding: 18px 14px;
  }

  .product-card-img {
    height: 160px;
  }

  .product-card-body {
    padding: 14px;
  }

  .infographic-card {
    padding: 18px 12px;
  }

  .infographic-number {
    font-size: 1.75rem;
  }

  .why-card {
    padding: 16px 14px;
  }

  .cert-card {
    padding: 18px 14px;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 36px 0 !important;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .btn-cta-white {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  /* --- Footer --- */
  .footer {
    padding-top: 28px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding: 14px 0;
  }

  /* --- Flagship --- */
  .flagship-feature-list li {
    padding: 10px 0;
    font-size: 0.82rem;
  }

  .flagship-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.82rem;
  }

  /* --- Logo --- */
  .brand-logo-img {
    height: 36px;
  }

  .navbar.scrolled .brand-logo-img {
    height: 30px;
  }

  /* --- Back to Top --- */
  .back-to-top {
    bottom: 16px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* ============================================
   COMPOSTABLE SEQUENCE
   ============================================ */
.compost-sequence-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.compost-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

.compost-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.compost-img-container {
  background: #f5f5f5;
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 16px;
  box-shadow: none;
  transition: all var(--transition);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.compost-step:hover .compost-img-container {
  transform: translateY(-4px);
  border-color: var(--secondary-light);
  box-shadow: var(--shadow-sm);
}

.compost-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.compost-step:hover .compost-img-container img {
  transform: scale(1.05);
}

.compost-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-top: 12px;
  display: block;
}

.compost-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}


.compost-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-light);
  font-size: 1.5rem;
  padding-top: 80px;
  opacity: 0.5;
}

@media (max-width: 991px) {
  .compost-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .compost-arrow {
    transform: rotate(90deg);
    padding: 0;
    margin: -10px 0;
  }
  .compost-step {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .compost-sequence-section {
    padding: 56px 0;
  }
  .compost-timeline {
    margin-top: 32px;
    gap: 28px;
  }
  .compost-label {
    font-size: 0.85rem;
    margin-top: 8px;
  }
  .compost-duration {
    font-size: 0.72rem;
  }
}

@media (max-width: 575.98px) {
  .compost-sequence-section {
    padding: 40px 0;
  }
  .compost-timeline {
    margin-top: 24px;
    gap: 20px;
  }
  .compost-step {
    max-width: 260px;
  }
  .compost-label {
    font-size: 0.8rem;
  }
  .compost-arrow {
    font-size: 1.1rem;
  }
}