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

:root {
  --gray:    #4D4C4C;
  --blue:    #1F6CB6;
  --navy:    #201C56;
  --white:   #ffffff;
  --light:   #f4f6f9;
  --border:  rgba(31,108,182,.15);
  --shadow:  0 4px 32px rgba(32,28,86,.10);
  --celeste: #7ab8f0;
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--gray); background: var(--white); overflow-x: hidden; }

/* ── UTILITY ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); border: 1.5px solid var(--blue); border-radius: 2px; padding: 3px 10px; }
.tag-light { color: #7ab8f0; border-color: #7ab8f0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(32,28,86,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: inline-flex; align-items: center; width: 132px; height: 35px; text-decoration: none; }
.logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); text-decoration: none; letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--blue); color: var(--white); padding: 8px 20px; border-radius: 3px; font-size: 13px; font-weight: 700; text-decoration: none; letter-spacing: .04em; transition: background .2s; }
.nav-cta:hover { background: #1558a0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(31,108,182,.18) 0%, transparent 50%),
    linear-gradient(225deg, rgba(32,28,86,1) 50%, transparent 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,108,182,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,108,182,.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,108,182,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 660px; }
.hero-eyebrow { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: clamp(40px, 6vw, 72px);
  color: var(--white); line-height: 1.05; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p { font-size: 17px; font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--blue); color: var(--white); padding: 14px 32px; border-radius: 3px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: .05em; text-transform: uppercase; transition: background .2s, transform .15s; display: inline-block; }
.btn-primary:hover { background: #1558a0; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.35); color: var(--white); padding: 14px 32px; border-radius: 3px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: .05em; text-transform: uppercase; transition: border-color .2s, background .2s; display: inline-block; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.hero-stats { display: flex; gap: 48px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.stat-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 36px; color: var(--white); line-height: 1; }
.stat-num span { color: var(--blue); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative; height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a2775 100%);
  border-radius: 4px; overflow: hidden;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual-inner {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.av-cell {
  background: rgba(31,108,182,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: rgba(255,255,255,.08);
  font-weight: 900; font-family: 'Archivo', sans-serif;
  transition: background .3s;
}
.av-cell:hover { background: rgba(31,108,182,.22); }
.av-cell.accent { background: rgba(31,108,182,.3); color: rgba(31,108,182,.5); font-size: 48px; }
.av-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--blue); color: var(--white);
  padding: 14px 20px; border-radius: 3px;
}
.av-badge .big { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 28px; line-height: 1; }
.av-badge .small { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: 2px; }
.about-text .tag { margin-bottom: 16px; }
.about-text h2 { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 38px; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.about-text p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.value-text span { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ── SECTORS ── */
.sectors { padding: 80px 0; background: var(--light); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .tag { margin-bottom: 14px; }
.section-head h2 { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(28px,4vw,42px); color: var(--navy); line-height: 1.15; }
.section-head p { font-size: 16px; color: var(--gray); margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4px; }
.sector-card {
  background: var(--navy); color: var(--white);
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: background .25s;
}
.sector-card:hover { background: #1a185e; }
.sector-hex {
  position: absolute; bottom: -28px; right: -28px;
  width: 100px; height: 100px; pointer-events: none;
  overflow: visible;
}
.sector-hex polygon {
  fill: rgba(31,108,182,.22);
  transform-origin: 50px 50px;
  transform-box: view-box;
}
.sector-card:hover .sector-hex polygon { fill: rgba(31,108,182,.36); }

@keyframes hexIdleSpin {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(360deg) scale(1); }
}
@keyframes hexHoverSpin {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(360deg) scale(2.6); }
}

