@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --surface:           #080f11;
  --surface-low:       #0d1516;
  --surface-container: #121e20;
  --surface-high:      #192526;
  --surface-highest:   #1f2d2f;
  --on-surface:        #dce4e5;
  --on-surface-var:    #8fa5a8;
  --outline:           #849396;
  --outline-var:       #2a3638;
  --cyan:              #00e5ff;
  --cyan-dim:          #00b8cc;
  --cyan-glow:         rgba(0,229,255,0.12);
  --cyan-border:       rgba(0,229,255,0.18);
  --font: 'Manrope', sans-serif;
  --container: 1280px;
  --section-pad: 60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--surface); color: var(--on-surface); line-height: 1.6; }
#page-wrap { overflow: hidden; width: 100%; position: relative; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 60px; }
.upper { text-transform: uppercase; }
.accent { color: var(--cyan); }
.accent-inline { color: var(--cyan); }
.accent-dim { color: var(--on-surface-var); }
.on-surface-var { color: var(--on-surface-var); }
.light { color: var(--on-surface); }
.small { font-size: 14px; line-height: 1.6; }

/* NAV */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  background: rgba(13,21,22,0.8);
  border-bottom: 1px solid var(--outline-var);
}
.nav-inner { display: flex; align-items: center; height: 68px; position: relative; }
.logo { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; color: var(--on-surface); }
.logo-img { height: 36px; width: auto; object-fit: contain; }
.footer-brand .logo-img { height: 40px; }
.logo-a { color: var(--cyan); }
.nav-links { display: flex; gap: 36px; margin-left: 48px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--on-surface-var); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--on-surface); }
.btn-nav {
  font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 50px;
  border: 1px solid var(--cyan-border); color: var(--cyan);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--cyan-glow); box-shadow: 0 0 20px rgba(0,229,255,0.2); }
.hamburger { display: none; background: none; border: none; color: #ffffff; font-size: 28px; cursor: pointer; margin-left: auto; padding: 4px 8px; line-height: 1; }

/* BUTTONS */
.btn-primary {
  display: inline-block; font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 6px;
  background: var(--cyan); color: #001f24;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 0 28px rgba(0,229,255,0.4); }
.btn-primary.full { width: 100%; text-align: center; display: block; padding: 16px; }
.btn-play {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--on-surface);
  transition: color 0.2s;
}
.btn-play:hover { color: var(--cyan); }
.play-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--outline-var);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--on-surface);
}

/* SECTION */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--surface-low); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
  display: block;
}

/* HERO */
.hero {
  position: relative; min-height: auto;
  display: flex; align-items: center; overflow: hidden; padding-top: 68px; padding-bottom: 0;
  background-image: 
    linear-gradient(135deg, rgba(8,15,17,0.92) 0%, rgba(8,15,17,0.75) 50%, rgba(8,15,17,0.85) 100%),
    url('https://firebasestorage.googleapis.com/v0/b/veria-group.firebasestorage.app/o/Segundo%20image%2Fskyscrapers-moscow-city-international-business-centre.jpg?alt=media&token=98decce8-3f66-48d9-ae22-3f7b1c4b7ede');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-grid { display: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.hero-cards { display: flex; flex-direction: column; gap: 16px; padding-right: 20px; }
.hero-badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid var(--outline-var); color: var(--on-surface-var);
  margin-bottom: 28px;
}
.hero-text h1 { font-size: 56px; font-weight: 800; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 16px; }
.hero-text h1 .accent { color: var(--cyan); display: inline; }
.hero-desc { font-size: 15px; color: var(--on-surface-var); line-height: 1.7; max-width: 480px; margin-bottom: 24px; font-weight: 600; margin-top: 0; margin-bottom: 0; }
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; }
.hero-img-wrap {
  width: 100%; max-width: 260px;
  max-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: #0e1a1c;
  border-radius: 16px;
  border: 1px solid rgba(132,147,150,0.15);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.placeholder-globe { position: relative; display: flex; align-items: center; justify-content: center; width: 200px; height: 200px; }
.globe-inner {
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1ad0e8, #005f6e 55%, #001a22);
  box-shadow: 0 0 50px rgba(0,229,255,0.3);
  position: relative; z-index: 2;
}
.globe-ring {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.2); animation: spin 14s linear infinite;
}
.globe-label {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--on-surface-var); line-height: 1.3; z-index: 3;
}
.globe-label small { font-size: 9px; opacity: 0.6; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* DOS SERVICIOS */
.hero-services { margin-top: 32px; width: 100%; }
.section-services { display: none; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.service-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: #0d1516;
  border: 1px solid var(--outline-var);
  border-radius: 12px; padding: 16px 18px;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,229,255,0.05) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.35s ease;
}
.service-card:hover {
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.15), 0 8px 32px rgba(0,229,255,0.08);
  transform: translateY(-2px);
}
.service-card:hover::before { opacity: 1; }
.service-body { flex: 1; position: relative; z-index: 1; }
.service-body h3 {
  font-size: 14px; font-weight: 700;
  color: var(--on-surface); margin-bottom: 8px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.service-body p { font-size: 12px; color: var(--on-surface-var); line-height: 1.5; margin-bottom: 12px; max-width: 200px; }
.service-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--cyan);
  letter-spacing: 0.02em; transition: gap 0.2s;
}
.service-card:hover .service-btn { gap: 10px; }
.service-visual {
  width: 72px; height: 72px; flex-shrink: 0;
  opacity: 1; transition: opacity 0.3s;
  filter: drop-shadow(0 0 6px rgba(0,229,255,0.4));
}
.service-card:hover .service-visual { opacity: 1; }

