/* ============================================================
   SOLUCIONES 3S — Global Stylesheet
   Palette: #0080FF base
   ============================================================ */

:root {
  --blue-primary:  #0080FF;
  --blue-dark:     #0055CC;
  --blue-deeper:   #003A99;
  --blue-light:    #3399FF;
  --blue-xlight:   #E6F2FF;
  --blue-mid:      #CCE5FF;
  --accent:        #00C6FF;
  --dark:          #0A1628;
  --dark-2:        #12243D;
  --gray:          #6B7A99;
  --gray-light:    #F0F5FF;
  --white:         #FFFFFF;
  --text:          #1A2B45;
  --text-soft:     #4A5A78;

  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(0,128,255,0.12);
  --shadow-lg:     0 8px 48px rgba(0,128,255,0.18);
  --transition:    0.25s ease;
  --font:          'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-soft); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-xlight);
  border-radius: 20px;
  padding: .3rem .9rem;
  margin-bottom: 1rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,128,255,.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,128,255,.45); }

.btn-outline {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn-outline:hover { background: var(--blue-xlight); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* ── NAV ──────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,128,255,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--blue-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900; color: #fff;
}
.nav-logo span.accent { color: var(--blue-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-actions { display: flex; gap: .75rem; align-items: center; }
.nav-actions .btn { padding: .55rem 1.2rem; font-size: .85rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; font-size: 1.4rem; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #0a2050 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(0,128,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,198,255,.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,128,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,128,255,.18);
  border: 1px solid rgba(0,128,255,.35);
  border-radius: 20px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--blue-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.25rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stats .stat { color: var(--white); }
.hero-stats .stat-num { font-size: 1.9rem; font-weight: 800; color: var(--blue-light); }
.hero-stats .stat-label { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ── PRODUCTS OVERVIEW (Home) ─────────────────────────────── */
.products-overview { background: var(--gray-light); }
.products-overview .section-header { text-align: center; margin-bottom: 3.5rem; }
.products-overview .section-header p { max-width: 560px; margin: .75rem auto 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--blue-mid);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-primary), var(--accent));
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-primary);
}
.product-icon {
  width: 56px; height: 56px;
  background: var(--blue-xlight);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.product-card h3 { margin-bottom: .5rem; color: var(--dark); }
.product-card p { font-size: .92rem; margin-bottom: 1.5rem; }
.product-card .tag {
  display: inline-block;
  background: var(--blue-xlight);
  color: var(--blue-dark);
  border-radius: 20px;
  padding: .2rem .7rem;
  font-size: .75rem;
  font-weight: 600;
  margin: .2rem .15rem 0 0;
}

/* ── FEATURES SECTION ─────────────────────────────────────── */
.features-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-item:hover { background: var(--gray-light); }
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 16px rgba(0,128,255,.3);
}
.feature-item h4 { margin-bottom: .5rem; color: var(--dark); }
.feature-item p { font-size: .88rem; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-us {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,128,255,.15) 0%, transparent 70%);
}
.why-us .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text h2 { color: #fff; margin-bottom: 1.25rem; }
.why-text p { color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-check {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(0,128,255,.25);
  border: 1px solid rgba(0,128,255,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  font-size: .8rem;
  margin-top: .1rem;
}
.why-item p { color: rgba(255,255,255,.7); font-size: .92rem; }
.why-item strong { color: #fff; }

.metrics-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,128,255,.2);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  backdrop-filter: blur(8px);
}
.metric-box {
  background: rgba(0,128,255,.12);
  border: 1px solid rgba(0,128,255,.2);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
}
.metric-box .num { font-size: 2rem; font-weight: 800; color: var(--blue-light); }
.metric-box .label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(90deg, var(--blue-deeper), var(--blue-primary), var(--accent));
  padding: 4rem 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: .75rem; }
.cta-strip p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-strip .btn-ghost { font-size: 1rem; padding: .85rem 2rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; max-width: 280px; }
.footer-col h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--blue-light); }