.sector-hex polygon { animation: hexIdleSpin 9s linear infinite; }
.sector-card:hover .sector-hex polygon { animation: hexHoverSpin .75s cubic-bezier(.22,.68,0,1.2) forwards; }
.sector-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.sector-card h3 { font-size: 15px; font-weight: 700; letter-spacing: .03em; margin-bottom: 8px; }
.sector-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── PRODUCTS ── */
.products { padding: 100px 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px; margin-top: 56px; }
.prod-card {
  border: 1.5px solid var(--border); border-radius: 4px; padding: 32px 28px;
  position: relative; overflow: hidden; background: var(--white);
  transition: border-color .25s, box-shadow .25s;
}
.prod-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.prod-num { position: absolute; top: 16px; right: 20px; font-family: 'Archivo', sans-serif; font-size: 48px; font-weight: 900; color: rgba(31,108,182,.06); line-height: 1; }
.prod-icon { width: 44px; height: 44px; background: rgba(31,108,182,.08); border-radius: 3px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.prod-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.prod-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.prod-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(31,108,182,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(31,108,182,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.services .section-head h2 { color: var(--white); }
.services .section-head p { color: rgba(255,255,255,.6); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.svc-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: 36px 28px;
  transition: background .25s, border-color .25s;
}
.svc-card:hover { background: rgba(31,108,182,.15); border-color: rgba(31,108,182,.4); }
.svc-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 13px; color: var(--blue); letter-spacing: .1em; margin-bottom: 20px; display: block; }
.svc-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.svc-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── BRANDS ── */
.brands { padding: 72px 0; background: var(--light); border-top: 1px solid var(--border); }
.brands-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 28px; margin-top: 40px; }
.brand-logo {
  width: 180px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 16px;
}
.brand-logo img {
  display: block; max-width: 100%; max-height: 48px; object-fit: contain;
  filter: grayscale(1) brightness(.28);
  opacity: .95;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.brand-logo:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

/* ── WHY ── */
.why { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 38px; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.why-text p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 32px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.wf-item { display: flex; gap: 16px; align-items: flex-start; }
.wf-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 5px; }
.wf-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.wf-item span { font-size: 13px; color: var(--gray); line-height: 1.6; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wv-card { background: var(--navy); border-radius: 4px; padding: 32px 24px; }
.wv-card.accent { background: var(--blue); }
.wv-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 40px; color: rgba(255,255,255,.9); line-height: 1; }
.wv-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }
.wv-card.accent .wv-label { color: rgba(255,255,255,.85); }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .tag { margin-bottom: 16px; }
.contact-info h2 { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 36px; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; background: var(--blue); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 16px; height: 16px; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--gray); line-height: 1.5; }
.ci-val a { color: var(--gray); text-decoration: none; }
.ci-val a:hover { color: var(--blue); }

/* Form */
.contact-form { background: var(--white); border-radius: 4px; padding: 40px; border: 1px solid var(--border); }
.contact-form h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: 3px;
  padding: 11px 14px; font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--gray);
  outline: none; background: var(--white); transition: border-color .2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; background: var(--blue); color: var(--white); border: none; border-radius: 3px; padding: 14px 28px; font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: background .2s; margin-top: 8px; }