/* QUÉ OFRECEMOS */
#aliados { background: #0d1516; }
.section-header-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 20px; }
.section-header-left h2 { font-size: 42px; font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
.section-header-right p { font-size: 16px; color: var(--on-surface-var); line-height: 1.7; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--surface-container); border: 1px solid var(--outline-var);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--cyan-border); transform: translateY(-4px); }
.card-icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--surface-high); border: 1px solid var(--outline-var);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 20px;
}
.card h3 { font-size: 14px; font-weight: 700; color: var(--on-surface); margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { font-size: 13px; color: var(--on-surface-var); line-height: 1.65; margin-bottom: 20px; }
.card-link { font-size: 13px; font-weight: 700; color: var(--cyan); }

/* INFRAESTRUCTURA */
.infra-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100%; max-width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.03) 0%, transparent 70%);
  pointer-events: none;
  overflow: hidden;
}
.section-dark { position: relative; }
.infra-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.infra-header h2 { font-size: 48px; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.infra-header-right p { font-size: 15px; color: var(--on-surface-var); line-height: 1.7; }
.infra-grid-asym { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.infra-col { display: flex; flex-direction: column; gap: 12px; }
/* INFRA CARDS NEON HOVER */
/* INFRA CARDS NEON HOVER */
.infra-card {
  background: var(--surface-container); border: 1px solid var(--outline-var);
  border-radius: 14px; padding: 28px 24px; flex: 1;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.infra-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.infra-card:hover {
  border-color: rgba(0,229,255,0.5);
  box-shadow: 0 0 20px rgba(0,229,255,0.12), 0 0 40px rgba(0,229,255,0.06), inset 0 0 20px rgba(0,229,255,0.03);
  background: var(--surface-high);
}
.infra-card:hover::before { opacity: 1; }
.infra-card:hover .infra-num { color: rgba(0,229,255,0.9); }
.infra-card:hover h4 { color: #fff; }
.infra-card.tall { flex: 1.6; }
.infra-card.neon-right {
  border-right: 2px solid rgba(0,229,255,0.45);
  box-shadow: 4px 0 20px rgba(0,229,255,0.07);
}
.infra-card.neon-right:hover {
  border-right-color: rgba(0,229,255,0.9);
  box-shadow: 6px 0 28px rgba(0,229,255,0.18);
}
.infra-num { display: block; font-size: 24px; font-weight: 800; color: rgba(0,229,255,0.2); margin-bottom: 14px; letter-spacing: -0.02em; transition: color 0.3s; }
.infra-card h4 { font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 10px; transition: color 0.3s; }
.infra-card p { font-size: 13px; color: var(--on-surface-var); line-height: 1.65; }

/* PRESENCIA SPLIT */
.split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-visual { display: flex; justify-content: center; }
.split-img-wrap { width: 100%; max-width: 440px; }
.split-img-placeholder {
  width: 100%; aspect-ratio: 1;
  background: var(--surface-container);
  border-radius: 20px; border: 1px solid var(--outline-var);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.control-room { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; }
.cr-orb {
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1ad0e8, #005060 55%, #001520);
  box-shadow: 0 0 60px rgba(0,229,255,0.4); z-index: 2; position: relative;
}
.cr-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0,229,255,0.2);
  animation: spin linear infinite;
}
.cr-ring.r1 { width: 150px; height: 150px; animation-duration: 10s; }
.cr-ring.r2 { width: 200px; height: 200px; animation-duration: 18s; animation-direction: reverse; }
.split-text h2 { font-size: 38px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; }
.split-text > p { font-size: 15px; line-height: 1.75; margin-bottom: 36px; }
.feature-list.numbered { display: flex; flex-direction: column; gap: 0; }
.feature-list.numbered li {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid rgba(0,229,255,0.1);
}
.feature-list.numbered li:last-child { border-bottom: none; }
.feat-num { font-size: 16px; font-weight: 700; color: var(--cyan); flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(0,229,255,0.5)); }
.feature-list strong { display: block; font-size: 15px; font-weight: 600; color: #ffffff; margin-bottom: 0; letter-spacing: -0.01em; }
.feature-list p { font-size: 13px; color: var(--on-surface-var); line-height: 1.6; }

/* EVOLUCIÓN */
.section-evolve { overflow: hidden; }
.evolve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.evolve-left h2 { font-size: 48px; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 40px; }
.evolve-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.evolve-col .section-label { margin-bottom: 8px; }
.evolve-quote {
  font-size: 15px; font-weight: 500; font-style: italic;
  color: var(--on-surface); line-height: 1.7;
  padding: 24px 28px;
  border: 1px solid var(--outline-var); border-radius: 12px;
  background: var(--surface-container);
}
.evolve-right { display: flex; justify-content: center; }
.evolve-img-wrap { width: 100%; max-width: 460px; }
.evolve-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--surface-container);
  border-radius: 20px; border: 1px solid var(--outline-var);
  display: flex; align-items: center; justify-content: center;
}
.brain-orb { position: relative; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center; }
.brain-glow {
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.3) 0%, rgba(0,229,255,0.05) 60%, transparent 80%);
  box-shadow: 0 0 80px rgba(0,229,255,0.25);
}

