/* ===================================================== */
/* PRODUCT GALLERY + OEM LANDING (2026 FB MANIA STYLE)
/* ===================================================== */
:root {
  --primary: #2563eb;
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
}

.product-gallery-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* ===================================================== */
/* ADVANCED HERO SECTION (OEM PREMIUM STYLE)
/* ===================================================== */

.hero-oem-advanced {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(175deg, #25aae1, #2979a7);
  color: white;
}
.hero-oem-advanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}
/* animated background glow */
.hero-bg {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18),
    transparent 65%
  );
  filter: blur(70px);
  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 30px);
  }
}

/* layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* text */
.hero-content .tag {
  display: inline-block;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 520px;
}

/* buttons */
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.btn-primary {
  background: #ffffff;
  color: #2979a7;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* trust row */
.trust-row {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

/* visual side */
.hero-visual {
  position: relative;
  height: 420px;
}

/* floating product cards */
.floating-card {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card1 {
  top: 0;
  left: 40px;
}

.card2 {
  top: 120px;
  right: 0;
  animation-delay: 1s;
}

.card3 {
  bottom: 0;
  left: 80px;
  animation-delay: 2s;
}

/* floating motion */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* glow circle */
.glow-circle {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  filter: blur(50px);
  bottom: 0;
  right: 40px;
  z-index: -1;
}

/* responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    height: 320px;
  }
}
/* ===================================================== */
/* DARK HERO-STYLE MANUFACTURING SECTION
/* ===================================================== */

.manufacturing-premium.dark {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background: linear-gradient(
    175deg,
    #25aae1,
    #2979a7
  );
}

.manufacturing-premium.dark::before {
  content: "";

  position: absolute;

  top: -250px;
  left: -250px;

  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 65%
  );

  filter: blur(40px);

  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {

  0%,100% {
    transform: translate(0,0);
  }

  50% {
    transform: translate(40px,30px);
  }

}











/* =======================================
   WHY FB MANIA
======================================= */

.why-fbmania {
  padding: 100px 0;
  background: #f8fbfd;
  position: relative;
  overflow: hidden;
}

.why-fbmania::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;

  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    rgba(37, 170, 225, 0.08),
    transparent 70%
  );

  pointer-events: none;
}

.why-fbmania .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.why-fbmania .section-tag {
  display: inline-block;
  padding: 8px 18px;

  border-radius: 999px;

  background: rgba(37, 170, 225, 0.08);
  border: 1px solid rgba(37, 170, 225, 0.15);

  color: #25aae1;

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-fbmania h2 {
  color: #0f172a;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 900;
}

.why-fbmania .section-header p {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

/* ==========================
   GRID
========================== */

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* ==========================
   CARD
========================== */

.trust-card {
  background: #ffffff;

  border-radius: 24px;

  padding: 35px;

  border: 1px solid #e5edf4;

  box-shadow:
    0 5px 20px rgba(15, 23, 42, 0.04);

  transition: all 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-8px);

  border-color: rgba(37, 170, 225, 0.3);

  box-shadow:
    0 20px 50px rgba(37, 170, 225, 0.12);
}

/* ==========================
   ICON
========================== */

.card-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;

  border-radius: 18px;

  background: linear-gradient(
    175deg,
    #25aae1,
    #2979a7
  );

  color: white;

  margin-bottom: 25px;
}

/* ==========================
   PROBLEM
========================== */

.problem span {
  display: inline-block;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1px;

  color: #ef4444;

  margin-bottom: 8px;
}

.problem h3 {
  color: #0f172a;
  font-size: 24px;
  margin-bottom: 20px;
}

/* ==========================
   SOLUTION
========================== */

.solution {
  border-top: 1px solid #edf2f7;
  padding-top: 20px;
}

.solution h4 {
  color: #25aae1;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.solution p {
  color: #64748b;
  line-height: 1.8;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 28px;
  }

  .why-fbmania {
    padding: 80px 0;
  }
}








/* =========================================
   SECTION HEADER
========================================= */

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  backdrop-filter: blur(10px);
}

.manufacturing-premium.dark .section-header h2 {
  color: #ffffff;
  margin-top: 18px;
}

.manufacturing-premium.dark .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   GRID
========================================= */

.cap-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* =========================================
   CARDS
========================================= */

.cap-card {
  position: relative;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border-radius: 22px;

  padding: 30px 24px;

  text-align: center;

  overflow: hidden;

  transition: all 0.35s ease;
}

/* glow effect */

.cap-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.15),
    transparent 65%
  );

  opacity: 0;

  transition: 0.4s ease;
}

.cap-card:hover::before {
  opacity: 1;
}

.cap-card:hover {
  transform: translateY(-10px);

  border-color: rgba(255, 255, 255, 0.3);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15);
}

/* =========================================
   ICON
========================================= */

.icon {
  width: 74px;
  height: 74px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: white;

  box-shadow:
    0 10px 25px rgba(255, 255, 255, 0.08);
}

/* =========================================
   TEXT
========================================= */

.cap-card h3 {
  font-size: 17px;
  font-weight: 800;

  color: #ffffff;

  margin-bottom: 12px;
}

