/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --orange : #ED933E;
  --navy   : #13128E;
  --deep   : #000687;
  --white  : #FDFEFF;
  --mid    : #6184C8;
  --ink    : #07071f;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ══════════════════════════════════════════
   CURSOR
══════════════════════════════════════════ */
#cur {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  mix-blend-mode: normal;
  transition: width .25s, height .25s, background .25s;
}
#cur.big { width: 60px; height: 60px; background: rgba(237,147,62,.15); border: 1.5px solid var(--orange); }
#cur-trail {
  width: 40px; height: 40px;
  border: 1px solid rgba(237,147,62,.35);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: left .12s ease, top .12s ease;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  transition: background .4s;
}
nav.scrolled {
  background: rgba(7,7,31,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(97,132,200,.12);
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 8px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mid);
  margin-top: 3px;
}

.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 18px; font-size: 13px; font-weight: 600;
  color: rgba(253,254,255,.55); text-decoration: none;
  border-radius: 100px; letter-spacing: .3px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-btn {
  padding: 9px 22px; font-size: 13px; font-weight: 700;
  background: var(--orange); color: #fff;
  border-radius: 100px; text-decoration: none;
  letter-spacing: .3px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(237,147,62,.35);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(237,147,62,.5); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  color: var(--white);
  z-index: 502;
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform .3s ease, opacity .2s;
}
nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 498;
  background: rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
  pointer-events: none;
}
body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

/* ══════════════════════════════════════════
   HERO — FULL BLEED SPLIT
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* LEFT — dark content */
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 56px 80px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,6,135,.25) 0%, transparent 60%);
  pointer-events: none;
}

/* Big outlined number in background */
.hero-bg-num {
  position: absolute;
  bottom: -40px; left: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 22vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(97,132,200,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px; z-index: 1;
  animation: up .8s ease both;
}
.eyebrow-line {
  width: 32px; height: 2px; background: var(--orange); border-radius: 2px;
  animation: lineGrow .8s ease both;
}
@keyframes lineGrow { from { width: 0; } to { width: 32px; } }
.eyebrow-text {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 130px);
  line-height: .92;
  letter-spacing: 2px;
  color: var(--white);
  z-index: 1;
  animation: up .8s ease .1s both;
}
.hero-title .outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}
.hero-title .filled { color: var(--white); }
.hero-title .mid-c { color: var(--mid); }

.hero-desc {
  font-size: 15px; font-weight: 400; line-height: 1.75;
  color: rgba(253,254,255,.5);
  max-width: 380px;
  margin-top: 28px; z-index: 1;
  animation: up .8s ease .2s both;
}

.hero-ctas {
  display: flex; gap: 12px; align-items: center;
  margin-top: 44px; z-index: 1;
  animation: up .8s ease .3s both;
}
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  padding: 14px 30px; border-radius: 6px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  letter-spacing: .3px;
  transition: all .25s;
  box-shadow: 0 6px 24px rgba(237,147,62,.35);
}
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(237,147,62,.45); }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(253,254,255,.55); font-weight: 600; font-size: 14px;
  text-decoration: none; letter-spacing: .3px;
  transition: color .2s;
}
.cta-secondary:hover { color: var(--white); }
.cta-secondary svg { transition: transform .2s; }
.cta-secondary:hover svg { transform: translateX(4px); }

/* Stat bar at bottom */
.hero-stats {
  display: flex; gap: 0;
  margin-top: 60px; padding-top: 36px;
  border-top: 1px solid rgba(97,132,200,.15);
  z-index: 1;
  animation: up .8s ease .4s both;
}
.hstat {
  flex: 1; padding-right: 28px;
  border-right: 1px solid rgba(97,132,200,.12);
}
.hstat:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.hstat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; letter-spacing: 1px; line-height: 1;
  color: var(--white);
}
.hstat-n em { color: var(--orange); font-style: normal; }
.hstat-l { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(97,132,200,.7); margin-top: 4px; }

/* RIGHT — full photo */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: zoomIn 1.2s ease both;
}
@keyframes zoomIn { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,7,31,.6) 0%, rgba(7,7,31,.1) 50%, transparent 100%),
              linear-gradient(0deg, rgba(7,7,31,.6) 0%, transparent 50%);
}

