/* Inside Safety — Main Stylesheet */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
img, svg { max-width: 100%; }

:root {
  --dark:      #08111E;
  --dark-2:    #0D1B2E;
  --dark-3:    #122236;
  --accent:    #CC1E2C;
  --accent-h:  #A8192A;
  --blue:      #1E3B8F;
  --blue-h:    #162E72;
  --text:      #E8EDF3;
  --muted:     #7A8FA6;
  --faint:     #3E5165;
  --border:    rgba(255,255,255,0.07);
  --ph-bg:     rgba(255,180,0,0.10);
  --ph-border: rgba(255,180,0,0.35);
  --ph-text:   #FFAA00;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--muted); }
a  { color: inherit; text-decoration: none; }

/* ── PLACEHOLDER ── */
.ph {
  display: inline-block;
  background: var(--ph-bg);
  border: 1px dashed var(--ph-border);
  color: var(--ph-text);
  font-size: 0.72em;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: normal;
  word-break: break-word;
  font-style: normal;
  max-width: 100%;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,30,44,0.35); }
.btn-ghost   { background: var(--blue); color: #fff; border: 1.5px solid var(--blue); }
.btn-ghost:hover { background: var(--blue-h); border-color: var(--blue-h); transform: translateY(-1px); }

/* ── LAYOUT ── */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 100px 0; }
.section-alt  { background: var(--dark-2); }
.section-alt2 { background: var(--dark-3); }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(8,17,30,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo span { color: var(--accent); }

/* Nav links generados por wp_nav_menu o el fallback */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta,
.nav-links .current-menu-item > a {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 5px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--accent-h); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
/* Imagen se inyecta vía inline style desde front-page.php (Personalizador WP).
   Si no hay imagen configurada, muestra fondo oscuro sólido. */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 66px;
  background-color: var(--dark);
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
/* Degradado oscuro para legibilidad del texto */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(8,17,30,0.97) 0%,
      rgba(8,17,30,0.88) 38%,
      rgba(8,17,30,0.62) 65%,
      rgba(8,17,30,0.38) 100%
    );
  z-index: 0;
}
/* Cuadrícula sutil encima del degradado */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,30,44,0.09);
  border: 1px solid rgba(204,30,44,0.22);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
#hero h1 { margin-bottom: 24px; }
#hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ═══════════════════════════════════════
   VALUE PROPS
