/* ============================================
   ECOZENDA — Premium Creative Design
   ============================================ */

/* === VARIABLES === */
:root {
  --dark: #0A1F14;
  --forest: #143D28;
  --emerald: #1B6B3E;
  --green: #22A355;
  --lime: #4ADE80;
  --mint: #86EFAC;
  --sage: #BBF7D0;
  --cream: #F0FDF4;
  --warm: #FAFFF7;
  --white: #FFFFFF;
  --text: #0F2419;
  --text-sec: #3D5A4A;
  --text-muted: #6B8F7A;
  --text-light: #3D5A4A;
  --gray-50: #F8FBF9;
  --gray-100: #EDF3EF;
  --gray-200: #D4E0D9;
  --gold: #F59E0B;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(10,31,20,0.05), 0 1px 2px rgba(10,31,20,0.03);
  --shadow: 0 4px 24px rgba(10,31,20,0.07);
  --shadow-md: 0 8px 40px rgba(10,31,20,0.09);
  --shadow-lg: 0 20px 60px rgba(10,31,20,0.12);
  --shadow-glow: 0 0 40px rgba(34,163,85,0.2);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET === */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  margin-top: 0;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-sec);
  line-height: 1.75;
  font-size: 1rem;
}

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--green); }

strong { color: var(--text); font-weight: 600; }

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 6rem 0; }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(10,31,20,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s var(--ease);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--emerald));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(34,163,85,0.3);
  transition: transform 0.3s var(--ease-back);
}

.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  align-items: center;
}

.nav-menu li a {
  color: var(--text-sec);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease);
  display: block;
}

.nav-menu li a:hover {
  color: var(--emerald);
  background: var(--cream);
}

/* === BUTTONS === */
.cta-button {
  background: linear-gradient(135deg, var(--green) 0%, var(--emerald) 100%);
  color: var(--white) !important;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s var(--ease);
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 16px rgba(34,163,85,0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before { left: 100%; }

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34,163,85,0.4);
  color: var(--white) !important;
}

.cta-button:active { transform: translateY(-1px); }

.secondary-button {
  background: transparent;
  border: 2px solid var(--emerald);
  color: var(--emerald);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s var(--ease);
  display: inline-block;
}

.secondary-button:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34,163,85,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO — Full Impact
   ============================================ */
.hero {
  position: relative;
  background: var(--dark);
  padding: 7rem 0 6rem;
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Animated mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(34,163,85,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(74,222,128,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 10%, rgba(27,107,62,0.3) 0%, transparent 50%);
  animation: meshFloat 12s ease-in-out infinite alternate;
}

@keyframes meshFloat {
  0% { opacity: 0.8; transform: scale(1) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.05) translate(-2%, 2%); }
  100% { opacity: 0.9; transform: scale(1) translate(2%, -1%); }
}

/* Floating decorative circles */
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border: 1px solid rgba(74,222,128,0.08);
  border-radius: 50%;
  top: -200px; right: -100px;
  animation: spinSlow 40s linear infinite;
}

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

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

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lime), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .cta-button {
  background: var(--white);
  color: var(--dark) !important;
  font-size: 1rem;
  padding: 0.95rem 2.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  font-weight: 700;
}

.hero .cta-button:hover {
  background: var(--cream);
  color: var(--dark) !important;
  box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}

.hero .cta-button::before { display: none; }

.hero .secondary-button {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.hero .secondary-button:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  color: var(--lime);
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.badge-green {
  background: var(--cream);
  color: var(--emerald);
  border: 1px solid rgba(34,163,85,0.15);
}

/* ============================================
   STATS BAR — Floating Card
   ============================================ */
.stats-bar {
  background: var(--white);
  position: relative;
  z-index: 5;
  padding: 0;
}

.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-top: -3rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.stat-item {
  text-align: center;
  padding: 2rem 3rem;
  flex: 1;
  position: relative;
  transition: background 0.3s var(--ease);
}

.stat-item:hover {
  background: var(--cream);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; height: 50%;
  width: 1px;
  background: var(--gray-200);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   WAVE DIVIDER
   ============================================ */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 6rem 0;
  background: var(--warm);
  position: relative;
}

.features h2,
.features > .container > p {
  text-align: center;
}

.features > .container > p {
  max-width: 560px;
  margin: -0.25rem auto 3.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

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

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

.feature-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--cream), var(--sage));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s var(--ease-back);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(34,163,85,0.2);
  background: linear-gradient(135deg, var(--lime), var(--green));
}

