/* ═══════════════════════════════════════════════════════════════
   SANTANG COLOMBIA — styles.css
   Diseño premium corporativo B2B
═══════════════════════════════════════════════════════════════ */

/* VARIABLES */
:root {
  --black:       #0d0d0c;
  --dark:        #1a1a18;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray-light:  #f0eeea;
  --gray-mid:    #d4d0c8;
  --gray-text:   #6b6760;
  --border:      #e4e1da;
  --accent:      #8aabc4;
  --accent-dark: #4d7a98;
  --accent-pale: #e8f0f5;
  --warn-bg:     #fdf4f3;
  --warn-border: #f0c4be;
  --warn-text:   #b03a2e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 20px 50px rgba(0,0,0,0.14);
  --radius:       10px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
}
.section-title.light { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9rem;
}
.eyebrow.light { color: rgba(255,255,255,0.65); }

.body-text { font-size: 0.97rem; color: var(--gray-text); line-height: 1.8; max-width: 560px; }
.body-text.light { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 4rem; }
.section-header .body-text { margin: 0.8rem auto 0; }
.text-center { text-align: center; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-white-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.full-width { width: 100%; justify-content: center; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal-section { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-section.visible { opacity: 1; transform: translateY(0); }

/* ── PLACEHOLDER DE IMAGEN ──────────────────────────── */
/* Este placeholder se muestra cuando la imagen no carga todavía */
.product-img-placeholder {
  position: absolute;
  inset: 0;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--gray-text);
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1rem;
  z-index: 0;
}
.product-img-placeholder svg { width: 36px; height: 36px; opacity: 0.4; }
.product-img-placeholder span { opacity: 0.6; word-break: break-all; max-width: 200px; }

/* Cuando la imagen carga, ocultamos el placeholder */
.product-img { position: relative; z-index: 1; }
.product-img[src="TU_IMAGEN_SILLAS_PLASTICAS_AQUI.jpg"],
.product-img[src="TU_IMAGEN_SILLAS_METALICAS_AQUI.jpg"],
.product-img[src="TU_IMAGEN_MESAS_PLASTICAS_AQUI.jpg"],
.product-img[src="TU_IMAGEN_MUEBLES_COMERCIALES_AQUI.jpg"] { display: none; }

.about-img-placeholder,
.b2b-img-placeholder { position: absolute; inset: 0; background: var(--gray-light); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; color: var(--gray-text); font-size: 0.8rem; text-align: center; padding: 1rem; }
.about-img-placeholder svg,
.b2b-img-placeholder svg { width: 40px; height: 40px; opacity: 0.35; }

/* Ocultar placeholder cuando la imagen carga correctamente */
.about-img-wrap .about-img { position: relative; z-index: 2; }
.about-img-wrap .about-img-placeholder { z-index: 1; }

/* Si la imagen falla, el placeholder aparece; si carga, la cubre */
.about-img-wrap .about-img[src="nosotros.png"] { display: block; }

/* ══════════════════════════════════════════════════════
   NAVEGACIÓN
══════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--black); letter-spacing: -0.01em; }
.nav-logo span { color: var(--accent-dark); }

.nav-links { display: flex; gap: 2.4rem; }
.nav-links a { font-size: 0.86rem; font-weight: 500; color: var(--gray-text); transition: color var(--transition); letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--black); }

.nav-cta { background: var(--black); color: var(--white); padding: 0.5rem 1.3rem; border-radius: 4px; font-size: 0.84rem; font-weight: 600; transition: background var(--transition); }
.nav-cta:hover { background: var(--accent-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
  flex-direction: column; gap: 1.2rem;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--black); }
.mobile-cta { background: var(--black); color: var(--white) !important; padding: 0.7rem 1.5rem; border-radius: 4px; text-align: center; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  /* 🖼️ La imagen de fondo se define inline en el HTML: background-image: url('TU_IMAGEN_HERO_AQUI.jpg') */
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  opacity: 0.38;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,12,0.75) 0%, rgba(13,13,12,0.35) 60%, rgba(13,13,12,0.2) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 0 5%;
  margin-left: 5%;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(138,171,196,0.5);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 0.8rem;
  max-width: 580px;
}

.hero-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute; right: 6%; bottom: 8%; z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1.2rem 1.6rem;
  text-align: center;
  color: var(--white);
}
.hero-badge span { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.hero-badge p { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 0.3rem; }

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar { background: var(--black); padding: 1.5rem 5%; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.trust-item { padding: 0.5rem 2.5rem; text-align: center; }
.trust-item strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }
.trust-item span { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; display: block; }
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

/* ══════════════════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════════════════ */
.about { padding: 110px 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about-pillars { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--accent-dark); background: var(--accent-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 8px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--black); margin-bottom: 0.2rem; }
.pillar p { font-size: 0.85rem; color: var(--gray-text); }

.about-visual { position: relative; }
.about-img-wrap { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.about-img { width: 100%; height: 100%; object-fit: cover; }

.about-stat-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.about-stat-card strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 0.3rem; }
.about-stat-card p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   FÁBRICA
══════════════════════════════════════════════════════ */
.factory {
  position: relative;
  padding: 110px 0;
  /* Fondo oscuro de respaldo mientras carga la imagen */
  background: var(--dark);
  overflow: hidden;
}

.factory-bg {
  position: absolute; inset: 0;
  /* 🖼️ La imagen de fondo se define inline en el HTML */
  background-size: cover;
  background-position: center;
  background-color: #2a2a28;
  opacity: 0.3;
}

.factory-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,12,0.6) 0%, rgba(13,13,12,0.8) 100%);
}

