/* =============================================
   FIBOC UY — LANDING PAGE CSS
   Dark Mode · Glassmorphism · Premium B2B
   ============================================= */

/* --- TOKENS --- */
:root {
  --bg-deep:    #021a2e;
  --bg-mid:     #083863;
  --bg-card:    #0d2a45;
  --turquoise:  #00eed0;
  --turquoise-dim: rgba(0,238,208,0.15);
  --turquoise-glow: 0 0 20px rgba(0,238,208,0.35);
  --white:      #ffffff;
  --text:       #c8d8e8;
  --glass-bg:   rgba(255,255,255,0.05);
  --glass-border: 1px solid rgba(0,238,208,0.18);
  --glass-blur: blur(24px) saturate(180%);
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font-head:  'Manrope', sans-serif;
  --font-body:  'Inter', sans-serif;
  --container:  1240px;
  --gold:       #f5c842;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- LAYOUT --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 700; }
p  { line-height: 1.7; }

.highlight {
  color: var(--turquoise);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: var(--turquoise);
  border-radius: 2px;
  opacity: 0.5;
}

/* --- BADGES --- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--turquoise-dim);
  border: 1px solid rgba(0,238,208,0.3);
  color: var(--turquoise);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge--gold {
  background: rgba(245,200,66,0.12);
  border-color: rgba(245,200,66,0.35);
  color: var(--gold);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary {
  background: var(--turquoise);
  color: var(--bg-deep);
  box-shadow: 0 0 0 0 rgba(0,238,208,0.4);
}
.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--turquoise-glow), 0 4px 20px rgba(0,238,208,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--turquoise);
  border: 1.5px solid rgba(0,238,208,0.4);
}
.btn-ghost:hover {
  background: var(--turquoise-dim);
  border-color: var(--turquoise);
}
.btn-whatsapp { font-size: 16px; padding: 16px 36px; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,238,208,0.45); }
  50%      { box-shadow: 0 0 0 12px rgba(0,238,208,0); }
}
.btn-pulse { animation: pulse 2.2s infinite; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { color: var(--text); max-width: 560px; margin: 0 auto; font-size: 17px; }
.section-line {
  width: 56px; height: 3px;
  background: var(--turquoise);
  border-radius: 2px;
  margin: 16px auto 20px;
}

/* --- GLASS CARD mixin (utility) --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(2,26,46,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,238,208,0.1);
  transition: background var(--transition);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity var(--transition);
}
.logo-img:hover { opacity: 0.85; }
.nav-links {
  display: flex; gap: 32px; margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 600;
  color: var(--text);
  font-family: var(--font-head);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--turquoise); }
.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 14px; }
.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
  margin-left: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(ellipse at 60% 0%, #083863 0%, #021a2e 70%);
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; border-radius: 50%;
  opacity: 0.07; pointer-events: none;
  background: var(--turquoise);
  filter: blur(80px);
}
.hero-bg-shape { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-bg-shape--2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }

/* Hero — layout dividido 50/50 */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 60vh;
}
.hero-content { }
.hero-content h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 18px; color: var(--text);
  max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800;
  color: var(--turquoise);
}
.stat-label { font-size: 11px; color: var(--text); opacity: 0.8; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(0,238,208,0.2); }