.form-submit:hover { background: #1558a0; }

/* ── FOOTER ── */
footer { background: #17143d; color: rgba(255,255,255,.6); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.social-links a { display: inline-flex; align-items: center; gap: 8px; }
.social-links a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: .85; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; }
.footer-bottom .ft-right { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.hero-content > * { animation: fadeUp .7s ease both; }
.hero-eyebrow { animation-delay: .1s; }
.hero h1 { animation-delay: .2s; }
.hero p { animation-delay: .3s; }
.hero-actions { animation-delay: .4s; }
.hero-stats { animation-delay: .5s; }

/* ── MOBILE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
}

/* Toast */
#toast { position: fixed; bottom: 32px; right: 32px; background: var(--blue); color: #fff; padding: 14px 24px; border-radius: 4px; font-size: 14px; font-weight: 500; opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 999; }
#toast.show { opacity: 1; }

/* ── DISCOVER NOSOTROS ── */
.about-discover {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.about-discover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(31, 108, 182, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.discover-box {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.discover-box h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 44px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.discover-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ── NOSOTROS PAGE ── */
.about-page-hero {
  padding: 160px 0 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(31, 108, 182, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(31, 108, 182, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.about-page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-page-hero-content h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-page-hero-content h1 em {
  font-style: normal;
  color: var(--celeste);
}
.about-page-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-page-hero-visual {
  position: relative;
  height: 380px;
  background: linear-gradient(135deg, #1c194a 0%, #201c56 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-page-hero-visual::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(122, 184, 240, 0.15) 0%, transparent 60%);
  animation: floatBG 15s ease-in-out infinite alternate;
}
.about-page-hero-visual .visual-inner {
  position: relative;
  z-index: 2;
  font-size: 72px;
  color: var(--celeste);
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  opacity: 0.9;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 100px 0;
  background: var(--white);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mv-card-custom {
  background: var(--navy);
  color: var(--white);
  padding: 48px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(32, 28, 86, 0.18);
}
.mv-card-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
}
.mv-card-custom.vision-card::before {
  background: var(--celeste);
}
.mv-card-custom h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mv-card-custom h3 span {
  font-size: 24px;
}
.mv-card-custom p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* Values Custom Section */
.values-detail {
  padding: 100px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}
.values-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card-custom {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid rgba(32, 28, 86, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.value-card-custom:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(32, 28, 86, 0.08);
}
.value-card-custom .value-num {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--celeste);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.value-card-custom h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
}
.value-card-custom p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-page-hero-grid, .mv-grid, .values-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-page-hero-visual { height: 280px; }
}

/* ── PDF DOWNLOAD BLOCK ── */
.pdf-section {
  padding: 80px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.pdf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pdf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pdf-icon {
  width: 56px;
  height: 56px;
  background: rgba(31, 108, 182, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdf-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
}
.pdf-info {
  flex-grow: 1;
}
.pdf-info h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.pdf-info p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}
.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.pdf-btn:hover {
  color: #1558a0;
}
.pdf-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* ── SPECIFICATION TABLES ── */
.spec-table-container {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
.spec-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
}
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table tr:nth-child(even) {
  background: rgba(31, 108, 182, 0.02);
}

/* Extended Detail Layouts for New Pages */
.detail-section {
  padding: 80px 0;
  background: var(--white);
}
.detail-item {
  margin-bottom: 80px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.detail-item:last-child {
  margin-bottom: 0;
}
.detail-item-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.detail-item-header {
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.detail-item-header h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--navy);
}
.detail-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}
.detail-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.detail-features-list li {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-features-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}

/* ── GALLERY FILTERS ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 48px;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 10px 24px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(31, 108, 182, 0.02);
}
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── GALLERY GRID ── */
.gallery-grid-custom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(32, 28, 86, 0.04);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-card:hover img {
  transform: scale(1.08);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 28, 86, 0.9) 0%, rgba(32, 28, 86, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}
.gallery-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--celeste);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.gallery-card-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  line-height: 1.2;
}
.gallery-card-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  pointer-events: none;
}

/* ── LIGHTBOX MODAL ── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.show {
  display: flex;
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 38px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  outline: none;
  line-height: 1;
}
.lightbox-close:hover {
  color: var(--celeste);
}
.lightbox-content-container {
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 64px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: var(--white);
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.02em;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  background: #20ba5a;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(32, 28, 86, 0.18);
}
.whatsapp-icon {
  width: 28px;
  height: 28px;
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── FAQ ACCORDION ── */
.faq {
  padding: 100px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(32, 28, 86, 0.05);
  border-color: rgba(31, 108, 182, 0.3);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  outline: none;
}
.faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding-right: 16px;
}
.faq-toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  transition: transform 0.3s ease;
}
.faq-toggle-icon::before {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}
.faq-toggle-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
}
.faq-question[aria-expanded="true"] .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-question[aria-expanded="true"] .faq-toggle-icon::before {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
  opacity: 0;
}
.faq-answer.open {
  max-height: 500px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0), opacity 0.3s ease;
  opacity: 1;
}
.faq-answer-content {
  padding: 0 24px 24px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* ── SEARCH BAR ── */
.search-container {
  max-width: 600px;
  margin: 0 auto 48px auto;
}
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.search-icon {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  pointer-events: none;
}
#product-search {
  width: 100%;
  padding: 16px 20px 16px 56px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#product-search:focus {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(31, 108, 182, 0.08);
}

/* ── FORM VALIDATION ── */
.form-group {
  position: relative;
}
.form-group input.error,
.form-group textarea.error {
  border-color: #e03c3c !important;
  background: rgba(224, 60, 60, 0.02);
}
.error-message {
  display: none;
  color: #e03c3c;
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
}
.form-group input.error ~ .error-message,
.form-group textarea.error ~ .error-message {
  display: block;
}

/* ── MAP WRAPPER ── */
.map-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  background: var(--navy);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(1) invert(0.9) contrast(1.2) sepia(0.2) hue-rotate(180deg);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.map-wrapper:hover iframe {
  filter: grayscale(0) invert(0) contrast(1) sepia(0) hue-rotate(0);
  opacity: 1;
}