/* Floating badge on photo */
.hero-badge-float {
  position: absolute; bottom: 48px; right: 40px;
  background: rgba(7,7,31,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(237,147,62,.25);
  border-radius: 16px;
  padding: 20px 24px;
  animation: floatBadge 5s ease-in-out infinite, up 1s ease .5s both;
  min-width: 220px;
}
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.badge-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.badge-pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: bpulse 2s infinite; }
@keyframes bpulse { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.4)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0)} }
.badge-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(253,254,255,.4); }
.badge-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.badge-metric { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 1px; color: var(--white); }
.badge-change { font-size: 12px; font-weight: 700; color: #22c55e; }
.badge-bar-track { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.badge-bar-fill { height: 100%; width: 100%; background: linear-gradient(90deg, var(--orange), var(--mid)); border-radius: 2px; animation: barFill 1.5s ease .8s both; }
@keyframes barFill { from{width:0} to{width:94%} }
.badge-sub { font-size: 10px; color: rgba(97,132,200,.6); margin-top: 6px; }

/* Orange accent bar vertical */
.hero-accent-bar {
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; background: linear-gradient(180deg, transparent, var(--orange), transparent);
  z-index: 3;
}

/* ══════════════════════════════════════════
   TICKER / MARQUEE
══════════════════════════════════════════ */
.ticker {
  position: relative; z-index: 2;
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 0;
  animation: tickerMove 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px;
  color: #fff;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   ABOUT / SPLIT IMAGE SECTION
══════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.about-img-col { position: relative; overflow: hidden; }
.about-img-col img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.75) saturate(.85);
  transition: transform 8s ease;
}
.about-img-col:hover img { transform: scale(1.04); }

/* Orange diagonal overlay on image */
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(237,147,62,.15) 0%, rgba(0,6,135,.4) 100%);
}

.about-img-tag {
  position: absolute; top: 40px; left: 40px;
  background: var(--orange);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 4px;
}

.about-img-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(0deg, rgba(7,7,31,.95) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.about-img-caption { font-size: 13px; color: rgba(253,254,255,.5); max-width: 200px; line-height: 1.5; }
.about-img-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 1; letter-spacing: 1px;
  color: var(--orange);
}

.about-content {
  background: var(--navy);
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.about-content::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(237,147,62,.08);
}
.about-content::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(237,147,62,.06);
}

.about-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.about-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 4.5vw, 64px);
  letter-spacing: 1.5px; line-height: .95;
  color: var(--white); margin-bottom: 28px;
}
.about-title span { color: var(--orange); }

.about-text { font-size: 15px; line-height: 1.85; color: rgba(253,254,255,.55); margin-bottom: 40px; max-width: 420px; }

.about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.about-feat {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(97,132,200,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  transition: all .25s;
}
.about-feat:hover { border-color: rgba(237,147,62,.25); background: rgba(237,147,62,.04); transform: translateX(6px); }
.about-feat-icon { font-size: 18px; }
.about-feat-text { font-size: 14px; font-weight: 600; color: var(--white); }
.about-feat-sub { font-size: 12px; color: rgba(97,132,200,.7); }

/* ══════════════════════════════════════════
   SERVICES — EDITORIAL GRID
══════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: 'SERVICIOS';
  position: absolute; top: 40px; right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px; letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(97,132,200,.04);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.services-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  max-width: 1200px; margin: 0 auto 64px; padding: 0 48px;
}
.services-hdr-left {}
.services-hdr-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.services-hdr-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.services-hdr-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5.5vw, 80px);
  letter-spacing: 2px; line-height: .9;
  color: var(--white);
}
.services-hdr-title em { color: var(--orange); font-style: normal; }
.services-hdr-text { font-size: 14px; color: rgba(253,254,255,.4); line-height: 1.8; max-width: 300px; }

/* Bento-style service grid */
.svc-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.svc-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(97,132,200,.12);
  border-radius: 16px;
  padding: 36px;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s;
  border-radius: 16px;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(237,147,62,.2); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.svc-card:hover::before { opacity: 1; }

.svc-card.c1 { grid-column: span 5; background: linear-gradient(135deg, rgba(19,18,142,.5), rgba(0,6,135,.3)); }
.svc-card.c1::before { background: linear-gradient(135deg, rgba(237,147,62,.06), transparent); }
.svc-card.c2 { grid-column: span 4; }
.svc-card.c3 { grid-column: span 3; }
.svc-card.c4 { grid-column: span 3; }
.svc-card.c5 { grid-column: span 4; }
.svc-card.c6 { grid-column: span 5; background: rgba(237,147,62,.06); border-color: rgba(237,147,62,.15); }

.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  color: rgba(97,132,200,.4); margin-bottom: 24px;
}
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 20px;
}
.ic-orange { background: rgba(237,147,62,.12); border: 1px solid rgba(237,147,62,.2); }
.ic-blue   { background: rgba(97,132,200,.1);  border: 1px solid rgba(97,132,200,.2); }
.ic-navy   { background: rgba(0,6,135,.3);     border: 1px solid rgba(97,132,200,.15); }

