/* ===========================
   PETAL PHARMA — STYLESHEET
   =========================== */

:root {
  --navy: #004b87;
  --navy-mid: #003666;
  --teal: #00a859;
  --teal-light: #00c76a;
  --teal-pale: #e6f7ef;
  --gold: #c8a45a;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ec;
  --gray-400: #9aa3b2;
  --gray-600: #5a6473;
  --gray-800: #2d3748;
  --text: #1a202c;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn--white:hover { background: var(--teal-pale); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.85rem; }

/* ---- LABELS ---- */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ---- SECTION ---- */
.section { padding: 100px 0; }
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section__head p { color: var(--gray-600); font-size: 1.05rem; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,75,135,0.15);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
}
.logo-img { height: 60px; width: auto; display: block; }
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav.scrolled .nav__links a { color: var(--gray-600); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--teal); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--navy); }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
}
.nav__mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  color: var(--navy);
}
.nav__mobile .btn { margin-top: 16px; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero__video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,75,135,0.85) 0%, rgba(0,168,89,0.3) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,124,110,0.2);
  border: 1px solid rgba(14,124,110,0.4);
  color: var(--teal-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero__title em {
  font-style: normal;
  color: var(--teal-light);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero__actions .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero__actions .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.stats-banner {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
}
.stat span {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--teal);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}
.trust-bar__inner .divider { opacity: 0.3; }

/* ---- SERVICES ---- */
.services { background: var(--off-white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; transition: var(--transition); }
.card--service { border: 1px solid var(--gray-200); }
.card--service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-pale); }
.card__icon { font-size: 2rem; margin-bottom: 20px; }
.card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.card p { font-size: 0.93rem; color: var(--gray-600); line-height: 1.7; }

/* ---- CATEGORIES ---- */
.categories { background: var(--white); }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.cat-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,168,89,0.3);
}
.cat-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.cat-card p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }

/* ---- WHY US ---- */
.why-us { background: var(--navy); }
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us__text .label { color: var(--teal-light); }
.why-us__text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 28px; line-height: 1.3; }
.why-list { list-style: none; margin-bottom: 36px; }
.why-list li {
  display: flex;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-list li span { color: var(--teal-light); font-weight: 700; flex-shrink: 0; }
.why-us__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visual-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.visual-card--accent {
  background: rgba(14,124,110,0.2);
  border-color: rgba(14,124,110,0.4);
}
.vc-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.vc-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--off-white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testimonial p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial__author span { font-size: 0.8rem; color: var(--gray-400); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #0a5c52 100%);
  padding: 80px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--white); margin-bottom: 8px; }
.cta-banner__inner p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand .logo-mark, .footer__brand .logo-text { color: var(--white); }
.footer__brand .logo-text strong { color: var(--teal-light); }
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer__links h4, .footer__contact h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__links { display: flex; flex-direction: column; gap: 0; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 7px 0;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--teal-light); }
.footer__contact p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; line-height: 1.6; }
.footer__contact a { color: var(--teal-light); }
.footer__bottom {
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__bottom div { display: flex; gap: 24px; }
.footer__bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--teal-light); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(14,124,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,124,110,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 560px; }
.breadcrumb { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb span { margin: 0 8px; }

/* ---- PRODUCTS PAGE ---- */
.products-section { padding: 80px 0; background: var(--off-white); }
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-600);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal-pale), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.product-card__body { padding: 24px; }
.product-card__badge {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.product-card p { font-size: 0.87rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.6; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__footer span { font-size: 0.82rem; color: var(--gray-400); }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; background: var(--off-white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--gray-600); margin-bottom: 32px; }
.contact-info__item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info__icon { width: 44px; height: 44px; background: var(--teal-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info__item h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-info__item p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }

/* ---- FORM ---- */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; }
.form-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { grid-column: 1 / -1; }

/* ---- ABOUT PAGE ---- */
.about-section { padding: 80px 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 20px; line-height: 1.3; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.about-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--teal); margin-bottom: 6px; }
.about-stat span { font-size: 0.82rem; color: var(--gray-600); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.team-avatar { width: 72px; height: 72px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: var(--white); margin: 0 auto 16px; font-family: var(--font-display); }
.team-card h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: 0.83rem; color: var(--teal); font-weight: 500; }

/* ---- CATALOGUE PAGE ---- */
.catalogue-section { padding: 80px 0; background: var(--off-white); }
.catalogue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.catalogue-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px; display: flex; align-items: center; gap: 24px; transition: var(--transition); }
.catalogue-card:hover { box-shadow: var(--shadow); border-color: var(--teal); }
.catalogue-icon { font-size: 2.5rem; }
.catalogue-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.catalogue-card p { font-size: 0.87rem; color: var(--gray-600); margin-bottom: 16px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { gap: 28px; }
  .stat strong { font-size: 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .catalogue-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__inner .divider { display: none; }
}
