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

:root {
  --navy:    #0b1120;
  --navy2:   #111827;
  --navy3:   #1e2d45;
  --blue:    #2563eb;
  --blue-h:  #1d4ed8;
  --cyan:    #06b6d4;
  --cyan-h:  #0891b2;
  --white:   #ffffff;
  --light:   #f0f6ff;
  --muted:   #94a3b8;
  --text:    #1e293b;
  --text2:   #475569;
  --border:  #e2e8f0;
  --radius:  12px;
  --radius2: 20px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --shadow2: 0 8px 40px rgba(37,99,235,.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ─── UTILITIES ─── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.badge      { display: inline-flex; align-items: center; gap: 6px; background: rgba(6,182,212,.12); color: var(--cyan); border: 1px solid rgba(6,182,212,.3); border-radius: 100px; padding: 5px 14px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.section-title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.section-sub   { color: var(--text2); font-size: 1.05rem; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 8px; font-size: .95rem; font-weight: 600; padding: 14px 28px; cursor: pointer; transition: all .2s; border: 2px solid transparent; white-space: nowrap; }
.btn-primary  { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-h); border-color: var(--blue-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy3); transform: translateY(-1px); box-shadow: var(--shadow2); }
.btn-cyan     { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.btn-cyan:hover { background: var(--cyan-h); color: var(--white); transform: translateY(-1px); }

/* ─── NAVBAR ─── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; transition: background .3s, box-shadow .3s; }
.navbar.scrolled { background: rgba(11,17,32,.96); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--blue), var(--cyan)); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-weight: 900; color: white; font-size: 1rem; flex-shrink: 0; }
.logo-text { color: white; font-size: 1.05rem; font-weight: 700; line-height: 1.1; }
.logo-text span { display: block; font-size: .68rem; font-weight: 400; color: var(--cyan); letter-spacing: .06em; text-transform: uppercase; }
.navbar-phone { display: flex; align-items: center; gap: 8px; color: white; font-weight: 600; font-size: .9rem; }
.navbar-phone svg { color: var(--cyan); }

/* ─── HERO ─── */
.hero { min-height: 100vh; background: var(--navy); position: relative; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,.22) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(6,182,212,.12) 0%, transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-title { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 22px; }
.hero-title em { font-style: normal; background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { color: #94a3b8; font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .85rem; font-weight: 500; }
.trust-item svg { color: var(--cyan); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.h-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px 18px; transition: transform .25s, border-color .25s; }
.h-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.4); }
.h-card-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1.3rem; }
.h-card h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.h-card p  { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.bg-blue-faint  { background: rgba(37,99,235,.18); }
.bg-cyan-faint  { background: rgba(6,182,212,.18); }
.bg-purple-faint{ background: rgba(139,92,246,.18); }
.bg-green-faint { background: rgba(16,185,129,.18); }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--navy2); border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); padding: 32px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num  { font-size: 2rem; font-weight: 900; background: linear-gradient(90deg, var(--blue), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label{ color: var(--muted); font-size: .82rem; margin-top: 6px; }

/* ─── SERVICES ─── */
.services { padding: 96px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius2); padding: 32px 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.service-card::after { content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.svc-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-text  { color: var(--text2); font-size: .9rem; line-height: 1.65; }
.svc-list  { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.svc-list li { display: flex; align-items: center; gap: 8px; color: var(--text2); font-size: .88rem; }
.svc-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ─── SOFTWARE ─── */
.software { padding: 96px 0; background: var(--navy); }
.software .section-title { color: var(--white); }
.software .section-sub   { color: var(--muted); }
.sw-grid { display: grid; gap: 32px; }
.sw-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius2); padding: 40px 36px; display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start; transition: border-color .25s, background .25s; }
.sw-card:hover { background: rgba(255,255,255,.07); border-color: rgba(37,99,235,.5); }
.sw-icon-wrap { width: 72px; height: 72px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; flex-shrink: 0; }
.sw-badge { display: inline-flex; background: rgba(37,99,235,.2); color: #93c5fd; border: 1px solid rgba(37,99,235,.3); border-radius: 6px; font-size: .72rem; font-weight: 700; padding: 3px 10px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px; }
.sw-title { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.sw-desc  { color: #94a3b8; font-size: .95rem; line-height: 1.7; margin-bottom: 22px; }
.sw-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sw-feat { display: flex; align-items: flex-start; gap: 10px; }
.sw-feat-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(6,182,212,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.sw-feat-icon svg { width: 10px; height: 10px; color: var(--cyan); }
.sw-feat-text { color: #cbd5e1; font-size: .85rem; line-height: 1.4; }

/* ─── ABOUT ─── */
.about { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-text { color: var(--text2); font-size: 1rem; line-height: 1.75; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--light); border-radius: var(--radius); }
.value-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.value-label { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.value-sub   { font-size: .8rem; color: var(--text2); }
.about-visual { position: relative; }
.about-main-card { background: var(--navy); border-radius: var(--radius2); padding: 40px 36px; color: white; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.exp-number { font-size: 5rem; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--blue), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.exp-label  { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 24px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: 7px 16px; font-size: .82rem; color: #cbd5e1; }
.contact-mini { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 12px; }
.contact-line { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #94a3b8; }
.contact-line svg { color: var(--cyan); flex-shrink: 0; }
.contact-line strong { color: white; }

/* ─── SUPPORT ─── */
.support { padding: 96px 0; background: var(--light); }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.support-card { background: var(--white); border-radius: var(--radius2); padding: 36px 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.support-card-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.support-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.support-card p  { color: var(--text2); font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.schedule-block { background: var(--light); border-radius: var(--radius); padding: 14px; text-align: center; }
.schedule-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.schedule-time  { font-size: .95rem; font-weight: 700; color: var(--navy); }

/* ─── CTA FINAL ─── */
.cta-final { padding: 96px 0; background: var(--navy); position: relative; overflow: hidden; }
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(37,99,235,.25) 0%, transparent 65%);
}
.cta-box { text-align: center; position: relative; max-width: 680px; margin: 0 auto; }
.cta-title { font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.cta-title em { font-style: normal; color: var(--cyan); }
.cta-sub  { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-contact-strip { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .88rem; }
.cta-contact-item svg { color: var(--cyan); }
.cta-contact-item strong { color: white; font-size: .95rem; }

/* ─── FOOTER ─── */
.footer { background: #060d18; border-top: 1px solid rgba(255,255,255,.06); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { color: #475569; font-size: .82rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #475569; font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .support-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .sw-card { grid-template-columns: 1fr; }
  .sw-features { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-ctas, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cta-contact-strip { flex-direction: column; align-items: center; gap: 16px; }
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
.whatsapp-tooltip {
  background: var(--navy);
  color: white;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-btn { animation: wa-pulse 2.4s infinite; }
.whatsapp-btn:hover { animation: none; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: .85rem;
  color: #94a3b8;
  line-height: 1.6;
}
.cookie-text strong { color: white; }
.cookie-text a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 7px;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover { background: var(--blue-h); }
.cookie-reject {
  background: transparent;
  color: #64748b;
  border: 1px solid #334155;
  border-radius: 7px;
  padding: 9px 16px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.cookie-reject:hover { color: #94a3b8; border-color: #475569; }
@media (max-width: 600px) {
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
}