/* CTA */
.section-cta { background: var(--surface); }
.cta-card {
  max-width: 680px; margin: 0 auto;
  background: rgba(13,21,22,0.85);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 20px; padding: 60px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0,229,255,0.06), 0 0 80px rgba(0,229,255,0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0,229,255,0.12), 0 0 120px rgba(0,229,255,0.05);
}

/* WhatsApp form button */
.btn-whatsapp-form {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; border-radius: 10px;
  border: 1px solid rgba(37,211,102,0.4);
  color: #25d366; font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(37,211,102,0.05);
}
.btn-whatsapp-form:hover {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.8);
  box-shadow: 0 0 20px rgba(37,211,102,0.15);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 36px rgba(37,211,102,0.7);
}
.whatsapp-float svg { width: 36px; height: 36px; fill: #fff; }
.cta-title { font-size: 52px; font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 16px; }
.cta-sub { font-size: 15px; color: var(--on-surface-var); line-height: 1.7; margin-bottom: 44px; }
.cta-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--on-surface-var); }
.form-group input, .form-group select {
  font-family: var(--font); font-size: 14px;
  background: var(--surface-high); border: 1px solid var(--outline-var);
  border-radius: 8px; padding: 13px 16px;
  color: var(--on-surface); outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--outline); }
.form-group input:focus, .form-group select:focus { border-color: var(--cyan); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23849396' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-legal { font-size: 12px; color: var(--outline); text-align: center; margin-top: 4px; }

/* FOOTER */
.footer { background: var(--surface-low); border-top: 1px solid var(--outline-var); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding-bottom: 60px; }
.footer-brand .logo { font-size: 20px; margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; color: var(--on-surface-var); line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--outline-var);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--on-surface-var);
  transition: border-color 0.2s, color 0.2s;
}
.social-icon:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-surface); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--on-surface-var); transition: color 0.2s; }
.footer-col a:hover { color: var(--on-surface); }
.footer-bottom {
  border-top: 1px solid var(--outline-var);
  padding: 20px 60px; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--outline); }