.cap-card p {
  font-size: 14px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {

  .cap-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 640px) {

  .cap-grid-premium {
    grid-template-columns: 1fr;
  }

  .cap-card {
    text-align: center;
    padding: 26px;
  }

}
/* ===================================================== */
/* MATERIALS + FILLINGS */
/* ===================================================== */
/* ===================================================== */
/* MATERIALS & FILLINGS SECTION (LIGHT PREMIUM OEM STYLE)
/* ===================================================== */

.materials-premium {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* soft glow background */
.materials-premium::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -250px;
  left: -250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 60%);
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
}

/* ===================================================== */
/* SECTION HEADER
/* ===================================================== */

.materials-premium .section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.materials-premium .section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.materials-premium .section-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.materials-premium .section-header p {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
}

/* ===================================================== */
/* GRID LAYOUT
/* ===================================================== */

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* ===================================================== */
/* CARDS
/* ===================================================== */

.material-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.material-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.1);
}

/* highlight card */
.material-card.highlight {
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 20px 55px rgba(37, 99, 235, 0.08);
}

/* ===================================================== */
/* CARD TITLE
/* ===================================================== */

.material-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

/* ===================================================== */
/* MATERIAL ITEM ROW
/* ===================================================== */

.material-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

/* dot indicator */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  background: #2563eb;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}

/* text block */
.material-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.material-item p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ===================================================== */
/* HOVER EFFECT (SUBTLE LUXURY FEEL)
/* ===================================================== */

.material-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.06), transparent 60%);
  opacity: 0;
  transition: 0.4s ease;
}

.material-card:hover::after {
  opacity: 1;
}

/* ===================================================== */
/* RESPONSIVE
/* ===================================================== */

@media (max-width: 768px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .material-card {
    padding: 22px;
  }
}
/* ===================================================== */
/* OLD PRODUCT GALLERY (IMPROVED COMPATIBILITY) */
/* ===================================================== */
/* ===================================================== */
/* PRODUCT GALLERY SECTION (PREVIEW MODE - LIGHT OEM STYLE)
/* ===================================================== */
/* ===================================================== */
/* PRODUCT GALLERY PREVIEW (PREMIUM OEM STYLE)
/* ===================================================== */

.product-gallery-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* soft glow */
.product-gallery-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -220px;
  right: -220px;
  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 65%);
  filter: blur(60px);
  opacity: 0.8;
}

/* ===================================================== */
/* INTRO (UPGRADED TYPOGRAPHY)
/* ===================================================== */

.gallery-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

.gallery-intro h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.gallery-intro p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
}

/* ===================================================== */
/* GRID PREVIEW (CONTROLLED 2 ROW LAYOUT)
/* ===================================================== */

.product-gallery-grid.preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

  max-height: 560px; /* exactly 2 rows feel */
  overflow: hidden;

  position: relative;
  z-index: 2;
}

/* soft bottom fade (premium look) */
.product-gallery-grid.preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

/* ===================================================== */
/* PRODUCT CARD (KEEP CONSISTENT WITH BRAND)
/* ===================================================== */

.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition: all 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.12);
}

/* image */
.product-image {
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

/* badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2563eb;
  color: white;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}

/* content */
.product-content {
  padding: 14px 16px;
}

.product-content h3 {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.product-artno {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
}

/* ===================================================== */
/* CTA WRAPPER (MAKES BUTTON FEEL IMPORTANT)
/* ===================================================== */

.gallery-cta {
  text-align: center;
  margin-top: 45px;
  position: relative;
  z-index: 2;
}

/* BUTTON */
.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 13px 24px;
  border-radius: 999px;

  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(37,99,235,0.25);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* hover lift */
.see-all-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.35);
}

/* shine effect */
.see-all-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition: 0.6s ease;
}

.see-all-btn:hover::after {
  left: 100%;
}

/* ===================================================== */
/* RESPONSIVE
/* ===================================================== */

@media (max-width: 1024px) {
  .product-gallery-grid.preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-gallery-grid.preview {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 180px;
  }
}
/* ===================================================== */
/* PREMIUM CTA SECTION (OEM CONVERSION BLOCK)
/* ===================================================== */

.cta-premium {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #0b1220 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* glow background */
.cta-premium::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -250px;
  left: -250px;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 60%);
  filter: blur(60px);
  animation: floatGlow 8s ease-in-out infinite;
}

/* layout */
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* tag */
.cta-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 999px;
  margin-bottom: 15px;
  color: #93c5fd;
}

/* heading */
.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  margin-bottom: 15px;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
  max-width: 520px;
}

/* features */
.cta-features {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
}

/* buttons */
.cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

/* note */
.cta-note {
  margin-top: 12px;
  font-size: 12px;
  color: #94a3b8;
}

/* right box */
.cta-box {
  position: relative;
}

.cta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.cta-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 15px;
}

.cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  color: #cbd5e1;
  font-size: 13px;
}

.cta-card ul li {
  margin-bottom: 6px;
}

.cta-small-btn {
  display: inline-block;
  padding: 10px 14px;
  background: #2563eb;
  color: white;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

/* glow */
.cta-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(37,99,235,0.4), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

/* responsive */
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content p {
    margin: 0 auto;
  }

  .cta-buttons {
    justify-content: center;
  }
}
/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mf-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .hero-oem {
    padding: 70px 0 40px;
  }
}