/* Hero — columna visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-product-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 0 60px rgba(0,238,208,0.12), 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(0,238,208,0.15);
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover .hero-product-img { transform: scale(1.02); }

/* Card flotante sobre imagen (inferior izquierda) */
.hero-img-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(2, 26, 46, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,238,208,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
.hero-img-card-icon {
  font-size: 24px;
  width: 44px; height: 44px;
  background: var(--turquoise-dim);
  border-radius: 50%;
  display: grid; place-items: center;
}
.hero-img-card-text { display: flex; flex-direction: column; gap: 2px; }
.hero-img-card-text strong { color: var(--white); font-family: var(--font-head); font-size: 13px; font-weight: 700; }
.hero-img-card-text span { color: var(--turquoise); font-size: 12px; }

/* Badge superior sobre imagen */
.hero-img-badge-top {
  position: absolute;
  top: 16px; right: -12px;
  background: var(--turquoise);
  color: var(--bg-deep);
  font-size: 11px; font-weight: 800;
  font-family: var(--font-head);
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(0,238,208,0.4);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */
.brands-strip {
  background: rgba(8, 56, 99, 0.45);
  border-top: 1px solid rgba(0,238,208,0.08);
  border-bottom: 1px solid rgba(0,238,208,0.08);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.brands-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0.45;
  margin-bottom: 14px;
}
.brands-track {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-slides {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.brands-slides:hover { animation-play-state: paused; }
.brand-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--transition), filter var(--transition);
  flex-shrink: 0;
}
.brand-logo:hover {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(78%) sepia(100%) saturate(400%) hue-rotate(128deg);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), padding var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-float-label {
  max-width: 140px;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 16px; }
}

/* ============================================
   PRODUCTS SPOTLIGHT CAROUSEL
   ============================================ */
.products-spotlight { background: var(--bg-mid); padding: 80px 0 56px; }
.spotlight-slide { display: none; }
.spotlight-slide.active {
  display: block;
  animation: spotlightFade 0.55s ease forwards;
}
@keyframes spotlightFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.spotlight-controls {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  margin-top: 44px;
}
.spotlight-progress {
  width: 220px; height: 3px;
  background: rgba(0,238,208,0.12);
  border-radius: 2px; overflow: hidden;
}
.spotlight-progress-bar {
  height: 100%; width: 0%;
  background: var(--turquoise);
  border-radius: 2px;
}
.spotlight-dots { display: flex; gap: 10px; align-items: center; }
.spotlight-dot {
  width: 10px; height: 10px; padding: 0;
  border-radius: 50%; border: none;
  background: rgba(0,238,208,0.22);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.spotlight-dot.active {
  background: var(--turquoise);
  transform: scale(1.35);
}

/* ============================================
   FEATURED SECTION (reusado dentro del carrusel)
   ============================================ */
.featured { background: var(--bg-mid); }
.featured-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.featured-img {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
}
.featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-img:hover img { transform: scale(1.04); }
.featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,26,46,0.2), rgba(0,238,208,0.05));
  z-index: 1;
}
.featured-img-badge {
  position: absolute; bottom: 16px; left: 16px;
  z-index: 2;
  background: rgba(2,26,46,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,238,208,0.3);
  color: var(--turquoise);
  padding: 6px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 700;
  font-family: var(--font-head); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-content h2 { margin-bottom: 8px; }
.featured-sub {
  font-size: 20px; color: var(--turquoise);
  margin-bottom: 28px;
}
.feature-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text);
}
.check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--turquoise-dim);
  border: 1px solid rgba(0,238,208,0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--turquoise); font-size: 11px; font-weight: 800;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products { background: var(--bg-deep); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,238,208,0.1), 0 4px 20px rgba(0,0,0,0.4);
  border-color: rgba(0,238,208,0.5);
}
.card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--turquoise);
  color: var(--bg-deep);
  font-size: 11px; font-weight: 700;
  font-family: var(--font-head);
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-body h3 { font-size: 18px; color: var(--white); }
.card-body p { font-size: 14px; color: var(--text); flex: 1; line-height: 1.6; }
.card-cta {
  display: inline-block;
  color: var(--turquoise);
  font-size: 14px; font-weight: 700;
  font-family: var(--font-head);
  margin-top: 8px;
  transition: gap var(--transition), color var(--transition);
}
.card-cta:hover { color: var(--white); }

/* ============================================
   WHY FIBOC
   ============================================ */
.why { background: var(--bg-mid); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,238,208,0.4);
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: 15px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { background: var(--bg-deep); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 28px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--turquoise) 0, var(--turquoise) 8px, transparent 8px, transparent 18px);
  opacity: 0.35;
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
  position: relative; z-index: 1;
}
.step-circle {
  width: 60px; height: 60px;
  background: var(--bg-card);
  border: 2px solid var(--turquoise);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: var(--turquoise-glow);
  position: relative;
}
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--turquoise);
  color: var(--bg-deep);
  border-radius: 50%;
  font-size: 10px; font-weight: 800;
  font-family: var(--font-head);
  display: grid; place-items: center;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg-mid); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,238,208,0.35);
}
.testi-quote {
  font-size: 40px; color: var(--turquoise);
  line-height: 1; margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testi-card p { font-style: italic; font-size: 15px; color: var(--text); margin-bottom: 20px; }
.testi-author { display: flex; flex-direction: column; gap: 2px; }
.testi-author strong { color: var(--white); font-family: var(--font-head); font-size: 14px; }
.testi-author span { color: var(--turquoise); font-size: 12px; }

/* ============================================
   CONTACT / WHATSAPP FORM
   ============================================ */
.contact { background: var(--bg-deep); }
.contact-wrap {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px; margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
label {
  font-size: 13px; font-weight: 600;
  font-family: var(--font-head);
  color: var(--text); letter-spacing: 0.03em;
  text-transform: uppercase;
}
input, select, textarea {
  background: rgba(8,56,99,0.5);
  border: 1px solid rgba(0,238,208,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(200,216,232,0.4); }
input:focus, select:focus, textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0,238,208,0.12);
}
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300eed0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
select option { background: var(--bg-mid); color: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-top: 8px;
}
.form-note { font-size: 13px; color: var(--text); opacity: 0.75; flex: 1; min-width: 200px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-mid); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,238,208,0.1);
}
.footer-brand p { font-size: 14px; color: var(--text); margin-top: 16px; line-height: 1.7; }
.footer-links h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--text);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--turquoise); }
.footer-bottom {
  text-align: center; padding: 20px;
  font-size: 13px; color: rgba(200,216,232,0.5);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero { padding: 120px 0 72px; }

  .featured-inner { grid-template-columns: 1fr; gap: 36px; }
  .featured-img { aspect-ratio: 16/9; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; }
}