.footer-tags { display: flex; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--on-surface-var); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .hero-text h1 { font-size: 48px; }
  .hero-grid { grid-template-columns: 1fr 320px; gap: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .infra-grid-asym { grid-template-columns: repeat(2, 1fr); }
  .section-header-split, .infra-header { grid-template-columns: 1fr; gap: 24px; }
  .infra-header h2 { font-size: 36px; }
  .evolve-grid, .split-container { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { padding-right: 0; }
}

/* TABLET */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .split-container { gap: 40px; }
  .cta-card { padding: 48px 32px; }
  .infra-grid-asym { grid-template-columns: repeat(2, 1fr); }
  .evolve-grid { gap: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE */
@media (max-width: 768px) {
  :root { --section-pad: 48px; }
  .container { padding: 0 18px; }
  * { min-width: 0; }

  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(13,21,22,0.98);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 24px 20px;
    border-bottom: 1px solid var(--outline-var); gap: 20px;
    z-index: 99;
    animation: slideDown 0.2s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Mobile */
  .hero-grid { grid-template-columns: 1fr; padding-top: 32px; padding-bottom: 32px; gap: 24px; }
  .hero-text h1 { font-size: 34px; margin-bottom: 12px; }
  .hero-desc { font-size: 14px; margin-bottom: 0; }
  .hero-cards { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 12px 14px; }
  .service-visual { width: 48px; height: 48px; }
  .service-body h3 { font-size: 13px; margin-bottom: 4px; }
  .service-body p { font-size: 11px; margin-bottom: 8px; }
  .cta-title { font-size: 32px; }

  /* Sections */
  .section-header-left h2 { font-size: 28px; }
  .section-header-split { grid-template-columns: 1fr; }
  .split-container { grid-template-columns: 1fr; gap: 32px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }
  .infra-grid-asym { grid-template-columns: 1fr; }
  .infra-col { gap: 10px; }
  .card { min-height: 260px; }

  /* Evolve */
  .evolve-grid { grid-template-columns: 1fr; gap: 32px; }
  .evolve-left h2 { font-size: 28px; }
  .evolve-cols { grid-template-columns: 1fr; gap: 20px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 32px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }

  /* WhatsApp float */
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* SMALL MOBILE */
@media (max-width: 420px) {
  .hero-text h1 { font-size: 30px; }
  .cta-title { font-size: 28px; }
  .section-header-left h2 { font-size: 24px; }
  .footer-links { grid-template-columns: 1fr; }
  .infra-grid-asym { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .evolve-left h2 { font-size: 24px; }
}

/* REAL IMAGES */
.hero-img-wrap {
  width: 100%; max-width: 260px;
  max-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0,229,255,0.2), 0 0 60px rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
}
.hero-img-real {
  width: 100%; height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 0 30px rgba(0,229,255,0.15), 0 0 60px rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  animation: float 4s ease-in-out infinite;
  transition: box-shadow 0.3s;
}
.hero-img-real:hover {
  box-shadow: 0 0 40px rgba(0,229,255,0.35), 0 0 80px rgba(0,229,255,0.15);
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.section-img-real {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: linear-gradient(135deg, #0d1c1e 0%, #0f2428 100%);
}
.section-img-real.loaded { opacity: 1; }

/* Placeholder shimmer for split image */
.split-img-wrap {
  background: linear-gradient(135deg, #0d1c1e 0%, #0f2428 100%);
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}
.split-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,0.03) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  z-index: 1;
}
.evolve-img-wrap {
  width: 100%; max-width: 500px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}

/* CARD WITH IMAGE */
.card.card-img {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.card-bg-img.loaded { opacity: 0.35; }
.card.card-img:hover .card-bg-img.loaded { opacity: 0.5; }

/* Skeleton shimmer while image loads */
.card.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0) 0%, 
    rgba(0,229,255,0.04) 50%, 
    rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
  border-radius: inherit;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.card-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(8,15,17,0.95) 60%, transparent);
}
.card-content h3 { font-size: 14px; font-weight: 700; color: var(--on-surface); margin-bottom: 8px; }
.card-content p { font-size: 13px; color: var(--on-surface-var); line-height: 1.6; margin-bottom: 14px; }

/* SPLIT IMG */
.split-img-wrap {
  width: 100%; max-width: 460px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}

/* HERO MOBILE FIX */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    background-size: cover;
    background-position: center center;
    padding-top: 68px;
    padding-bottom: 0;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }
  .hero-grid {
    padding-top: 28px;
    padding-bottom: 40px;
    gap: 20px;
    width: 100%;
  }
  .hero-text, .hero-cards {
    width: 100%;
    max-width: 100%;
  }
}
