/* ═══════════════════════════════════════════════════════════
   Shambhu Tea & Spices — Design System
   Fonts: Playfair Display (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand palette */
  --green-900: #0d3320;
  --green-800: #1a5c38;
  --green-700: #1e7043;
  --green-600: #22874f;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

  --gold-600: #d97706;
  --gold-400: #f59e0b;
  --gold-100: #fef3c7;

  --wa-green: #25d366;
  --wa-dark:  #128c42;

  /* Neutrals */
  --bg:        #f8f9fa;
  --surface:   #ffffff;
  --text:      #0f1c14;
  --text-2:    #3d4f44;
  --muted:     #6b7c72;
  --line:      #e2e8e4;
  --line-dark: #ccd5d0;

  /* Typography — Lora (warm readable serif) + DM Sans (clean mobile body) */
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', 'Noto Sans Malayalam', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(13,51,32,.07), 0 8px 32px rgba(13,51,32,.05);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Malayalam text renders with proper weight */
.ml { font-family: 'Noto Sans Malayalam', var(--font-sans); font-weight: 500; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--green-900);
  color: #a7f3c8;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar a {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.2;
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 8px 10px;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.45rem 0.7rem;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover, .nav-link.active {
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 600;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn.full { width: 100%; }

/* Primary green */
.btn-cta {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
  box-shadow: 0 2px 12px rgba(22,112,67,.35);
}
.btn-cta:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(22,112,67,.45); }

/* WhatsApp green */
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(37,211,102,.35);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }

/* Outline light (on dark bg) */
.btn-outline-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

/* Outline brand (on light bg) */
.btn-outline-brand {
  background: transparent;
  border-color: var(--green-700);
  color: var(--green-700);
}
.btn-outline-brand:hover { background: var(--green-50); }

/* Ghost */
.btn-ghost {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--text-2);
}

/* WhatsApp form button */
.btn-wa-form {
  background: linear-gradient(135deg, #1fa84b, var(--wa-dark));
  color: #fff;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--r-md);
  box-shadow: 0 4px 18px rgba(18,140,66,.3);
}
.btn-wa-form:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* CTA card button */
.btn-cta-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 700;
  transition: all 0.2s;
}
.btn-cta-card:hover { filter: brightness(1.1); }

/* Mobile CTA */
.btn-cta-mobile {
  background: linear-gradient(135deg, var(--gold-600), #b45309);
  color: #fff;
  flex: 1;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,35,18,0.88) 0%,
    rgba(10,35,18,0.72) 50%,
    rgba(10,35,18,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}
.hero-left { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #a7f3c8;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-highlight {
  color: var(--gold-400);
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.trust-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
}
.trust-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.2);
}

