:root {
  --teal: #1aaa9b;
  --teal-dark: #0d8a7c;
  --teal-light: #e0f7f4;
  --orange: #e87c1e;
  --navy: #0e2a47;
  --navy-light: #1a3a5c;
  --white: #ffffff;
  --gray: #f4f8f7;
  --text: #1a2e2c;
  --muted: #6b8080;
  --shadow: 0 4px 24px rgba(14,42,71,0.10);
  --radius: 16px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--orange); text-decoration: none; font-weight: 700; }
.topbar-right { display: flex; gap: 20px; }
.topbar-right span i { margin-right: 5px; color: var(--teal); }

/* ===== NAV ===== */
nav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  position: relative;
  box-shadow: 0 4px 12px rgba(26,170,155,0.3);
}
.logo-icon::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid #fff;
}
.logo-text { line-height: 1.1; }
.logo-text .name { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.logo-text .name span { color: var(--teal); }
.logo-text .tagline { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { background: var(--teal-light); color: var(--teal-dark); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-cart {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-light);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 16px;
  position: relative;
  transition: all 0.2s;
}
.nav-cart:hover { background: var(--teal); color: #fff; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-buy-now {
  background: linear-gradient(135deg, var(--orange), #f09030);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(232,124,30,0.35);
  text-decoration: none;
}
.btn-buy-now:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,124,30,0.45); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #e8f8f6 0%, #f0fbf9 40%, #e0f2fe 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,170,155,0.12), transparent 65%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,124,30,0.08), transparent 65%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,170,155,0.1);
  border: 1.5px solid rgba(26,170,155,0.3);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--teal); }
.hero-text h1 .orange { color: var(--orange); }
.hero-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary-hero {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  padding: 15px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(26,170,155,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,170,155,0.45); }
.btn-secondary-hero {
  background: transparent;
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  border: 2px solid rgba(14,42,71,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-hero:hover { border-color: var(--teal); color: var(--teal); }
.hero-stats { display: flex; gap: 32px; }
.hero-stat .num { font-size: 28px; font-weight: 900; color: var(--navy); }
.hero-stat .num span { color: var(--teal); }
.hero-stat .label { font-size: 12px; color: var(--muted); font-weight: 600; }

/* Hero Right - Product Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.product-showcase {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(26,170,155,0.15), 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 380px;
  border: 1px solid rgba(26,170,155,0.12);
}
.product-icon-wrap {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--teal-light), #d0f0ec);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.product-name { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.product-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.product-features { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.pf-item { text-align: center; }
.pf-item i { font-size: 18px; color: var(--teal); margin-bottom: 4px; }
.pf-item span { font-size: 10px; font-weight: 700; color: var(--navy); display: block; }
.product-price-row { display: flex; align-items: center; justify-content: center; gap: 14px; }
.p-price { font-size: 30px; font-weight: 900; color: var(--teal); }
.p-mrp { font-size: 16px; color: #aaa; text-decoration: line-through; }
.p-discount { background: #fff0e0; color: var(--orange); font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 10px; }

/* Floating chips */
.chip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  animation: float 3s ease-in-out infinite;
}
.chip.chip-1 { top: 10px; left: -20px; animation-delay: 0.5s; }
.chip.chip-2 { bottom: 30px; right: -20px; animation-delay: 1s; }
.chip.chip-3 { top: 50%; right: -30px; animation-delay: 1.5s; }
.chip i { color: var(--teal); font-size: 16px; }

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--navy);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marqueeMove 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.marquee-track span i { margin-right: 8px; color: var(--teal); }
.marquee-track .sep { color: var(--orange); }
@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 70px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--teal); }
.section-sub { font-size: 15px; color: var(--muted); max-width: 520px; line-height: 1.7; }