═══════════════════════════════════════ */
#valor { padding: 0; }
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.prop {
  background: var(--dark-2);
  padding: 52px 44px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.prop.visible { opacity: 1; transform: translateY(0); }
.prop-icon {
  width: 46px; height: 46px;
  background: rgba(204,30,44,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.prop h3 { color: var(--text); margin-bottom: 12px; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#servicios { background: var(--dark); }
.services-intro { max-width: 680px; margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.svc {
  background: var(--dark);
  padding: 36px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.2s;
}
.svc:hover { background: var(--dark-2); }
.svc.visible { opacity: 1; transform: translateY(0); }
.svc-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--faint);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.svc-icon {
  width: 70px; height: 70px;
  background: rgba(204,30,44,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  transition: background 0.2s;
  flex-shrink: 0;
}
.svc:hover .svc-icon { background: rgba(204,30,44,0.13); }
.svc-protect {
  font-size: 0.72rem;
  color: var(--faint);
  margin-top: 14px;
  line-height: 1.6;
}
.svc-protect strong { color: rgba(204,30,44,0.6); font-weight: 600; }
.svc h3 { color: var(--text); margin-bottom: 10px; font-size: 1rem; }
.svc p  { font-size: 0.875rem; }

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
#cifras { padding: 0; background: var(--accent); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 60px 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .ph {
  background: rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.95);
  font-size: 0.85em;
  padding: 4px 10px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
}

/* ═══════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════ */
#industrias { background: var(--dark-2); }
.industries-intro { max-width: 660px; margin-bottom: 64px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-bottom: 48px;
}
.ind {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ind.visible { opacity: 1; transform: translateY(0); }
.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.ind:hover .ind-bg { transform: scale(1.04); }
.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,17,30,0.97) 0%,
    rgba(8,17,30,0.78) 45%,
    rgba(8,17,30,0.32) 100%);
}
.ind-content {
  position: relative;
  z-index: 1;
  padding: 44px 52px;
}
.ind-pain {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 10px;
  font-style: italic;
  line-height: 1.5;
}
.ind-outcome {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(204,30,44,0.1);
  border: 1px solid rgba(204,30,44,0.22);
  padding: 5px 11px;
  border-radius: 100px;
  margin-top: 14px;
}
.ind-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ind h3 { color: var(--text); font-size: 1.25rem; margin-bottom: 10px; }
.ind p  { margin-bottom: 14px; font-size: 0.875rem; }
.ind-sols { font-size: 0.75rem; color: rgba(255,255,255,0.38); line-height: 1.7; }
.industries-cta { text-align: center; }
.industries-cta p { margin-bottom: 20px; font-size: 1rem; }

/* ═══════════════════════════════════════
   HOW WE WORK
═══════════════════════════════════════ */
#proceso { background: var(--dark-3); }
.process-intro { max-width: 600px; margin-bottom: 64px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step:last-child { border-right: none; }
.step.visible { opacity: 1; transform: translateY(0); }
.step-n {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(204,30,44,0.14);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { color: var(--text); margin-bottom: 10px; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
#nosotros { background: var(--dark-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left h2 { margin-bottom: 20px; }
.about-left p  { margin-bottom: 18px; }
.values-list { margin-top: 44px; display: flex; flex-direction: column; gap: 18px; }
.val { display: flex; gap: 14px; align-items: flex-start; }
.val-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.val strong { color: var(--text); }
.mvv-stack { display: flex; flex-direction: column; gap: 16px; }
.mvv {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 26px 28px;
}
.mvv h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.mvv p { font-size: 0.88rem; }

/* ═══════════════════════════════════════
   CLIENTS
═══════════════════════════════════════ */
#clientes { background: var(--dark); }
.clients-header { max-width: 520px; margin: 0 auto 56px; text-align: center; }
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-bottom: 56px;
}
.logo-slot {
  background: var(--dark);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 36px 44px;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial blockquote {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial cite { font-size: 0.82rem; color: var(--muted); font-style: normal; }

/* ═══════════════════════════════════════
   CONTACTO — Contact Form 7
═══════════════════════════════════════ */
#cta { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-info-col h2 { margin-bottom: 18px; margin-top: 10px; }
.contact-info-col > p { margin-bottom: 32px; font-size: 0.95rem; }
.contact-why {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-why li {
  display: flex;
  gap: 11px;
  font-size: 0.875rem;
  color: var(--muted);
  align-items: flex-start;
}
.contact-why li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.contact-secondary { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 12px 16px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}
.contact-link:hover { border-color: rgba(255,255,255,0.22); color: var(--text); }
.contact-link svg { flex-shrink: 0; }

/* ── Tarjeta del formulario */
.form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Inputs: estilos base (HTML preview) y CF7 override */
.form-field,
.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  font-size: 0.875rem;
  font-family: inherit;
  border-radius: 4px;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.form-field:focus,
.wpcf7-form input:not([type="submit"]):focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: var(--faint); }
textarea.form-field,
.wpcf7-form textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
select.form-field,
.wpcf7-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8FA6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  background-color: var(--dark-3);
}
.form-submit,
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.18s, transform 0.18s;
}
.form-submit:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover { background: var(--accent-h); transform: translateY(-1px); }

/* ── CF7: estructura y mensajes */
.wpcf7-form p { margin: 0 0 16px; color: var(--muted); }
.wpcf7-form p:last-of-type { margin-bottom: 0; }
.wpcf7-form span.wpcf7-form-control-wrap { display: block; }
.wpcf7-response-output {
  border-radius: 4px;
  padding: 12px 16px !important;
  font-size: 0.85rem !important;
  margin: 16px 0 0 !important;
  border-width: 1px !important;
}
.wpcf7-mail-sent-ok {
  background: rgba(34,197,94,0.08) !important;
  border-color: #22c55e !important;
  color: #22c55e !important;
}
.wpcf7-validation-errors,
.wpcf7-spam-blocked,
.wpcf7-acceptance-missing {
  background: rgba(204,30,44,0.08) !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}
.wpcf7-not-valid-tip {
  font-size: 0.72rem;
  color: #f87171;
  margin-top: 4px;
  display: block;
}

/* ── Responsive contacto */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row-2    { grid-template-columns: 1fr; gap: 0; }
  .form-card     { padding: 28px 24px; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { display: block; margin-bottom: 12px; font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; }
.foot-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.foot-links a { font-size: 0.85rem; color: var(--faint); transition: color 0.15s; }
.foot-links a:hover { color: var(--muted); }
.contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--faint);
  align-items: flex-start;
}
.contact-row svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--faint); }
.footer-credit { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer-credit:hover { color: var(--text); }

/* ═══════════════════════════════════════
   HERO TRUST STRIP
═══════════════════════════════════════ */
.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ═══════════════════════════════════════
   POR QUÉ INSIDE SAFETY
═══════════════════════════════════════ */
#porque { background: var(--dark); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.proof-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.proof-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
}
.proof-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(204,30,44,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.proof-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,17,30,0.9) 0%, transparent 100%);
  padding: 28px 24px 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.proof-content h2 { margin-bottom: 18px; }