/* Price Card (on hero) */
.price-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-lg);
}
.price-card-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.price-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.price-card-header p { font-size: 0.8rem; color: var(--muted); }
.price-list { display: flex; flex-direction: column; gap: 0.6rem; }
.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: none; }
.price-item-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.price-item-info img {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.price-item-info strong { display: block; font-size: 0.87rem; color: var(--text); }
.price-item-info span { font-size: 0.76rem; color: var(--muted); }
.price-tag {
  font-size: 0.95rem;
  color: var(--green-800);
  text-align: right;
  white-space: nowrap;
}
.price-tag small { font-size: 0.72rem; color: var(--muted); display: block; }
.price-note { font-size: 0.76rem; color: var(--muted); margin: 0.75rem 0 0.9rem; }

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--green-900);
  padding: 1.4rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.trust-block {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-block:last-child { border-right: none; }
.trust-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.trust-block strong,
.trust-heading { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 0.2rem; font-family: var(--font-sans); font-weight: 700; }
.trust-heading { margin: 0 0 0.2rem; /* reset h2 margin */ }
.trust-block span { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* ─── SECTION COMMON ─────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: var(--green-50); }
.section-quote {
  background: linear-gradient(135deg, var(--green-900) 0%, #0c2e1a 100%);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.6rem;
}
.section-label.light { color: #a7f3c8; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.section-title.white { color: #fff; }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}

/* Improve general paragraph readability */
p { line-height: 1.75; }
.product-desc { font-size: 0.92rem; line-height: 1.7; }
.why-card p { font-size: 0.92rem; line-height: 1.7; }

/* ─── PRODUCT GRID ───────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(13,51,32,.14);
}
.product-card.featured {
  border: 2px solid var(--green-600);
}
.featured-ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  z-index: 2;
}
.product-img-link { position: relative; display: block; overflow: hidden; }
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.product-body { padding: 1.25rem 1.2rem 1.4rem; }
.product-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.4rem 0 0.6rem;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.9rem;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.product-tags span {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-800);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-800);
}

/* ─── PHOTO STRIP ────────────────────────────────────────── */
.photo-strip {
  overflow: hidden;
  height: 200px;
}
.photo-strip-inner {
  display: flex;
  gap: 0;
  height: 100%;
}
.photo-strip-inner img {
  flex: 1;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.1);
  transition: flex 0.4s ease, filter 0.3s;
}
.photo-strip-inner img:hover {
  flex: 2.5;
  filter: brightness(1) saturate(1.2);
}

/* ─── WHY GRID ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  position: relative;
}
.testimonial-card.featured-testi {
  background: var(--green-900);
  border-color: var(--green-800);
  transform: scale(1.03);
}
.testimonial-card.featured-testi p,
.testimonial-card.featured-testi .stars { color: rgba(255,255,255,0.9); }
.testimonial-card.featured-testi .testi-author strong { color: #fff; }
.testimonial-card.featured-testi .testi-author span { color: rgba(255,255,255,0.6); }
.stars { color: var(--gold-400); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.testi-author span { font-size: 0.78rem; color: var(--muted); }

/* ─── QUOTE SECTION ──────────────────────────────────────── */
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.quote-left { color: rgba(255,255,255,0.9); }
.quote-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 1rem 0 1.4rem;
}
.quote-bullets { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.6rem; }
.quote-bullets li { font-size: 0.9rem; color: rgba(255,255,255,0.82); }
.quote-img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  height: 180px;
  filter: brightness(0.85) saturate(1.1);
}
.quote-contact-alt {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.quote-phone, .quote-email {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s;
}
.quote-phone:hover, .quote-email:hover { color: #a7f3c8; }

/* Quote Form */
.quote-right {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}
.required { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--line-dark);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22,112,67,.12);
  background: #fff;
}
.form-group textarea { min-height: 90px; resize: vertical; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.6; max-width: 280px; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-link {
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: filter 0.2s;
}
.social-link.wa { background: var(--wa-green); color: #fff; }
.social-link.call { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.social-link:hover { filter: brightness(1.15); }
.footer-links h3,
.footer-links h5 { color: #fff; font-size: 0.85rem; font-weight: 700; margin: 0 0 1rem; letter-spacing: 0.05em; font-family: var(--font-sans); }
.footer-links a,
.footer-links span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.55rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: #a7f3c8; }
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ─── MOBILE STICKY CTA ──────────────────────────────────── */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 0.65rem 1rem;
  display: none;
  gap: 0.6rem;
  z-index: 60;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-cta .btn-wa { flex: 1.2; }
.mobile-cta .btn-cta-mobile { flex: 1; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-content { grid-template-columns: 1fr; }
  .price-card { max-width: 480px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card.featured-testi { transform: none; }
  .quote-wrapper { grid-template-columns: 1fr; }
  .quote-left { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.65rem 0.85rem; font-size: 1rem; }
  .btn-cta { display: none; }

  .hero { min-height: auto; padding: 2.5rem 0 2rem; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-trust { gap: 1rem; padding: 0.75rem 1rem; }
  .trust-item strong { font-size: 1.15rem; }
  .price-card { max-width: 100%; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 0.5rem; }
  .trust-block:nth-child(even) { border-bottom: none; }
  .trust-block:nth-last-child(-n+2) { border-bottom: none; }

  .product-grid { grid-template-columns: 1fr; }
  .photo-strip { height: 130px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 68px; }

  .section { padding: 3rem 0; }
}
