/* ===========================
   ZAYWARE SOC — Landing Page
   Paleta: Azul oscuro + Rojo/Rosa
   =========================== */

:root {
  --bg-dark: #0a0e1a;
  --bg-dark2: #0d1424;
  --bg-light: #f5f7fc;
  --bg-white: #ffffff;
  --accent: #e8304a;
  --accent-light: #ff4d68;
  --accent-pink: #ff6b8a;
  --blue: #1a3a6b;
  --blue-mid: #1e4d8c;
  --blue-light: #2563eb;
  --text-primary: #0a0e1a;
  --text-secondary: #4a5568;
  --text-white: #ffffff;
  --text-white60: rgba(255,255,255,0.6);
  --text-white80: rgba(255,255,255,0.85);
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.08);
  --green: #10b981;
  --orange: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAV ===== */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-zay { color: #ffffff; }
.logo-ware { color: var(--accent); }
.logo-soc {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-left: 0.4rem;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

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

.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-nav:hover { background: var(--accent-light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(26,58,107,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(232,48,74,0.15) 0%, transparent 60%),
    var(--bg-dark);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,48,74,0.15);
  border: 1px solid rgba(232,48,74,0.3);
  color: var(--accent-pink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
}

.accent { color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-white80);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.btn-ghost:hover { color: #fff; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat { text-align: left; }
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-white60);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  display: block;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== SECTIONS ===== */
.section-light {
  padding: 6rem 0;
  background: var(--bg-light);
  color: var(--text-primary);
}

.section-dark {
  padding: 6rem 0;
  background: var(--bg-dark2);
}

.section-head { margin-bottom: 4rem; }
.section-head.center { text-align: center; }
.section-head.center h2 { max-width: 650px; margin: 0.75rem auto 0; }

.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.kicker-light {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 0.75rem;
  display: block;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

h2.white { color: #fff; }

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.section-sub.white-60 { color: var(--text-white60); }

.white { color: #fff; }
.white-80 { color: var(--text-white80); }

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.col-text h2 { margin: 0.75rem 0 1.25rem; }
.col-text p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.75; }

.check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-primary); }
.check-icon { color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ===== DARK CARD (hero visual) ===== */
.dark-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.dark-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.card-title-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
  font-family: monospace;
}

.alert-feed { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }

.alert-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.alert-critical { background: rgba(232,48,74,0.1); border: 1px solid rgba(232,48,74,0.25); }
.alert-high { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); }
.alert-resolved { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }
.alert-info { background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2); }

.alert-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.alert-badge.critical { background: var(--accent); color: #fff; }
.alert-badge.high { background: var(--orange); color: #fff; }
.alert-badge.resolved { background: var(--green); color: #fff; }
.alert-badge.info { background: var(--blue-light); color: #fff; }

.alert-text { flex: 1; color: rgba(255,255,255,0.85); }
.alert-time { color: rgba(255,255,255,0.35); font-size: 0.75rem; white-space: nowrap; }

.card-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}

.metric {
  flex: 1;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.metric:last-child { border-right: none; }
.metric-val { display: block; font-size: 1.25rem; font-weight: 800; color: #fff; }
.metric-lbl { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }
.accent-text { color: var(--accent-pink) !important; }
.green-text { color: var(--green) !important; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(232,48,74,0.4);
  transform: translateY(-3px);
}

.service-icon { font-size: 2rem; margin-bottom: 1rem; }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ===== FLOW STEPS ===== */
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
}

.flow-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.flow-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.flow-step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

.flow-arrow {
  font-size: 1.5rem;
  color: rgba(0,0,0,0.2);
  margin-top: 1.5rem;
  flex-shrink: 0;
}

/* ===== PLANS ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s;
}

.plan-card:hover { transform: translateY(-4px); }

.plan-card.featured {
  background: rgba(232,48,74,0.08);
  border-color: rgba(232,48,74,0.5);
  box-shadow: 0 0 40px rgba(232,48,74,0.15);
}

.plan-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.featured-badge { color: var(--accent-pink) !important; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-currency { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6); }
.price-num { font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1; }
.price-period { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.plan-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; line-height: 1.6; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.plan-features li { font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.plan-features li.feature-no { color: rgba(255,255,255,0.3); }

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

.btn-plan:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-plan.featured-btn {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.btn-plan.featured-btn:hover { background: var(--accent-light); }

/* ===== STACK ===== */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.stack-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stack-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.stack-logo { font-size: 2.5rem; margin-bottom: 0.75rem; }
.stack-name { font-size: 1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.25rem; }
.stack-role { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500; }

/* ===== CASE STUDY ===== */
.case-section { padding: 6rem 0; }

.case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.case-text h2 { margin: 0.75rem 0 1.25rem; }
.case-text p { color: var(--text-white80); margin-bottom: 1rem; line-height: 1.75; }

.case-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.case-num { display: block; font-size: 2rem; font-weight: 900; color: #fff; }
.case-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }

.incident-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.incident-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.incident-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}

.incident-status { font-size: 0.75rem; font-weight: 700; }
.incident-status.resolved { color: var(--green); }

.incident-title {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid var(--border);
}

.incident-timeline { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }

.tl-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.tl-time { color: rgba(255,255,255,0.35); font-family: monospace; min-width: 40px; }

.tl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.red-dot { background: var(--accent); }
.orange-dot { background: var(--orange); }
.blue-dot { background: var(--blue-light); }
.green-dot { background: var(--green); }

.tl-text { color: rgba(255,255,255,0.75); }

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-item {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.why-icon { font-size: 2rem; margin-bottom: 0.875rem; }

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.why-item p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ===== CTA SECTION ===== */
.section-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0d1424 0%, #1a0d1a 100%);
  border-top: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-text h2 { margin: 0.75rem 0 1.25rem; }
.cta-text p { color: var(--text-white80); line-height: 1.75; margin-bottom: 1rem; }

.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ===== FORM ===== */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field select option { background: #1a1a2e; color: #fff; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--accent-light); }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 200px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-legal {
  margin-left: auto;
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

/* ===== CASE STUDY ===== */
.case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.case-text h2 { margin: 0.75rem 0 1.25rem; }
.case-text p { color: var(--text-white80); margin-bottom: 1rem; line-height: 1.75; }

.case-metrics { display: flex; gap: 2rem; margin-top: 2rem; }
.case-num { display: block; font-size: 2rem; font-weight: 900; color: #fff; }
.case-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }

.incident-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.incident-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.incident-badge { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.5); font-family: monospace; }
.incident-status { font-size: 0.75rem; font-weight: 700; }
.incident-status.resolved { color: var(--green); }

.incident-title {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid var(--border);
}

.incident-timeline { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }

.tl-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8rem; }
.tl-time { color: rgba(255,255,255,0.35); font-family: monospace; min-width: 40px; }
.tl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tl-text { color: rgba(255,255,255,0.75); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(0,0,0,0.02); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.faq-item.open .faq-answer { display: block; }

.faq-table {
  margin-top: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.85rem;
}

.faq-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-table-row:last-child { border-bottom: none; }

.faq-table-row.header {
  background: var(--bg-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

/* ===== DOWNLOAD BANNER ===== */
.download-banner {
  background: linear-gradient(90deg, rgba(232,48,74,0.15) 0%, rgba(26,58,107,0.25) 100%);
  border-bottom: 1px solid rgba(232,48,74,0.25);
  padding: 0.875rem 0;
}

.download-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.download-banner-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
  min-width: 250px;
}

.download-icon { font-size: 1.25rem; flex-shrink: 0; }

.btn-download-banner {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-download-banner:hover { background: var(--accent-light); }

@media (max-width: 768px) {
  .download-banner-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn-download-banner { width: 100%; text-align: center; }
}

/* ===== NOC IMAGE SECTION ===== */
.noc-image-section {
  width: 100%;
  background: var(--bg-dark);
}

.noc-image-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.noc-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.6) saturate(1.1);
  display: block;
}

.noc-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10,14,26,0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem 3rem;
}

.noc-image-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.noc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--green); }
}

/* ===== SERVICE CHOICE ===== */
.service-choice-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.choice-card {
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.noc-card { border-top: 4px solid #2563eb; }
.soc-card { border-top: 4px solid var(--accent); }

.choice-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.noc-tag { background: rgba(37,99,235,0.1); color: var(--blue-light); }
.soc-tag { background: rgba(232,48,74,0.1); color: var(--accent); }

.choice-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.choice-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.choice-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.choice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.choice-list li {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.choice-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.choice-tech span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: var(--bg-light);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-choice {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.noc-btn {
  background: rgba(37,99,235,0.1);
  color: var(--blue-light);
  border: 1px solid rgba(37,99,235,0.3);
}

.noc-btn:hover { background: rgba(37,99,235,0.2); }

.soc-btn {
  background: rgba(232,48,74,0.1);
  color: var(--accent);
  border: 1px solid rgba(232,48,74,0.3);
}

.soc-btn:hover { background: rgba(232,48,74,0.2); }

.choice-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  padding-top: 10rem;
}

.divider-line {
  width: 1px;
  height: 80px;
  background: var(--border-light);
}

.divider-or {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-light);
  padding: 0.25rem 0.5rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
}

/* ===== COMBO BANNER ===== */
.combo-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1a1a3a 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.combo-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.combo-banner h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.combo-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.combo-left { flex: 1; min-width: 250px; }
.combo-right { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }

.combo-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.combo-features span {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}

/* ===== OPS PANELS ===== */
.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ops-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.ops-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.ops-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.noc-badge { background: rgba(37,99,235,0.25); color: #60a5fa; }
.soc-badge { background: rgba(232,48,74,0.25); color: var(--accent-pink); }

.ops-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.ops-feed { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }

.ops-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
}

.ops-ok { background: rgba(16,185,129,0.06); }
.ops-warn { background: rgba(245,158,11,0.08); }
.ops-critical { background: rgba(232,48,74,0.1); }
.ops-high { background: rgba(245,158,11,0.08); }
.ops-resolved { background: rgba(37,99,235,0.08); }

.ops-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ops-text { flex: 1; color: rgba(255,255,255,0.8); }
.ops-time { color: rgba(255,255,255,0.3); font-size: 0.72rem; white-space: nowrap; }

.ops-metric-row {
  display: flex;
  border-top: 1px solid var(--border);
}

.ops-metric {
  flex: 1;
  padding: 0.875rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.ops-metric:last-child { border-right: none; }
.ops-num { display: block; font-size: 1.1rem; font-weight: 800; color: #fff; }
.ops-lbl { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 0.15rem; }

/* ===== PLAN TYPES ===== */
.plan-type {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.noc-type { background: rgba(37,99,235,0.15); color: #60a5fa; }
.soc-type { background: rgba(232,48,74,0.15); color: var(--accent-pink); }
.combo-type { background: rgba(255,255,255,0.15); color: #fff; }
.ent-type { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.featured-ribbon {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.875rem;
  border-radius: 0 0 8px 8px;
}

.plans-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2rem;
}

/* Planes sobre fondo oscuro — textos claros */
.section-dark .section-sub { color: rgba(255,255,255,0.55); }
.section-dark h2:not(.white) { color: #fff; }

/* ===== STACK SPLIT ===== */
.stack-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stack-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stack-col-header {
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--border);
}

.noc-col-header { border-left: 3px solid var(--blue-light); }
.soc-col-header { border-left: 3px solid var(--accent); }

.stack-items-col { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

.stack-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stack-icon { font-size: 1.75rem; flex-shrink: 0; }
.stack-name { font-size: 0.95rem; font-weight: 700; color: #fff; }
.stack-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-divider {
    flex-direction: row;
    padding: 0;
    padding: 1rem 0;
  }

  .divider-line {
    width: 80px;
    height: 1px;
  }

  .ops-grid {
    grid-template-columns: 1fr;
  }

  .stack-split {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .btn-nav { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .logo { font-size: 1.1rem; }

  /* Hero */
  .hero { padding: 6rem 0 4rem; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .btn-primary, .btn-ghost { font-size: 0.9rem; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .stat-div { display: none; }
  .stat-num { font-size: 1.2rem; }

  /* Image */
  .noc-image-wrapper { height: 260px; }
  .noc-image-overlay { padding: 1.25rem; }

  /* Sections */
  .section-light, .section-dark, .section-cta, .case-section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  h2 { font-size: 1.6rem; }

  /* Two col */
  .two-col, .case-inner, .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Services */
  .service-choice-grid { grid-template-columns: 1fr; }
  .choice-divider {
    flex-direction: row;
    padding: 1rem 0;
    justify-content: center;
  }
  .divider-line { width: 60px; height: 1px; }
  .choice-card { padding: 1.75rem; }
  .choice-tech { gap: 0.4rem; }

  /* Combo banner */
  .combo-banner { flex-direction: column; gap: 1.5rem; padding: 1.75rem; }
  .combo-right { width: 100%; }

  /* Ops panels */
  .ops-grid { grid-template-columns: 1fr; }
  .ops-text { font-size: 0.72rem; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 1.75rem; }

  /* Stack */
  .stack-split { grid-template-columns: 1fr; }

  /* Flow */
  .flow-steps { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .flow-step { max-width: 100%; text-align: left; min-width: unset; }
  .flow-arrow { display: none; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-legal { margin-left: 0; text-align: left; }

  /* Form */
  .contact-form { padding: 1.5rem; }
  .cta-inner { gap: 2.5rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 1.75rem; }
  .plan-price .price-num { font-size: 1.75rem; }
  .hero-badge { font-size: 0.7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
}