.svc-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1px; line-height: 1;
  color: var(--white); margin-bottom: 10px;
}
.svc-card p { font-size: 13px; color: rgba(253,254,255,.45); line-height: 1.75; }
.svc-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(237,147,62,.25);
  display: grid; place-items: center;
  color: var(--orange); font-size: 14px;
  transition: all .25s;
}
.svc-card:hover .svc-arrow { background: var(--orange); color: #fff; border-color: var(--orange); }

/* large stat in featured card */
.svc-big-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; letter-spacing: 2px; line-height: 1;
  color: var(--white); margin: 16px 0 4px;
}
.svc-big-stat em { color: var(--orange); font-style: normal; }
.svc-stat-label { font-size: 12px; color: rgba(97,132,200,.6); text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════════════
   PHOTO GALLERY STRIP
══════════════════════════════════════════ */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 420px;
  overflow: hidden;
}
.gallery-col { position: relative; overflow: hidden; }
.gallery-col img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.65) saturate(.7);
  transition: transform .7s ease, filter .7s ease;
}
.gallery-col:hover img { transform: scale(1.06); filter: brightness(.8) saturate(.9); }
.gallery-col-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,7,31,.7) 0%, transparent 60%);
}
.gallery-col::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px; background: rgba(237,147,62,.2);
}
.gallery-label {
  position: absolute; bottom: 24px; left: 24px;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 1.5px;
  color: rgba(253,254,255,.7);
  display: flex; align-items: center; gap: 8px;
}
.gallery-label::before { content: ''; width: 16px; height: 1px; background: var(--orange); }

/* ══════════════════════════════════════════
   PLATFORM / WEBAPP
══════════════════════════════════════════ */
.platform {
  background: var(--navy);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.platform::after {
  content: '';
  position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(237,147,62,.06);
}

.platform-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.platform-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.platform-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.platform-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: 2px; line-height: .95;
  color: var(--white); margin-bottom: 20px;
}
.platform-title span { color: var(--orange); }
.platform-text { font-size: 15px; line-height: 1.85; color: rgba(253,254,255,.5); margin-bottom: 44px; max-width: 440px; }

.platform-feats { display: flex; flex-direction: column; gap: 1px; }
.plat-feat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(97,132,200,.1);
  transition: all .2s;
  cursor: default;
}
.plat-feat:first-child { border-top: 1px solid rgba(97,132,200,.1); }
.plat-feat:hover { padding-left: 8px; }
.plat-feat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  color: var(--orange); min-width: 28px; padding-top: 2px;
}
.plat-feat-body h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.plat-feat-body p { font-size: 13px; color: rgba(97,132,200,.7); line-height: 1.6; }