/* ===== FEATURES ===== */
.features-bg { background: var(--gray); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(26,170,155,0.1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: 0 12px 40px rgba(26,170,155,0.15); transform: translateY(-6px); }
.feature-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--teal-light), #d0efec);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(26,170,155,0.3);
  border: 4px solid #fff;
}
.how-step h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== PRODUCT SECTION ===== */
.products-bg { background: var(--gray); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  cursor: pointer;
}
.product-card:hover { box-shadow: 0 16px 48px rgba(26,170,155,0.15); transform: translateY(-6px); }
.product-card-img {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
}
.product-card-img.teal { background: linear-gradient(135deg, #d0f5f0, #a8ebe3); }
.product-card-img.orange { background: linear-gradient(135deg, #fde8d0, #fbd0a8); }
.product-card-img.navy { background: linear-gradient(135deg, #d0dff0, #b0c8e8); }
.product-label {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
}
.product-card-body { padding: 22px; }
.product-card-body .cat { font-size: 11px; color: var(--teal); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-card-body h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.product-card-body p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.product-tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.pc-price { font-size: 22px; font-weight: 900; color: var(--teal); }
.pc-mrp { font-size: 13px; color: #aaa; text-decoration: line-through; }
.btn-add-cart {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
}
.btn-add-cart:hover { transform: scale(1.05); }

/* ===== PILLARS ===== */
.pillars-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pillars-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.pillar-center {
  width: 220px; height: 220px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  box-shadow: 0 0 0 20px rgba(26,170,155,0.1), 0 0 0 40px rgba(26,170,155,0.05);
}
.pillar-item {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}
.pillar-item.p1 { top: 0; left: 0; }
.pillar-item.p2 { top: 0; right: 0; }
.pillar-item.p3 { bottom: 0; left: 0; }
.pillar-item.p4 { bottom: 0; right: 0; }
.pillar-icon { font-size: 22px; flex-shrink: 0; }
.pillar-item .pl { font-size: 12px; font-weight: 800; color: var(--navy); }
.pillar-item .ps { font-size: 10px; color: var(--muted); }
.pillars-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.pillar-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--gray);
  border-radius: 14px;
  transition: all 0.2s;
}
.pillar-row:hover { background: var(--teal-light); }
.pillar-row .pr-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #fff;
}
.pillar-row h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.pillar-row p { font-size: 13px; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testi-bg { background: var(--navy); }
.testi-header .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.testi-header .section-title { color: #fff; }
.testi-header .section-title span { color: var(--teal); }
.testi-header .section-sub { color: rgba(255,255,255,0.6); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testi-stars { color: #f9c74f; font-size: 14px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 800; color: #fff; }
.testi-loc { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 60%, var(--navy) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-inner h2 span { color: #f9c74f; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: #fff;
  color: var(--teal-dark);
  padding: 15px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 15px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
footer { background: #071a30; color: rgba(255,255,255,0.75); padding: 60px 24px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand .logo-text .name { color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.soc {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}
.soc:hover { background: var(--teal); color: #fff; }
.footer-col h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 18px; }
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-trust { display: flex; gap: 20px; }
.footer-trust span { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 5px; }
.footer-trust span i { color: var(--teal); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 38px; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-text h1 { font-size: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .cta-inner h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .chip { display: none; }
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img-footer {
  height: 48px;
  filter: brightness(0) invert(1);
}

/* ===== MOBILE BURGER ===== */
.mobile-burger {
  display: none;
  width: 42px; height: 42px;
  background: var(--teal-light);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  color: var(--teal-dark);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.mobile-burger.active { background: var(--teal); color: #fff; }

/* ===== MOBILE NAV ===== */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--teal-light);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.nav-mobile.open {
  max-height: 480px;
  opacity: 1;
}
.nav-mobile .nav-link {
  display: block;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--teal-light);
  transition: background 0.2s;
}
.nav-mobile .nav-link:hover { background: var(--teal-light); }

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .mobile-burger { display: flex; }
  .nav-mobile { display: block; }
}

/* ===== CART DRAWER ===== */
.cd-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  backdrop-filter: blur(2px);
}
.cd-overlay.open { display: block; }

.cd-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 36px rgba(0,0,0,.15);
  border-radius: 16px 0 0 16px;
}
.cd-drawer.open { transform: translateX(0); }

.cd-header {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(26,170,155,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cd-header h3 { font-size: 17px; font-weight: 900; color: var(--navy); }
.cd-header h3 i { color: var(--teal); margin-right: 8px; }

.cd-close {
  width: 34px; height: 34px;
  background: var(--gray);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cd-close:hover { background: var(--teal); color: var(--white); }

.cd-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,170,155,0.08);
}
.cd-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.cd-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.cd-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #c0392b;
  font-size: 14px;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.cd-remove:hover { background: rgba(192,57,43,0.08); }

.cd-footer {
  padding: 16px 22px 24px;
  border-top: 1px solid rgba(26,170,155,0.15);
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,170,155,0.35);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,170,155,0.45); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 1500;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(26,170,155,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,170,155,0.5); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast i { color: #2ecc71; font-size: 16px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
