/* ════════════════════════════════════════════════════
   FábricadeBolsas.cl — Hoja de estilos principal
   ════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --verde:        #4a7c59;
  --verde-hover:  #3d6849;
  --verde-oscuro: #1e3a28;
  --verde-suave:  #eef4f0;
  --verde-medio:  #d0e5d8;
  --acento:       #c4701a;
  --acento-claro: #fdf0e4;
  --blanco:       #ffffff;
  --fondo:        #f9f8f6;
  --arena:        #f2ede6;
  --gris-linea:   #e8e3dc;
  --texto:        #1c1c1a;
  --texto-suave:  #6b6560;
  --radio:        8px;
  --sombra:       0 2px 16px rgba(74,124,89,0.10);
  --sombra-lg:    0 8px 40px rgba(74,124,89,0.15);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--texto-suave); line-height: 1.7; }

.container { width: 90%; max-width: 1140px; margin: 0 auto; }
.section   { padding: 96px 0; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acento);
  margin-bottom: 14px;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--verde-oscuro);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.22); }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo-img { height: 42px; width: auto; display: block; }

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: white; }

.nav-cta {
  background: var(--verde) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: var(--radio);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--verde-hover) !important; }

/* Hamburguesa móvil */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  padding-top: 72px;
  background: var(--arena);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a7c59' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gris-linea);
  color: var(--texto-suave);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.hero-eyebrow span {
  width: 6px; height: 6px;
  background: var(--verde);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 { color: var(--texto); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--verde); }
.hero-desc { font-size: 1.08rem; color: var(--texto-suave); margin-bottom: 36px; max-width: 430px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 52px; }

.btn-primary {
  background: var(--verde);
  color: white;
  padding: 14px 30px;
  border-radius: var(--radio);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(74,124,89,0.30);
}
.btn-primary:hover { background: var(--verde-hover); transform: translateY(-1px); }

.btn-ghost {
  color: var(--texto);
  padding: 14px 26px;
  border-radius: var(--radio);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--gris-linea);
  transition: border-color 0.2s, color 0.2s;
  background: white;
}
.btn-ghost:hover { border-color: var(--verde); color: var(--verde); }

.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--gris-linea); }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--texto); line-height: 1; display: block; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: var(--texto-suave); margin-top: 4px; display: block; }

.hero-visual { display: flex; justify-content: flex-end; align-items: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 500px; background: #f0ebe3; border-radius: 16px; }
.hero-img-wrap img {
  width: 100%; height: 540px;
  object-fit: cover; object-position: center top;
  border-radius: 16px; display: block;
  box-shadow: var(--sombra-lg);
  mix-blend-mode: multiply;
}
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: white; border: 1px solid var(--gris-linea);
  padding: 14px 18px; border-radius: 10px; box-shadow: var(--sombra);
  display: flex; align-items: center; gap: 10px;
}
.badge-dot { width: 10px; height: 10px; background: var(--verde); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(74,124,89,0.2); }
.badge-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--texto); line-height: 1.2; }
.badge-text span { font-size: 0.75rem; color: var(--texto-suave); }

/* ── PROOF BAND — fondo oscuro atractivo ── */
.proof-band {
  background: var(--verde-oscuro);
  padding: 0;
}
.proof-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
  flex: 1;
  justify-content: center;
  min-width: 160px;
}
.proof-item:last-child { border-right: none; }
.proof-check {
  width: 20px; height: 20px;
  background: rgba(74,124,89,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proof-check svg { width: 10px; height: 10px; }

/* ── PRODUCTOS ── */
.productos-bg { background: var(--fondo); }
.section-header { margin-bottom: 52px; }
.section-header p { max-width: 500px; margin-top: 12px; }

.productos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-card {
  background: white; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gris-linea);
  transition: box-shadow 0.25s, transform 0.25s;
}
.prod-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-3px); }
.prod-img { width: 100%; height: 230px; object-fit: cover; display: block; }
.prod-body { padding: 22px 24px 26px; }
.prod-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--verde); background: var(--verde-suave);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.prod-card h3 { margin-bottom: 7px; color: var(--texto); }
.prod-card p  { font-size: 0.9rem; }