.factory-content { position: relative; z-index: 2; }

.factory-header { text-align: center; margin-bottom: 4rem; }
.factory-header .body-text { margin: 1rem auto 0; max-width: 520px; }

.factory-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.factory-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}
.factory-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }

.fc-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 1.2rem; }
.fc-icon svg { width: 100%; height: 100%; }
.factory-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; line-height: 1.3; }
.factory-card p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   PRODUCTOS
══════════════════════════════════════════════════════ */
.products { padding: 110px 0; background: var(--off-white); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}

.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.05); }

.product-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(13,13,12,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span { font-size: 0.88rem; font-weight: 600; color: var(--white); letter-spacing: 0.05em; }

.product-info { padding: 1.4rem; }
.product-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.product-info p { font-size: 0.84rem; color: var(--gray-text); line-height: 1.6; }

.products-cta { text-align: center; margin-top: 3rem; }

/* ══════════════════════════════════════════════════════
   POR QUÉ ELEGIRNOS
══════════════════════════════════════════════════════ */
.why { padding: 110px 0; background: var(--white); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.why-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.why-card:hover { border-color: var(--accent); box-shadow: 0 8px 28px rgba(138,171,196,0.2); transform: translateY(-4px); }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); border-radius: var(--radius) var(--radius) 0 0; opacity: 0; transition: opacity var(--transition); }
.why-card:hover::before { opacity: 1; }

.why-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gray-light); line-height: 1; margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 0.6rem; line-height: 1.3; }
.why-card p { font-size: 0.86rem; color: var(--gray-text); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   MODELO B2B
══════════════════════════════════════════════════════ */
.b2b { padding: 110px 0; background: var(--gray-light); }

.b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.b2b-clients { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.b2b-client { display: flex; align-items: center; gap: 0.75rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 0.9rem 1rem; }
.b2b-client svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent-dark); }
.b2b-client span { font-size: 0.85rem; font-weight: 500; color: var(--black); }

.b2b-notice {
  margin-top: 2rem;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--black);
}
.b2b-notice strong { color: var(--warn-text); margin-right: 0.3rem; }

.b2b-visual { position: relative; }
.b2b-img-wrap { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.b2b-img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--accent-dark);
  /* 🖼️ Para añadir imagen de fondo al CTA, añade aquí: background-image: url('TU_IMAGEN_CTA_AQUI.jpg'); background-size: cover; background-blend-mode: multiply; */
  padding: 90px 5%;
  text-align: center;
}
.cta-content { max-width: 620px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 2.2rem; }

/* ══════════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════════ */
.contact { padding: 110px 0; background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }

.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.cd-item { display: flex; align-items: center; gap: 0.8rem; }
.cd-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent-dark); }
.cd-item span { font-size: 0.9rem; color: var(--gray-text); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-text); }

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.85rem 1.1rem;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(138,171,196,0.2); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

.form-note { font-size: 0.78rem; color: var(--gray-text); text-align: center; margin-top: 0.5rem; opacity: 0.7; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer { background: var(--black); padding: 70px 5% 0; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.9rem; }
.footer-logo span { color: var(--accent); }

.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-brand p strong { color: rgba(255,255,255,0.65); font-weight: 500; }
.footer-tagline { margin-top: 0.75rem !important; font-size: 0.75rem !important; letter-spacing: 0.05em; color: rgba(255,255,255,0.25) !important; }

.footer-col h4 { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.4rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li, .footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-cta { display: inline-block; margin-top: 1.5rem; font-size: 0.84rem; font-weight: 600; color: var(--accent); border: 1px solid rgba(138,171,196,0.35); padding: 0.5rem 1.1rem; border-radius: 4px; transition: var(--transition); }
.footer-cta:hover { background: rgba(138,171,196,0.12); color: var(--white); border-color: var(--accent); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.4rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-inner span { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .factory-cards { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .b2b-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stat-card { position: relative; bottom: auto; left: auto; margin-top: 1.5rem; max-width: 100%; }
  .hero-content { margin-left: 0; padding: 0 5%; }
  .hero-badge { display: none; }
  .trust-bar-inner { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 0 5%; }
  .trust-divider { display: none; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .factory-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .b2b-clients { grid-template-columns: 1fr; }
}