/* App mockup */
.app-mockup {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(97,132,200,.2);
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 60px rgba(0,6,135,.4);
  position: relative;
}
.app-mockup::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(237,147,62,.2), rgba(97,132,200,.1), transparent);
  z-index: -1;
}
.mock-bar {
  background: rgba(0,6,135,.7);
  border-bottom: 1px solid rgba(97,132,200,.15);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.md-r{background:#ff5f57;} .md-y{background:#febc2e;} .md-g{background:#28c840;}
.mock-url { flex: 1; text-align: center; background: rgba(255,255,255,.05); border-radius: 5px; padding: 4px 12px; font-size: 10px; color: rgba(97,132,200,.6); margin: 0 12px; }

.mock-body { background: rgba(7,7,31,.97); }
.mock-tabs { background: rgba(0,6,135,.3); border-bottom: 1px solid rgba(97,132,200,.1); display: flex; padding: 8px; gap: 2px; }
.mock-tab { flex: 1; text-align: center; padding: 8px; font-size: 11px; color: rgba(97,132,200,.5); border-radius: 6px; cursor: pointer; transition: all .2s; font-weight: 600; }
.mock-tab.on { background: rgba(237,147,62,.15); color: var(--orange); }

.mock-content { padding: 20px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.mk { background: rgba(255,255,255,.03); border: 1px solid rgba(97,132,200,.1); border-radius: 10px; padding: 12px; }
.mk::after { display: block; content: ''; height: 2px; margin-top: 8px; border-radius: 2px; }
.mk:nth-child(1)::after { background: var(--orange); }
.mk:nth-child(2)::after { background: var(--mid); }
.mk:nth-child(3)::after { background: #22c55e; }
.mk-v { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .5px; color: var(--white); }
.mk-l { font-size: 9px; color: rgba(97,132,200,.6); margin-top: 2px; text-transform: uppercase; letter-spacing: .8px; }

.mock-chart { display: flex; align-items: flex-end; gap: 4px; height: 60px; margin-bottom: 16px; }
.mc-bar { flex: 1; border-radius: 3px 3px 0 0; }

.mock-rows { display: flex; flex-direction: column; gap: 6px; }
.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; background: rgba(255,255,255,.02);
  border: 1px solid rgba(97,132,200,.08); border-radius: 8px;
  transition: all .2s;
}
.mock-row:hover { background: rgba(237,147,62,.04); border-color: rgba(237,147,62,.12); }
.mr-av {
  width: 26px; height: 26px; border-radius: 7px;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 700; flex-shrink: 0;
}
.mr-info { flex: 1; }
.mr-name { font-size: 11px; font-weight: 600; color: var(--white); }
.mr-unit { font-size: 9px; color: rgba(97,132,200,.6); }
.mr-amt { font-size: 11px; font-weight: 700; color: var(--white); font-family: 'Bebas Neue', sans-serif; letter-spacing: .5px; }
.mr-status { font-size: 8px; padding: 2px 8px; border-radius: 100px; font-weight: 700; letter-spacing: .5px; }
.s-ok  { background: rgba(34,197,94,.1); color: #22c55e; }
.s-pnd { background: rgba(251,191,36,.1); color: #fbbf24; }
.s-lat { background: rgba(248,113,113,.1); color: #f87171; }

/* ══════════════════════════════════════════
   CTA FULL-BLEED
══════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  min-height: 500px;
  display: flex; align-items: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
  filter: brightness(.2) saturate(.5);
  transform: scale(1.02);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,6,135,.85) 0%, rgba(7,7,31,.7) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5.5vw, 80px);
  letter-spacing: 2px; line-height: .9;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title span { color: var(--orange); }
.cta-sub { font-size: 15px; color: rgba(253,254,255,.5); line-height: 1.75; max-width: 480px; }
.cta-right { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
}
.contact-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.contact-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.contact-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 4.5vw, 64px);
  letter-spacing: 2px; line-height: .95;
  color: var(--white); margin-bottom: 20px;
}
.contact-title span { color: var(--orange); }
.contact-text { font-size: 15px; color: rgba(253,254,255,.5); line-height: 1.8; margin-bottom: 44px; }

.contact-details { display: flex; flex-direction: column; gap: 2px; }
.cd {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(97,132,200,.1);
  transition: all .2s;
}
.cd:first-child { border-top: 1px solid rgba(97,132,200,.1); }
.cd:hover { padding-left: 28px; background: rgba(237,147,62,.03); }
.cd-icon { font-size: 16px; padding-top: 1px; min-width: 24px; }
.cd h5 { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(97,132,200,.6); margin-bottom: 3px; }
.cd p { font-size: 14px; color: var(--white); }
.cd a { color: var(--orange); text-decoration: none; }
.cd a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(97,132,200,.12);
  border-radius: 20px;
  padding: 44px;
  position: relative; overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--mid), transparent);
}

.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1.5px; color: var(--white); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: rgba(97,132,200,.6); margin-bottom: 32px; }

.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(97,132,200,.6); margin-bottom: 8px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(97,132,200,.15);
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; font-family: 'Manrope', sans-serif; color: var(--white);
  outline: none; transition: all .2s; -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(97,132,200,.3); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: rgba(237,147,62,.4); background: rgba(237,147,62,.03); box-shadow: 0 0 0 3px rgba(237,147,62,.08); }
.fg textarea { resize: vertical; min-height: 100px; }
.fg select option { background: #07071f; color: var(--white); }

.f-btn {
  width: 100%; padding: 15px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 8px; font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px;
  cursor: pointer; transition: all .25s; margin-top: 6px;
  box-shadow: 0 6px 24px rgba(237,147,62,.3);
}
.f-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(237,147,62,.45); }
.f-btn:disabled { cursor: wait; opacity: 0.9; transform: none; }

.form-status {
  margin: 10px 0 0;
  min-height: 1.25em;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(97,132,200,.75);
}
.form-status.error { color: #f87171; }
.form-status.ok { color: #86efac; }

.form-recaptcha-wrap {
  margin: 6px 0 4px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-recaptcha-note {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(97,132,200,.45);
}
.form-recaptcha-note a {
  color: rgba(237,147,62,.75);
  text-decoration: none;
}
.form-recaptcha-note a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #000;
  border-top: 1px solid rgba(97,132,200,.1);
}
.footer-top {
  max-width: 1200px; margin: 0 auto; padding: 60px 48px 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand p { font-size: 13px; color: rgba(97,132,200,.5); line-height: 1.8; margin-top: 16px; max-width: 260px; }
.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 2px;
  color: rgba(253,254,255,.4); margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 13px; color: rgba(253,254,255,.45); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 48px 36px;
  border-top: 1px solid rgba(97,132,200,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(97,132,200,.35); }
.footer-pr { font-size: 12px; color: rgba(97,132,200,.35); display: flex; align-items: center; gap: 6px; }
.footer-pr span { color: var(--orange); }

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-r.in { opacity: 1; transform: none; }

@keyframes up { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Sin blur en el header con menú abierto: WebKit recorta el panel .nav-menu fijo al alto del nav (~68px). */
  nav.scrolled.nav-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(7, 7, 31, 0.98);
  }
  nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-right { position: relative; z-index: 502; gap: 0; }
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px 20px 32px;
    background: rgba(7,7,31,.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(97,132,200,.12);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s cubic-bezier(.16,1,.3,1), visibility .35s;
  }
  nav.nav-open .nav-menu {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-menu .nav-link {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
  }
  .nav-menu .nav-btn {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    padding: 14px 22px;
  }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { clip-path: none; padding: 120px 24px 60px; }
  .hero-right { height: 300px; }
  .hero-badge-float { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-img-col { height: 300px; }
  .about-content { padding: 48px 24px; }
  .svc-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .svc-card.c1,.svc-card.c2,.svc-card.c3,.svc-card.c4,.svc-card.c5,.svc-card.c6 { grid-column: span 12; }
  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-col { height: 200px; }
  .platform-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .cta-content { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 20px 24px; }
  .services-hdr { flex-direction: column; gap: 24px; padding: 0 24px; }
  .fgrid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   WHY INTEGRALIS
══════════════════════════════════════════ */
.why {
  background: var(--ink);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.why::before {
  content: 'WHY';
  position: absolute; top: 20px; left: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px; letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(97,132,200,.04);
  pointer-events: none; user-select: none;
}
.why-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.why-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 72px;
}
.why-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.why-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: 2px; line-height: .92;
  color: var(--white);
}
.why-title span { color: var(--orange); }
.why-intro { font-size: 15px; color: rgba(253,254,255,.5); line-height: 1.8; max-width: 420px; align-self: end; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.why-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(97,132,200,.1);
  border-radius: 0;
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
.why-card:first-child { border-radius: 16px 0 0 16px; }
.why-card:last-child  { border-radius: 0 16px 16px 0; }
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.why-card:hover { background: rgba(237,147,62,.04); border-color: rgba(237,147,62,.18); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.why-card:hover::after { transform: scaleX(1); }

.why-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.why-card-num::after { content: ''; flex: 1; height: 1px; background: rgba(237,147,62,.2); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 24px;
  margin-bottom: 22px;
  background: rgba(237,147,62,.08);
  border: 1px solid rgba(237,147,62,.15);
}
.why-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1px; line-height: 1;
  color: var(--white); margin-bottom: 14px;
}
.why-card p { font-size: 14px; color: rgba(253,254,255,.45); line-height: 1.8; }
.why-vs {
  display: flex; gap: 10px; margin-top: 20px;
  flex-wrap: wrap;
}
.why-vs-bad {
  font-size: 11px; font-weight: 600;
  color: rgba(248,113,113,.7);
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.15);
  border-radius: 100px; padding: 4px 12px;
  text-decoration: line-through;
}
.why-vs-good {
  font-size: 11px; font-weight: 600;
  color: var(--orange);
  background: rgba(237,147,62,.08);
  border: 1px solid rgba(237,147,62,.2);
  border-radius: 100px; padding: 4px 12px;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq {
  background: var(--navy);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(237,147,62,.05);
}
.faq::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  border: 1px solid rgba(97,132,200,.06);
}
.faq-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.faq-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 4.5vw, 64px);
  letter-spacing: 2px; line-height: .92;
  color: var(--white); margin-bottom: 20px;
}
.faq-title span { color: var(--orange); }
.faq-sub { font-size: 14px; color: rgba(253,254,255,.45); line-height: 1.8; margin-bottom: 36px; }
.faq-cta-small {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--orange);
  text-decoration: none; letter-spacing: .3px;
  transition: gap .2s;
}
.faq-cta-small:hover { gap: 14px; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid rgba(97,132,200,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(237,147,62,.25); background: rgba(237,147,62,.03); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  cursor: pointer; gap: 16px;
  transition: background .2s;
  font: inherit; text-align: left;
  color: inherit;
  background: none;
  border: none;
}
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-q-text { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.4; }
.faq-item.open .faq-q-text { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  border: 1px solid rgba(97,132,200,.2);
  display: grid; place-items: center;
  font-size: 16px; color: rgba(97,132,200,.7);
  transition: all .3s; font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .4s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }
.faq-a p { font-size: 14px; color: rgba(253,254,255,.55); line-height: 1.85; border-top: 1px solid rgba(97,132,200,.1); padding-top: 18px; }

/* ══════════════════════════════════════════
   BLOG / RECURSOS
══════════════════════════════════════════ */
.blog {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
}
.blog-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.blog-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.blog-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.blog-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.5vw, 60px);
  letter-spacing: 2px; line-height: .92;
  color: var(--white);
}
.blog-title span { color: var(--orange); }
.blog-see-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--orange);
  text-decoration: none; white-space: nowrap; padding-bottom: 8px;
  transition: gap .2s;
}
.blog-see-all:hover { gap: 14px; }

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}
.blog-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(97,132,200,.1);
  background: rgba(255,255,255,.02);
  transition: all .4s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(237,147,62,.2); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.blog-card-img {
  position: relative; overflow: hidden;
  height: 200px;
}
.blog-card.featured .blog-card-img { height: 260px; }
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.6) saturate(.7);
  transition: transform .6s ease, filter .6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); filter: brightness(.75) saturate(.85); }
