/* ============================================================
   SEGURIDAD — PAGE-SPECIFIC STYLES
   seguridad.css — loaded after style.css
   ============================================================ */

/* ── PAGE HERO ── */
/*.page-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}

.ph-glow {
  position: absolute;
  top: -20%; right: -5%;
  width: 75vw; height: 130%;
  background: radial-gradient(ellipse at 75% 35%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ph-beam {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 195deg at 94% 2%, rgba(201,168,76,0.1) 0deg, transparent 15deg),
    conic-gradient(from 200deg at 94% 2%, rgba(201,168,76,0.04) 0deg, transparent 25deg);
  pointer-events: none;
  animation: beam 14s ease-in-out infinite alternate;
}

.ph-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, var(--divider) 1px, transparent 1px),
    linear-gradient(0deg, var(--divider) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 20% 75%, black 5%, transparent 65%);
  opacity: 0.28;
}

.ph-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
} */

/* Breadcrumb */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.breadcrumb-nav a {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover { color: var(--gold); }
.bc-sep { color: var(--muted); font-size: 0.7rem; }
.bc-cur {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Badge */
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.ph-badge-line { width: 28px; height: 1px; background: var(--gold); }

.ph-badge-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hero title, rule, desc, actions */
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -1.5px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.45s;
}

.ph-title .accent {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.ph-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.75s;
}

.ph-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.85s;
}

.ph-actions {
  margin-top: 2.25rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
}

/* ── CERT STRIP ── */
.cert-strip {
  padding: 28px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.cert-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-item { display: flex; align-items: center; gap: 10px; }
.cert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.cert-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── BRAND INTRO ── */
.brand-section {
  padding: 90px 0;
  background: var(--navy);
  border-top: 1px solid var(--divider);
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2rem;
}

.spec-pill {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.spec-pill.hi,
.spec-pill:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}

/* Key figures panel */
.key-figures {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: 4px;
  overflow: hidden;
}

.kf-item {
  background: var(--navy-2);
  padding: 1.75rem 2rem;
}

.kf-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.kf-lbl {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
  display: block;
}

/* ── PRODUCT LINES ── */
.products-section {
  padding: 100px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--divider);
}

/* Two main product line cards (Body + Vehicle) */
.line-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
  margin-bottom: 1px;
}

.line-card {
  background: var(--navy);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.line-card:hover { background: var(--navy-3); }

.line-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.line-card:hover::before { transform: scaleX(1); }

.line-cat {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.line-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.line-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.line-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* Feature list within each product line */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
}

.feat-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.5;
}

.feat-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Software platform card — full width below */
.software-card {
  background: var(--navy-2);
  border: 1px solid var(--divider);
  border-radius: 0 0 4px 4px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  border-top: none;
}

.sw-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.sw-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.sw-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.sw-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.5;
}

.sw-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* EQUIPMENT */
.icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}
.icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}
.icon-box h3 {
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 20px;
  line-height: 24px;
  color: #ffc451;
}
.icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.icon-box h3 a:hover {
  color: #ffc451;
}
.icon-box p {
  color: #cccccc;
  margin: 10px 0 0 0;
  font-size: 14px;
	line-height: inherit;
}
.icon-box:hover {
  border-color: #ffc451;
}

/* ── TARGET SECTORS ── */
.sectors-section {
  padding: 90px 0;
  background: var(--navy);
  border-top: 1px solid var(--divider);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}

.sector-card {
  background: var(--navy-2);
  padding: 2rem;
  transition: background 0.25s;
}

.sector-card:hover { background: var(--navy-3); }

.sector-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sector-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sector-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

/* ── WHY ── */
.why-section {
  padding: 90px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--divider);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--navy);
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}

.why-card:hover { border-color: var(--gold-line); background: var(--navy-3); }

.why-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-title {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-desc { font-size: 0.85rem; font-weight: 300; color: var(--silver); line-height: 1.7; }

/* ── QUOTE FORM ── */
.quote-section {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--divider);
}

.form-wrap {
  background: var(--navy-2);
  border: 1px solid var(--divider);
  border-radius: 4px;
  padding: 3rem;
}

.f-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: block;
}

.f-input {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--divider);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.f-input:focus { border-color: var(--gold-line); background: var(--navy-3); }
.f-input::placeholder { color: var(--muted); font-size: 0.85rem; }
select.f-input option { background: var(--navy-2); color: var(--white); }

.f-field { margin-bottom: 1.5rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.f-divider { height: 1px; background: var(--divider); margin: 2rem 0; }
.f-footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.f-note { font-size: 0.78rem; font-weight: 300; color: var(--muted); font-style: italic; }

.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-success.show { display: block; }
.form-success p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--gold); }

.wa-alt {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 4px;
  margin-top: 1.5rem;
}

.wa-text { font-size: 0.85rem; font-weight: 300; color: var(--silver); line-height: 1.5; }
.wa-text strong { color: var(--white); font-weight: 500; }
.wa-text a { color: #25D366; font-size: 0.82rem; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .line-grid { grid-template-columns: 1fr; }
  .software-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .sw-features { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem; }
  .cert-items { gap: 1.5rem; }
}

@media (max-width: 767px) {
  .sector-grid { grid-template-columns: 1fr; }
  .f-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
  .ph-title { letter-spacing: -0.5px; }
  .ph-actions { flex-direction: column; align-items: flex-start; }
}