/* ── PROCESO ── */
.proceso-bg { background: #faf8f5; }
.proceso-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.proceso-grid::after {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: linear-gradient(90deg, var(--verde-medio), var(--gris-linea));
}
.paso { text-align: center; position: relative; z-index: 1; }
.paso-num {
  width: 56px; height: 56px;
  background: var(--verde-suave); border: 2px solid var(--verde-medio);
  color: var(--verde-oscuro); font-family: 'DM Serif Display', serif; font-size: 1.3rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.paso h3 { margin-bottom: 8px; font-size: 0.95rem; }
.paso p  { font-size: 0.85rem; }

/* ── POR QUÉ ── */
.porque-bg { background: var(--verde); }
.porque-header h2 { color: white; margin-bottom: 12px; }
.porque-header p  { color: rgba(255,255,255,0.70); max-width: 500px; margin-bottom: 52px; }
.porque-header .label { color: rgba(255,255,255,0.55); }
.porque-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.porque-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 26px 28px; transition: background 0.2s;
}
.porque-card:hover { background: rgba(255,255,255,0.13); }
.porque-icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }
.porque-card h3 { color: white; margin-bottom: 8px; font-size: 1rem; }
.porque-card p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ── INSTAGRAM ── */
.instagram-bg { background: var(--fondo); }
.instagram-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}
.instagram-top h2 { margin-bottom: 6px; }
.instagram-top p { margin: 0; }
.ig-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white; padding: 10px 20px; border-radius: var(--radio);
  text-decoration: none; font-weight: 600; font-size: 0.88rem;
  white-space: nowrap; transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(131,58,180,0.35);
}
.ig-link:hover { opacity: 0.9; transform: translateY(-1px); }
.ig-preview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.ig-item {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  background: var(--verde-suave);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ig-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--verde-suave), var(--verde-medio));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.ig-placeholder:hover { background: linear-gradient(135deg, var(--verde-medio), #b0d4be); }
.ig-placeholder svg { width: 32px; height: 32px; opacity: 0.5; }
.ig-placeholder span { font-size: 0.78rem; font-weight: 600; color: var(--verde); opacity: 0.8; }
.ig-cta-card {
  aspect-ratio: 1; border-radius: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-decoration: none; transition: opacity 0.2s;
}
.ig-cta-card:hover { opacity: 0.92; }
.ig-cta-card strong { color: white; font-size: 0.95rem; font-weight: 700; text-align: center; line-height: 1.3; }
.ig-cta-card span { color: rgba(255,255,255,0.8); font-size: 0.78rem; }

/* ── CTA BAND — color ámbar/tierra diferenciado ── */
.cta-band {
  background: #0d2b2b;
  background: linear-gradient(135deg, #0d2b2b 0%, #1a4040 50%, #0f3333 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner-wrap { position: relative; z-index: 1; }
.cta-top { text-align: center; margin-bottom: 60px; }
.cta-top .label { color: rgba(160,210,190,0.85); }
.cta-top h2 { color: white; margin-bottom: 14px; }
.cta-top > p { color: rgba(255,255,255,0.70); font-size: 1.08rem; max-width: 520px; margin: 0 auto 36px; }

.btn-blanco {
  background: white; color: var(--verde-oscuro);
  padding: 15px 38px; border-radius: var(--radio);
  text-decoration: none; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-blanco:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

.btn-wsp-blanco {
  background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.30);
  color: white; padding: 15px 28px; border-radius: var(--radio);
  text-decoration: none; font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s;
}
.btn-wsp-blanco:hover { background: rgba(255,255,255,0.18); }

.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cta-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 28px 26px;
}
.cta-card-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.cta-card h4 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.cta-card p  { color: rgba(255,255,255,0.60); font-size: 0.88rem; line-height: 1.6; }

.cta-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 52px 0; }
.cta-bottom { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-bottom-text h3 { color: white; font-size: 1.5rem; font-family: 'DM Serif Display', serif; margin-bottom: 8px; }
.cta-bottom-text p  { color: rgba(255,255,255,0.60); font-size: 0.95rem; }
.cta-bottom-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── COTIZACIÓN ── */
.cotizar-bg { background: var(--fondo); }
.cotizar-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.cotizar-info { padding-top: 8px; }
.cotizar-info h2 { margin-bottom: 14px; }
.cotizar-info > p { margin-bottom: 32px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: white; border: 1px solid var(--gris-linea);
  border-radius: 10px; text-decoration: none; color: var(--texto);
  margin-bottom: 12px; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover { border-color: var(--verde); box-shadow: var(--sombra); }
.contact-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-meta { display: flex; flex-direction: column; }
.contact-lbl  { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--texto-suave); }
.contact-val  { font-size: 0.95rem; font-weight: 600; color: var(--texto); }

.form-wrap {
  background: white; border: 1px solid var(--gris-linea);
  border-radius: 14px; padding: 38px 36px; box-shadow: var(--sombra);
}
.form-wrap h3 { margin-bottom: 4px; }
.form-wrap > p { font-size: 0.88rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group  { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.f-group label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--texto); }
.f-group input,
.f-group select,
.f-group textarea {
  padding: 11px 13px; border: 1.5px solid var(--gris-linea);
  border-radius: var(--radio); font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
  color: var(--texto); background: var(--fondo); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--verde); box-shadow: 0 0 0 3px rgba(74,124,89,0.12); background: white;
}
.f-group textarea { height: 100px; resize: vertical; }

.btn-enviar {
  width: 100%; background: var(--verde); color: white; border: none;
  padding: 14px; border-radius: var(--radio); font-size: 1rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s; margin-top: 4px;
}
.btn-enviar:hover { background: var(--verde-hover); transform: translateY(-1px); }

.success-msg {
  display: none; background: #eef7f1; border: 1px solid #b8dfc4;
  color: #2d6a4f; padding: 14px 16px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500; margin-bottom: 16px;
}

/* ── FOOTER ── */
footer { background: var(--texto); color: rgba(255,255,255,0.55); padding: 52px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.87rem; line-height: 1.65; color: rgba(255,255,255,0.45); }
.footer-col h4 { color: white; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-ig { display: inline-flex; align-items: center; gap: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }

/* ── WHATSAPP ── */
.wsp-btn {
  position: fixed; bottom: 26px; right: 26px;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; padding: 11px 18px 11px 12px;
  border-radius: 50px; color: white; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s; font-family: 'DM Sans', sans-serif;
}
.wsp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wsp-btn img { width: 26px; height: 26px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner          { grid-template-columns: 1fr; padding: 56px 0 48px; }
  .hero-visual         { justify-content: center; margin-top: 8px; }
  .hero-img-wrap       { max-width: 420px; }
  .hero-img-wrap img   { height: 400px; }
  .productos-grid      { grid-template-columns: 1fr 1fr; }
  .porque-grid         { grid-template-columns: 1fr 1fr; }
  .proceso-grid        { grid-template-columns: 1fr 1fr; gap: 24px; }
  .proceso-grid::after { display: none; }
  .cotizar-inner       { grid-template-columns: 1fr; gap: 36px; }
  .footer-top          { grid-template-columns: 1fr; gap: 28px; }
  .ig-preview          { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section       { padding: 64px 0; }
  .nav-toggle    { display: flex; }
  nav ul {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--verde-oscuro);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
  }
  nav ul.open    { display: flex; }
  nav ul li      { width: 100%; }
  nav ul li a    { display: block; padding: 13px 24px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  nav ul li:last-child a { margin: 10px 16px; padding: 12px; border-radius: var(--radio); text-align: center; border-bottom: none; }
  .hero-img-wrap       { max-width: 100%; }
  .hero-img-wrap img   { height: 300px; }
  .productos-grid      { grid-template-columns: 1fr; }
  .porque-grid         { grid-template-columns: 1fr; }
  .proceso-grid        { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .form-wrap           { padding: 24px 18px; }
  .hero-stats          { gap: 20px; flex-wrap: wrap; }
  .proof-inner         { flex-wrap: wrap; }
  .proof-item          { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: flex-start; padding: 14px 18px; }
  .footer-bottom       { flex-direction: column; gap: 8px; text-align: center; }
  .wsp-btn .wsp-label  { display: none; }
  .cta-grid            { grid-template-columns: 1fr; }
  .ig-preview          { grid-template-columns: repeat(2, 1fr); }
  .instagram-top       { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