/* ── PRODUCT PAGE HERO ────────────────────────────────────── */
.product-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #051840 100%);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,128,255,.2) 0%, transparent 65%);
}
.product-hero .container { position: relative; z-index: 1; }
.product-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.product-hero-text h1 { color: var(--white); margin-bottom: 1rem; }
.product-hero-text .lead { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 2rem; }
.product-hero-visual {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,128,255,.25);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.mockup-bar {
  display: flex; gap: .4rem; margin-bottom: 1.2rem;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #FF5F57; }
.mockup-dot.y { background: #FFBD2E; }
.mockup-dot.g { background: #28C840; }
.mockup-screen { display: flex; flex-direction: column; gap: .75rem; }
.mockup-row {
  height: 10px;
  border-radius: 4px;
  background: rgba(0,128,255,.2);
}
.mockup-row.wide { width: 80%; }
.mockup-row.mid  { width: 55%; }
.mockup-row.short { width: 35%; }
.mockup-row.accent { background: rgba(0,198,255,.3); width: 65%; }
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: .5rem; }
.mockup-card {
  background: rgba(0,128,255,.15);
  border: 1px solid rgba(0,128,255,.2);
  border-radius: 6px;
  padding: .75rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.mockup-card .mc-label { font-size: .65rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }
.mockup-card .mc-val { font-size: 1.1rem; font-weight: 700; color: var(--blue-light); }

/* ── MODULES GRID ─────────────────────────────────────────── */
.modules-section { background: var(--gray-light); }
.modules-header { text-align: center; margin-bottom: 3.5rem; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.module-card:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.module-card .mod-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.module-card h4 { color: var(--dark); font-size: .95rem; margin-bottom: .4rem; }
.module-card p { font-size: .8rem; color: var(--gray); }

/* ── DETAIL SECTION ───────────────────────────────────────── */
.detail-section { background: var(--white); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
.detail-content h2 { margin-bottom: 1.25rem; color: var(--dark); }
.detail-content p { margin-bottom: 1.5rem; }
.detail-list { display: flex; flex-direction: column; gap: .8rem; }
.detail-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .93rem; color: var(--text-soft);
}
.detail-list li::before {
  content: '✓';
  color: var(--blue-primary);
  font-weight: 700;
  margin-top: .05rem;
  flex-shrink: 0;
}
.detail-visual {
  background: linear-gradient(135deg, var(--blue-xlight), var(--blue-mid));
  border-radius: var(--radius);
  padding: 2.5rem;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.dv-stat {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.dv-stat .icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue-xlight);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.dv-stat .info .val { font-size: 1.4rem; font-weight: 800; color: var(--blue-primary); }
.dv-stat .info .lbl { font-size: .78rem; color: var(--gray); }

/* ── PRICING / PLANS ──────────────────────────────────────── */
.plans-section { background: var(--gray-light); }
.plans-header { text-align: center; margin-bottom: 3.5rem; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  border: 2px solid var(--blue-primary);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue-primary); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  padding: .25rem .8rem; border-radius: 20px;
  text-transform: uppercase;
}
.plan-card h3 { color: var(--dark); margin-bottom: .5rem; }
.plan-card .plan-desc { font-size: .88rem; margin-bottom: 1.5rem; }
.plan-price { font-size: 2.4rem; font-weight: 800; color: var(--blue-primary); margin-bottom: 1.5rem; }
.plan-price span { font-size: .95rem; font-weight: 500; color: var(--gray); }
.plan-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.plan-features li {
  display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text-soft);
}
.plan-features li::before { content: '✓'; color: var(--blue-primary); font-weight: 700; }

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue-xlight);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.ci-info .ci-label { font-size: .75rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.ci-info .ci-val { font-size: .93rem; color: var(--text); font-weight: 500; }

.contact-form {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-primary); box-shadow: 0 0 0 3px rgba(0,128,255,.12); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── PAGE HEADER (inner pages) ────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0,128,255,.18) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: .75rem; }
.page-header p { color: rgba(255,255,255,.65); font-size: 1.05rem; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--blue-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── Logo images ──────────────────────────────────────────── */
.nav-logo .logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);   /* blanco sobre fondo oscuro */
  flex-shrink: 0;
}
.erp-hero-logo {
  max-width: 210px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);   /* blanco sobre hero oscuro */
  display: block;
}
.product-icon.has-logo {
  background: transparent;
  box-shadow: none;
  width: auto;
  height: auto;
  min-width: unset;
  padding: 0;
  border-radius: 0;
}
.product-icon.has-logo img {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}
.product-icon.has-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* logo oscuro sobre fondo azul claro */
  filter: invert(20%) sepia(80%) saturate(800%) hue-rotate(200deg) brightness(95%);
}
.entrada-banner {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
}
.entrada-strip {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ── Lucide icon sizing ───────────────────────────────────── */
.product-icon svg { width: 28px; height: 28px; color: var(--blue-primary); stroke-width: 1.75; }
.feature-icon svg { width: 28px; height: 28px; color: var(--white); stroke-width: 1.75; }
.mod-icon svg     { width: 30px; height: 30px; color: var(--blue-primary); stroke-width: 1.75; }
.ci-icon svg      { width: 20px; height: 20px; color: var(--blue-primary); stroke-width: 1.75; }
.cap-icon svg     { width: 30px; height: 30px; color: var(--blue-primary); stroke-width: 1.75; }
.ct-icon svg      { width: 22px; height: 22px; color: var(--blue-primary); stroke-width: 1.75; }
.dv-stat .icon svg { width: 22px; height: 22px; color: var(--blue-primary); stroke-width: 1.75; }
.hero-badge svg   { width: 13px; height: 13px; color: var(--accent); stroke-width: 2.25; flex-shrink: 0; }
.nav-toggle svg   { width: 22px; height: 22px; stroke-width: 2; }
.why-check svg    { width: 13px; height: 13px; color: var(--blue-light); stroke-width: 2.5; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .why-grid,
  .product-hero-inner,
  .detail-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .detail-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metrics-panel { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 64px 0 0 0;
    background: var(--dark);
    padding: 2rem 1.5rem;
    gap: 1.5rem; z-index: 99;
  }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { gap: 3rem; }
  .metrics-panel { grid-template-columns: 1fr 1fr; }
}
