/*
Theme Name: Life Cure Biotech
Theme URI: https://lifecurebiotech.com
Author: Life Cure Biotech
Author URI: https://lifecurebiotech.com
Description: Custom WordPress theme for Life Cure Biotech pharmaceutical company
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: lifecurebiotech
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; font-size: 15px; color: #333; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --teal: #2bbfa4;
  --teal-dark: #22a08a;
  --blue: #1a3c6e;
  --blue-light: #2563a8;
  --black: #111;
  --gray-light: #f4f6f9;
  --gray-mid: #e8ecf0;
  --white: #fff;
  --text-muted: #666;
  --border: #e0e0e0;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-left a { color: #fff; display: flex; align-items: center; gap: 6px; }
.top-bar-left a:hover { color: var(--teal); }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { color: #ccc; font-size: 15px; }
.top-bar-right a:hover { color: var(--teal); }

/* ===== HEADER / NAV ===== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 55px; width: auto; }
.site-logo span { font-size: 22px; font-weight: 700; color: var(--blue); }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border-radius: 4px;
  transition: color 0.2s;
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--teal); }
.main-nav > li > a.has-dropdown::after {
  content: ' ▾';
  font-size: 11px;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 6px;
  border-top: 3px solid var(--teal);
  z-index: 100;
  padding: 8px 0;
}
.main-nav > li:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  transition: background 0.2s, color 0.2s;
}
.dropdown li a:hover { background: var(--gray-light); color: var(--teal); }
.btn-contact {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-contact:hover { background: var(--teal-dark) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: #333; display: block; transition: 0.3s; }

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

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--gray-light);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.page-banner h1 { font-size: 28px; color: var(--blue); font-weight: 700; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; background: #0a1628; }
.slide {
  display: none;
  position: relative;
  min-height: 500px;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.slide.active { display: flex; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.85) 40%, rgba(10,22,40,0.3));
}
.slide-content { position: relative; z-index: 2; padding: 60px 0; max-width: 600px; }
.slide-content .eyebrow { font-size: 16px; color: #fff; opacity: 0.85; margin-bottom: 10px; display: block; }
.slide-content h1 { font-size: 52px; font-weight: 800; color: var(--teal); line-height: 1.1; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -1px; }
.slide-content p { font-size: 22px; color: #fff; font-weight: 300; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; }
.slider-prev { left: 15px; }
.slider-next { right: 15px; }
.slider-nav button {
  background: rgba(255,255,255,0.2);
  border: none; color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
}
.slider-nav button:hover { background: var(--teal); }

/* Hero badges */
.hero-badges {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.95);
  border-top: 3px solid var(--teal);
}
.hero-badge {
  flex: 1;
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-badge:last-child { border-right: none; }
.hero-badge svg, .hero-badge .badge-icon { width: 36px; height: 36px; color: var(--teal); }
.hero-badge span { font-size: 12px; font-weight: 600; color: #444; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 80px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: 12px; width: 100%; }
.about-circle-deco {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.08;
}
.deco-1 { top: -20px; left: -20px; }
.deco-2 { bottom: -20px; right: -20px; width: 80px; height: 80px; }
.section-eyebrow { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.about-content h1 { font-size: 34px; color: var(--blue); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.about-content p { color: #555; margin-bottom: 20px; }
.value-item { display: flex; gap: 16px; margin-bottom: 20px; }
.value-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.value-icon svg { width: 20px; height: 20px; }
.value-item h3 { font-size: 16px; color: var(--blue); margin-bottom: 4px; }
.value-item p { color: #666; font-size: 14px; margin: 0; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--gray-light); padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 60px; height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--teal);
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: 13px; color: var(--teal); font-weight: 500; }

/* ===== TEAL SERVICES SECTION ===== */
.services-section { background: #2bbfa4; padding: 70px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.service-divider { border-right: 1px dashed rgba(255,255,255,0.3); }
.service-item {
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}
.service-item:last-child { border: none; }
.service-box-icon {
  width: 70px; height: 70px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.service-box-icon svg { width: 32px; height: 32px; color: #fff; }
.service-item h3 { font-size: 18px; color: #fff; margin-bottom: 14px; font-weight: 600; }
.service-item p { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-size: 13px;
  transition: background 0.2s;
}
.btn-know-more:hover { background: rgba(255,255,255,0.3); }

/* ===== WHY BEST SECTION ===== */
.why-best-section { padding: 80px 0; background: #fff; }
.why-best-section h1 { text-align: center; font-size: 32px; color: var(--blue); font-weight: 800; text-transform: uppercase; margin-bottom: 50px; letter-spacing: 1px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.why-item:first-child { padding-top: 0; }
.why-item-icon { color: var(--teal); min-width: 32px; }
.why-item-icon svg { width: 28px; height: 28px; }
.why-item h3 { font-size: 16px; color: var(--blue); margin-bottom: 6px; font-weight: 600; }
.why-item p { color: #666; font-size: 14px; }
.why-images { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.why-images img { width: 100%; border-radius: 12px; object-fit: cover; }
.why-img-top { height: 240px; }
.why-img-bottom { height: 180px; }

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 70px 0; background: var(--gray-light); }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 30px; font-weight: 700; color: var(--blue); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.product-card-logo {
  padding: 10px 15px 0;
  display: flex;
  justify-content: flex-start;
}
.product-card-logo img { height: 28px; width: auto; }
.product-card img.product-img { width: 100%; height: 180px; object-fit: contain; padding: 10px; }
.product-card-name {
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  border-top: 1px solid var(--gray-mid);
}

/* ===== FACTS SECTION ===== */
.facts-section { padding: 70px 0; background: var(--teal); }
.facts-section .section-title h2 { color: #fff; }
.facts-grid { display: flex; flex-direction: column; gap: 0; }
.fact-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.fact-item:last-child { border-bottom: none; }
.fact-item.reverse { }
.fact-text h3 { font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 12px; }
.fact-text p { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.8; }
.fact-check {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: #fff;
}
.fact-check svg { width: 18px; height: 18px; }
.fact-image { text-align: center; }
.fact-image img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto; border: 4px solid rgba(255,255,255,0.25); }
.fact-center { display: flex; justify-content: center; }

/* ===== GET IN TOUCH / CONTACT SECTION ===== */
.contact-section { padding: 70px 0; background: #fff; }
.contact-section .section-title h2 { color: var(--blue); }
.contact-info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 700px; margin: 0 auto 40px; }
.contact-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
}
.contact-card svg { width: 36px; height: 36px; color: var(--teal); margin-bottom: 10px; }
.contact-card h3 { font-size: 15px; color: var(--teal); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 14px; color: #555; }
.contact-card a:hover { color: var(--teal); }
.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.contact-form-wrap h2 { text-align: center; font-size: 22px; color: var(--blue); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 25px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-group textarea { border-radius: 12px; resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.btn-submit {
  background: var(--teal);
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--teal-dark); }

/* ===== MAP ===== */
.map-section { height: 350px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
.site-footer { background: #111; color: #ccc; padding: 50px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #aaa; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-col p, .footer-col address { font-size: 13px; color: #aaa; font-style: normal; line-height: 1.7; margin-bottom: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: #aaa; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--teal); min-width: 14px; margin-top: 3px; }
.footer-contact-item a { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: #666; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  color: #aaa;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; left: 16px; bottom: 80px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-phone { background: #2bbfa4; }
.float-wa { background: #25d366; }
.float-email { background: #2bbfa4; }

/* ===== CERTIFICATION PAGE ===== */
.cert-section { padding: 70px 0; background: #fff; }
.cert-intro { max-width: 750px; margin: 0 auto 50px; text-align: center; color: #555; }
.cert-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cert-badge-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.2s;
}
.cert-badge-card:hover { box-shadow: var(--shadow); }
.cert-badge-card img { height: 100px; width: auto; margin: 0 auto 20px; }
.cert-badge-card h3 { font-size: 18px; color: var(--blue); margin-bottom: 10px; }
.cert-badge-card p { font-size: 14px; color: #666; }
.benefits-section { background: var(--teal); padding: 60px 0; }
.benefits-section .section-title h2 { color: #fff; }
.benefits-section .section-title p { color: rgba(255,255,255,0.8); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card { text-align: center; color: #fff; }
.benefit-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.benefit-card h3 { font-size: 28px; font-weight: 800; color: #fff; }
.benefit-card p { font-size: 13px; color: rgba(255,255,255,0.8); }
.cert-logos-section { padding: 60px 0; background: #fff; }
.cert-logos { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }
.cert-logos img { height: 80px; width: auto; filter: grayscale(30%); transition: filter 0.2s; }
.cert-logos img:hover { filter: none; }

/* ===== PRODUCT PAGES ===== */
.product-page-section { padding: 70px 0; background: #fff; }
.product-page-intro { max-width: 800px; margin: 0 auto 50px; }
.product-page-intro p { color: #555; margin-bottom: 16px; }
.product-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.product-page-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-page-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-page-card img { width: 100%; height: 200px; object-fit: contain; padding: 20px; }
.product-page-card-name { padding: 14px; font-weight: 600; color: var(--teal); border-top: 1px solid var(--border); font-size: 14px; }
.product-download-bar { background: var(--gray-light); padding: 30px; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.product-download-bar p { color: #555; max-width: 500px; }
.btn-download {
  background: var(--teal);
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-download:hover { background: var(--teal-dark); color: #fff; }

/* ===== CONTRACT MFG PAGE ===== */
.contract-section { padding: 70px 0; background: #fff; }
.contract-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start; }
.contract-list { list-style: none; }
.contract-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contract-list li::before { content: '✓'; color: var(--teal); font-weight: 700; }
.contract-cta { background: var(--teal); color: #fff; padding: 40px; border-radius: 12px; text-align: center; }
.contract-cta h3 { color: #fff; font-size: 20px; margin-bottom: 12px; }
.contract-cta p { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 20px; }
.btn-white { background: #fff; color: var(--teal); padding: 12px 28px; border-radius: 25px; font-weight: 700; display: inline-block; transition: box-shadow 0.2s; }
.btn-white:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* ===== GALLERY PAGE ===== */
.gallery-section { padding: 70px 0; background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 1; background: var(--gray-light); }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

/* ===== ABOUT PAGE ===== */
.about-page-section { padding: 70px 0; background: #fff; }
.about-page-content { max-width: 900px; margin: 0 auto; }
.about-page-content h1 { font-size: 28px; color: var(--teal); text-align: center; margin-bottom: 30px; font-weight: 700; }
.about-page-content p { color: #555; margin-bottom: 18px; line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 20px; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav > li > a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-images { display: none; }
  .fact-item { grid-template-columns: 1fr; }
  .fact-image { display: none; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-content h1 { font-size: 34px; }
  .hero-badges { flex-wrap: wrap; }
  .cert-badges { grid-template-columns: 1fr; }
  .product-page-grid { grid-template-columns: repeat(2, 1fr); }
  .contract-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .top-bar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
  .slide-content h1 { font-size: 26px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-page-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
