/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO
   Mapped from: Variant 1 hero (product image left, text+CTA right)
   Dev note: Same Elementor hero columns. Swap image, headline, buttons.
   ═══════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #f9fafb 0%, #f1f3f7 60%, #eaecf2 100%);
  padding: 65px 0 75px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
/* Image on the LEFT — same as Medik Variant 1 */
.hero-image {
  flex: 0 0 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrap {
  position: relative;
  width: 360px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Blob shape behind product — same as Medik's circular/blob hero bg */
.hero-blob {
  position: absolute;
  inset: 10px;
  background: linear-gradient(145deg, rgba(192,57,43,0.06), rgba(12,29,58,0.05));
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
  animation: blobMove 9s ease-in-out infinite;
}
@keyframes blobMove {
  0%, 100% { border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%; }
  50% { border-radius: 45% 55% 50% 50% / 55% 45% 50% 55%; }
}
/* AED Product placeholder — devs replace with actual product image */
.hero-aed {
  position: relative;
  z-index: 2;
  width: 240px;
}
.aed-device-hero {
  width: 220px;
  height: 260px;
  background: linear-gradient(160deg, #e8edf2, #d0d8e2);
  border-radius: 28px;
  border: 3px solid #c0c9d4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 50px rgba(12,29,58,0.15);
  overflow: hidden;
}
.aed-device-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--red);
  border-radius: 25px 25px 0 0;
  opacity: 0.9;
}
.aed-heart {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 38px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  line-height: 1;
}
.aed-screen {
  width: 120px;
  height: 56px;
  background: linear-gradient(180deg, #1a3a2a, #0d2618);
  border-radius: 6px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  border: 2px solid #2a4a3a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aed-screen-line {
  width: 70%;
  height: 2px;
  background: #34d399;
  border-radius: 1px;
  position: relative;
}
.aed-screen-line::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20%;
  width: 15px;
  height: 18px;
  border-left: 2px solid #34d399;
  border-bottom: 2px solid #34d399;
  transform: skewX(-20deg);
}
.aed-label-bottom {
  margin-top: auto;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-500);
  position: relative;
  z-index: 1;
}
.aed-handle-hero {
  width: 56px;
  height: 22px;
  background: linear-gradient(180deg, #b8c2cc, #a0aab4);
  border-radius: 6px 6px 0 0;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Hero text — right column */
.hero-content { flex: 1; }
.hero-content h1 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
.hero-content p {
  font-size: 16.5px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.25); }
.btn-red svg { width: 16px; height: 16px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════
   SECTION 2 — USP / "WHY CHOOSE US" as PARTNERS BAR style
   Mapped from: Variant 1 "OUR PARTNERS" blue banner
   Dev note: Same full-width colored section. Swap bg to red, 
   change logos to 3 USP text items with icons.
   ═══════════════════════════════════════════════════ */
.usp-bar {
  background: var(--red);
  padding: 40px 0;
}
.usp-bar-inner { text-align: center; }
.usp-bar-inner h3 {
  color: white;
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
}
.usp-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.usp-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.usp-bar-item .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-bar-item .icon-box svg { width: 22px; height: 22px; color: white; }
.usp-bar-item span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}


/* ═══════════════════════════════════════════════════
   SECTION 3 — TOP AED BRANDS (as icon row)
   Mapped from: Variant 1 "category icons" row (4 icon cards)
   Dev note: Same Elementor icon-box grid. 4 columns,
   swap sanitizer icons for brand logos/names.
   ═══════════════════════════════════════════════════ */
.brands-row {
  padding: 65px 0;
  background: var(--white);
}
.brands-row .section-title {
  text-align: center;
  margin-bottom: 12px;
}
.brands-row .section-title h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.brands-row .section-sub {
  text-align: center;
  font-size: 14.5px;
  color: var(--gray-500);
  margin-bottom: 40px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.brand-card {
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  cursor: pointer;
}
.brand-card:hover { background: var(--gray-50); transform: translateY(-4px); }
.brand-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s;
  padding: 16px;
}
.brand-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-card:hover .brand-img { border-color: var(--red); box-shadow: 0 4px 16px rgba(192,57,43,0.1); }
.brand-card h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.brand-card p { font-size: 13px; color: var(--gray-400); }


/* ═══════════════════════════════════════════════════
   SECTION 4 — FEATURED PRODUCTS (4 cards)
   Mapped from: Variant 2/3/4 WooCommerce product grid
   Dev note: Standard WooCommerce product loop with 4 columns.
   Just style cards and populate with AED products.
   ═══════════════════════════════════════════════════ */
.featured {
  padding: 70px 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-header .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.product-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.product-thumb {
  height: 210px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.product-thumb .brand-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--navy);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
/* Mini AED device placeholder */
.mini-aed {
  width: 100px;
  height: 90px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mini-aed.green { background: linear-gradient(145deg, #dcfce7, #bbf7d0); border: 2px solid #86efac; }
.mini-aed.blue { background: linear-gradient(145deg, #dbeafe, #bfdbfe); border: 2px solid #93c5fd; }
.mini-aed.coral { background: linear-gradient(145deg, #ffe4e6, #fecdd3); border: 2px solid #fda4af; }
.mini-aed.purple { background: linear-gradient(145deg, #ede9fe, #ddd6fe); border: 2px solid #c4b5fd; }
.mini-aed .heart { font-size: 28px; opacity: 0.45; }
.product-body { padding: 18px; }
.product-body h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.product-body .features { margin-bottom: 16px; }
.product-body .features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-bottom: 5px;
  line-height: 1.5;
}
.product-body .features li svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.product-btns { display: flex; gap: 8px; }
.btn-sm {
  flex: 1;
  padding: 9px 10px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-sm.fill { background: var(--red); color: white; }
.btn-sm.fill:hover { background: var(--red-hover); }
.btn-sm.ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--gray-200); }
.btn-sm.ghost:hover { border-color: var(--navy); }


/* ═══════════════════════════════════════════════════
   SECTION 5 — BUSINESS PACKAGES (card layout)
   Mapped from: Client-approved 2-card layout
   Dev note: Elementor icon-box cards in 2-column grid.
   ═══════════════════════════════════════════════════ */
.packages {
  padding: 75px 0;
  background: var(--off-white);
}
.section-desc {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 460px;
  margin: 10px auto 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
}
.package-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-100); border-left-color: var(--red); }
.pkg-icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pkg-icon svg { width: 24px; height: 24px; color: var(--red); }
.package-card h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.package-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 10px; }
.pkg-includes { font-size: 13px; color: var(--gray-400); font-style: italic; }
.packages-cta { text-align: center; margin-top: 32px; }

/* ═══════════════════════════════════════════════════
   STATS COUNTER BAR (from Medik Variant 3)
   Dev note: Same Elementor counter widget, 4 columns on red bg
   ═══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--red);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  line-height: 1;
}
.stat-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS (from Medik Variant 2/3)
   Dev note: Elementor testimonial carousel / grid widget.
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author .avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-author .info h5 { font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-author .info span { font-size: 12px; color: var(--gray-400); }


/* ═══════════════════════════════════════════════════
   SECTION 7 — BULK CTA (full-width dark strip)
   Mapped from: Variant 1's Sanitizer Gel section / Stats bar
   Dev note: Full-width Elementor section with dark bg.
   ═══════════════════════════════════════════════════ */
.bulk-cta {
  background: var(--navy);
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}
.bulk-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: rgba(192,57,43,0.06);
  border-radius: 50%;
}
.bulk-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.bulk-text { max-width: 540px; }
.bulk-text h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.bulk-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.btn-bulk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-bulk:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.35); }
.btn-bulk svg { width: 18px; height: 18px; }


/* ═══════════════════════════════════════════════════
   SECTION 8 — CONTACT FORM
   Mapped from: Variant 1 newsletter section (expanded)
   Dev note: Take newsletter Elementor section, expand to
   full contact form layout with 2 columns.
   ═══════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
  background: var(--off-white);
}
.contact-header {
  text-align: center;
  margin-bottom: 44px;
}
.contact-header h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-header p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { grid-column: 1 / -1; margin-top: 6px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-submit:hover { background: var(--red-hover); }
/* Quick-info row beneath form — matches Medik's "trust badges near CTA" pattern */
.form-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.form-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--gray-400);
  font-weight: 500;
}
.form-trust span svg { width: 15px; height: 15px; color: var(--teal); }


/* ═══════════════════════════════════════════════════
   FOOTER
   Mapped from: Variant 1 Medik footer (dark bg, 4 columns, 
   bottom bar with logo + subscribe + social + links)
   Dev note: Same Elementor footer widget. Update columns.
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 55px 0 0;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-mark { background: var(--red); }
.footer-logo .logo-text { color: white; font-family: 'Outfit', sans-serif !important; font-size: 22px; font-weight: 800; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--red); }
.footer-social a svg { width: 15px; height: 15px; color: rgba(255,255,255,0.6); }

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.footer-col-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 260px; margin-top: 8px; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: white; }


/* ═══════════ SCROLL ANIMATIONS ═══════════ */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content p { margin: 0 auto 30px; }
  .hero-btns { justify-content: center; }
  .hero-image { flex: none; width: 100%; max-width: 360px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .bulk-inner { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .top-strip-sep { display: none; }
  .top-strip-scroll { gap: 10px; }
  .hero { padding: 45px 0 55px; }
  .hero-content h1 { font-size: 30px; }
  .products-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .usp-bar-items { flex-direction: column; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .section-header h2 { font-size: 26px; }
}