.feature-card h3 {
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

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

/* ============================================
   WHY ECOZENDA — Split Layout
   ============================================ */
.why-section {
  background: var(--white);
  padding: 6rem 0;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text h2 { margin-top: 0; }
.why-text p { color: var(--text-sec); }

.why-list {
  list-style: none;
  margin: 2rem 0;
}

.why-list li {
  padding: 0.75rem 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(34,163,85,0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.why-image {
  border-radius: var(--radius-xl);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--dark);
}

.why-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(34,163,85,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(74,222,128,0.2) 0%, transparent 60%);
  animation: meshFloat 10s ease-in-out infinite alternate;
}

.why-image > * { position: relative; z-index: 1; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  position: relative;
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}

.rating {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-sec);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--cream);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview {
  padding: 6rem 0;
  background: var(--white);
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 3.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
}

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

.blog-image {
  background: linear-gradient(135deg, var(--dark), var(--forest), var(--emerald));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.blog-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(74,222,128,0.15) 0%, transparent 60%);
}

.blog-content {
  padding: 1.75rem;
}

.blog-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card h3 {
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.45;
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
}

.read-more {
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s var(--ease);
}

.blog-card:hover .read-more {
  gap: 0.6rem;
  color: var(--green);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 2rem 0;
}

.product-image {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  color: var(--white);
  font-weight: 600;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(34,163,85,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(74,222,128,0.15) 0%, transparent 60%);
}

.product-image > * { position: relative; z-index: 1; }

.product-image-placeholder { font-size: 1.25rem; }

.product-details h1 {
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: var(--emerald);
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.unit-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-description {
  border-bottom: 2px solid var(--cream);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-description p {
  color: var(--text-sec);
  font-size: 0.95rem;
}

.specs-list {
  list-style: none;
  margin: 1.5rem 0;
}

.specs-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-sec);
  transition: background 0.2s ease;
}

.specs-list li:hover {
  background: var(--cream);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 6px;
}

.specs-list strong {
  color: var(--dark);
  font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 0; }

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--sage); }

.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(34,163,85,0.08);
}

.faq-question {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
}

.faq-question:hover { color: var(--emerald); }

.faq-toggle {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: var(--text-muted);
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  background: var(--green);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  background: var(--white);
  display: none;
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================
   SECTION VARIANTS
   ============================================ */
.section-dark {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(34,163,85,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(74,222,128,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark a { color: var(--lime); }
.section-dark a:hover { color: var(--white); }

.availability-section {
  background: var(--cream);
  padding: 3rem 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.contact-item { margin-bottom: 1.5rem; }
.contact-item:last-child { margin-bottom: 0; }

.contact-label {
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--text);
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4.5rem 0 1.5rem;
  margin-top: 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 10% 100%, rgba(34,163,85,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 90% 100%, rgba(74,222,128,0.05) 0%, transparent 50%);
  pointer-events: none;
}

footer > .container { position: relative; z-index: 1; }

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr) 1.3fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.footer-section p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.75;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: all 0.25s var(--ease);
  font-size: 0.88rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-email {
  color: var(--lime);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.d-inline { display: inline; }

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: -0.5rem auto 3.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .feature-grid, .testimonial-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { gap: 0; }
  .stat-item { padding: 1.75rem 2rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .hamburger { display: flex; }

  .nav-menu {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-menu.active { max-height: 360px; }

  .nav-menu li { width: 100%; }

  .nav-menu li a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }

  .hero {
    padding: 4.5rem 0 4rem;
    min-height: auto;
  }

  .hero p { font-size: 1.05rem; }

  .stats-bar .container {
    flex-wrap: wrap;
    margin-top: -2rem;
    border-radius: var(--radius-lg);
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 1.5rem 1rem;
  }

  .stat-item:not(:last-child)::after { display: none; }

  .stat-number { font-size: 1.8rem; }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-image {
    height: 300px;
    order: -1;
  }

  .product-container { grid-template-columns: 1fr; }
  .product-image { min-height: 300px; }

  .feature-grid, .testimonial-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-button, .secondary-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.65rem; }

  .container { padding: 0 16px; }

  .hero { padding: 3.5rem 0 3rem; }

  .stats-bar .container { margin-top: -1.5rem; }

  .price { font-size: 2.25rem; }

  .feature-card, .testimonial-card { padding: 1.75rem; }

  .blog-image { height: 160px; }
}