.proof-content > p { margin-bottom: 36px; font-size: 0.95rem; }
.proof-list { display: flex; flex-direction: column; gap: 22px; }
.proof-item { display: flex; gap: 16px; align-items: flex-start; }
.proof-item-icon {
  width: 56px; height: 56px;
  background: rgba(204,30,44,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.proof-item-text strong {
  color: var(--text); font-size: 0.88rem;
  display: block; margin-bottom: 3px;
}
.proof-item-text span { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════
   ABOUT PHOTO
═══════════════════════════════════════ */
.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/8;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.7);
}
.about-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(8,17,30,0.65) 100%);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .proof-grid   { gap: 56px; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 48px; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row-2   { grid-template-columns: 1fr; gap: 0; }
  .form-card    { padding: 28px 24px; }
}
@media (max-width: 768px) {
  .section      { padding: 72px 0; }
  .nav-links    { display: none; }
  .nav-hamburger{ display: flex; }
  #hero         { min-height: auto; padding-top: 80px; padding-bottom: 80px; }
  .hero-inner   { max-width: 100%; }
  .hero-trust   { gap: 14px; }
  .props-grid   { grid-template-columns: 1fr; }
  .prop         { padding: 40px 28px; }
  .services-grid{ grid-template-columns: 1fr; }
  .svc          { padding: 30px 24px; }
  .svc-icon     { width: 56px; height: 56px; }
  .industry-grid{ grid-template-columns: 1fr; gap: 0; }
  .ind          { min-height: 280px; }
  .ind-content  { padding: 32px 24px; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-photo  { aspect-ratio: 16/7; margin-bottom: 28px; }
  .mvv          { padding: 20px 20px; }
  .steps-grid   { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .logos-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .proof-grid   { grid-template-columns: 1fr; gap: 40px; }
  .proof-list   { gap: 16px; }
  .proof-item-icon { width: 44px; height: 44px; }
  .testimonial  { padding: 28px 24px; }
  .step         { border-right: none; border-bottom: 1px solid var(--border); }
  .stat         { padding: 44px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat:nth-child(3),
  .stat:nth-child(4)    { border-bottom: none; }
  .hero-scroll  { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row-2   { grid-template-columns: 1fr; gap: 0; }
  .form-card    { padding: 28px 20px; }
  h2            { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}
@media (max-width: 480px) {
  .container    { padding: 0 18px; }
  .section      { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-num     { font-size: 2rem; }
  .services-intro { margin-bottom: 40px; }
  .industries-intro { margin-bottom: 40px; }
  .process-intro  { margin-bottom: 40px; }
  .clients-header { margin-bottom: 36px; }
  .footer-grid  { gap: 28px; }
  h1            { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}