.blog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,7,31,.85) 0%, rgba(7,7,31,.1) 60%);
}
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--orange); color: #fff;
  padding: 4px 12px; border-radius: 100px;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 11px; color: rgba(97,132,200,.5); letter-spacing: .5px; margin-bottom: 10px; }
.blog-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .8px; line-height: 1.1;
  color: var(--white); margin-bottom: 10px;
  transition: color .2s;
}
.blog-card.featured h3 { font-size: 26px; }
.blog-card:hover h3 { color: var(--orange); }
.blog-card p { font-size: 13px; color: rgba(253,254,255,.4); line-height: 1.75; flex: 1; }
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--orange);
  margin-top: 16px; transition: gap .2s;
}
.blog-card:hover .blog-read { gap: 10px; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.social-float {
  position: fixed;
  bottom: 28px; right: 0;
  z-index: 9999;
  display: flex; flex-direction: column;
  gap: 10px; align-items: flex-end;
}
.social-item {
  display: flex; align-items: center;
  height: 48px;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.social-item:hover { transform: translateX(-4px); box-shadow: 0 6px 24px rgba(0,0,0,.4); }
.social-label {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #fff; white-space: nowrap;
  padding: 0 14px 0 18px;
  line-height: 48px;
}
.social-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.social-icon svg {
  width: 22px; height: 22px;
  display: block; flex-shrink: 0;
}
.social-item.wa { background: #25D366; animation: waPulse 2.5s ease-in-out infinite; }
.social-item.ig { background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-item.fb { background: #1877F2; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,.6), 0 0 0 6px rgba(37,211,102,.1); }
}

/* ══════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card:first-child { border-radius: 16px 16px 0 0; }
  .why-card:last-child  { border-radius: 0 0 16px 16px; }
  .why-top { grid-template-columns: 1fr; gap: 20px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .why-inner, .blog-inner { padding: 0 24px; }
  .faq-inner { padding: 0 24px; }
  .social-float { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-l, .reveal-r {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-menu { transition: none; }
  .nav-toggle-bar { transition: none; }
  .nav-backdrop { transition: none; }
}
