:root {
  --navy: #071a2b;
  --navy-2: #0c2941;
  --blue: #0a84ff;
  --cyan: #23c7d9;
  --green: #20c997;
  --text: #112334;
  --muted: #5f7182;
  --line: #dce7ef;
  --soft: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 26, 43, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(7, 26, 43, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark { display: inline-flex; align-items: flex-end; gap: 4px; height: 32px; }
.brand-mark span { display: block; width: 8px; border-radius: 10px 10px 3px 3px; background: linear-gradient(180deg, var(--cyan), var(--blue)); transform: skew(-18deg); }
.brand-mark span:nth-child(1) { height: 18px; }
.brand-mark span:nth-child(2) { height: 31px; }
.brand-mark span:nth-child(3) { height: 23px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 20px; letter-spacing: .12em; }
.brand-text small { margin-top: 6px; font-size: 9px; text-transform: uppercase; letter-spacing: .18em; opacity: .7; }
.menu { display: flex; align-items: center; gap: 31px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; }
.menu a:hover { color: var(--white); }
.menu-btn { display: none; background: none; border: 0; padding: 8px; }
.menu-btn span { width: 24px; height: 2px; margin: 5px; display: block; background: white; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 17px; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue), #0664d7); box-shadow: 0 14px 30px rgba(10,132,255,.28); }
.btn-outline { border: 1px solid rgba(255,255,255,.3); }
.btn-ghost { color: white; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
.btn-white { background: white; color: var(--navy); }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 16% 16%, rgba(10,132,255,.18), transparent 30%),
    linear-gradient(135deg, #061725 0%, #0a2237 55%, #071a2b 100%);
  padding: 168px 0 105px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35,199,217,.4), transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .45; }
.hero-glow-one { width: 420px; height: 420px; background: rgba(10,132,255,.13); right: -120px; top: 100px; }
.hero-glow-two { width: 260px; height: 260px; background: rgba(32,201,151,.1); left: 40%; bottom: -100px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 66px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #a9eaf0; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(32,201,151,.12); }
.hero h1 { font-size: clamp(44px, 5vw, 68px); line-height: 1.06; letter-spacing: -.045em; max-width: 700px; margin: 23px 0; }
.hero h1 span { color: #79dce5; }
.hero-copy > p { max-width: 610px; color: rgba(255,255,255,.68); font-size: 17px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.hero-trust { margin-top: 44px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); display: flex; gap: 34px; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 14px; }
.hero-trust span { font-size: 11px; color: rgba(255,255,255,.48); }

.hero-visual { position: relative; }
.dashboard-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: #f7fbfd; box-shadow: 0 35px 100px rgba(0,0,0,.35); transform: perspective(1100px) rotateY(-4deg) rotateX(2deg); }
.dashboard-top { height: 47px; background: #fff; border-bottom: 1px solid #e6edf2; display: flex; align-items: center; padding: 0 15px; gap: 20px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #cfdbe3; }
.dashboard-search { width: 40%; height: 9px; border-radius: 10px; background: #edf3f7; margin: auto; }
.dashboard-avatar { width: 24px; height: 24px; border-radius: 50%; background: #0a84ff; color: white; font-size: 8px; display: grid; place-items: center; }
.dashboard-body { min-height: 405px; display: flex; }
.dashboard-sidebar { width: 64px; padding: 22px 17px; background: #0a2237; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.side-logo { width: 26px; height: 26px; border: 2px solid #25c7d9; transform: rotate(45deg); margin-bottom: 12px; }
.dashboard-sidebar span { width: 24px; height: 7px; border-radius: 10px; background: rgba(255,255,255,.16); }
.dashboard-sidebar span.active { background: #25c7d9; }
.dashboard-main { flex: 1; padding: 24px; }
.dashboard-heading { display: flex; justify-content: space-between; align-items: center; }
.dashboard-heading small { color: #7c8c98; font-size: 8px; }
.dashboard-heading h3 { color: #183247; font-size: 17px; margin: 2px 0; }
.dashboard-heading button { border: 0; border-radius: 7px; color: white; background: #0a84ff; padding: 8px 11px; font-size: 8px; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin-top: 21px; }
.stats-grid article { padding: 14px; border-radius: 10px; background: white; box-shadow: 0 8px 25px rgba(7,26,43,.06); display: flex; flex-direction: column; }
.stats-grid span { font-size: 8px; color: #768a99; }
.stats-grid strong { color: #183247; font-size: 21px; }
.stats-grid em { font-size: 7px; color: #22aa7d; font-style: normal; }
.dashboard-lower { display: grid; grid-template-columns: 1.2fr .8fr; gap: 11px; margin-top: 12px; }
.chart-card, .schedule-card { min-height: 210px; border-radius: 10px; padding: 14px; background: white; box-shadow: 0 8px 25px rgba(7,26,43,.06); }
.card-title { display: flex; justify-content: space-between; color: #183247; font-size: 8px; font-weight: 700; }
.card-title b { color: #8295a3; font-size: 7px; }
.bars { height: 132px; padding-top: 20px; display: flex; align-items: flex-end; justify-content: space-around; border-bottom: 1px solid #e9f0f4; }
.bars i { width: 11px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #23c7d9, #0a84ff); }
.days { display: flex; justify-content: space-around; color: #8b9ca8; font-size: 7px; padding-top: 5px; }
.appointment { display: flex; gap: 8px; align-items: center; padding: 15px 0; border-bottom: 1px solid #edf2f5; }
.appointment i { width: 7px; height: 7px; border-radius: 50%; background: #23c7d9; }
.appointment div { display: flex; flex-direction: column; }
.appointment strong { color: #1e3b50; font-size: 8px; }
.appointment span { color: #8193a0; font-size: 7px; }
.floating-card { position: absolute; z-index: 4; border: 1px solid rgba(255,255,255,.16); background: rgba(12,41,65,.92); backdrop-filter: blur(12px); box-shadow: 0 18px 50px rgba(0,0,0,.25); border-radius: 13px; }
.floating-one { right: -32px; top: -27px; padding: 13px 20px; display: flex; flex-direction: column; }
.floating-one span { font-size: 8px; color: rgba(255,255,255,.58); }
.floating-one strong { font-size: 19px; color: #76e2c2; }
.floating-two { left: -38px; bottom: -28px; padding: 13px 17px; display: flex; gap: 10px; align-items: center; }
.floating-two .check { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px; background: rgba(32,201,151,.16); color: #6de0bd; }
.floating-two div:last-child { display: flex; flex-direction: column; }
.floating-two strong { font-size: 9px; }
.floating-two span { font-size: 7px; color: rgba(255,255,255,.5); }

.logo-strip { border-bottom: 1px solid var(--line); background: #fff; }
.strip-content { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.strip-content span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.strip-content div { color: #8796a2; font-size: 15px; font-weight: 700; }

.section { padding: 110px 0; }
.section-head { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-tag { color: #0b8ba2; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.section-head h2, .solution-copy h2, .cta h2 { margin: 14px 0 16px; color: var(--navy); font-size: clamp(34px, 4vw, 50px); line-height: 1.15; letter-spacing: -.035em; }
.section-head p, .solution-copy > p { color: var(--muted); font-size: 16px; }

.benefits { background: var(--soft); }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { padding: 34px; background: white; border: 1px solid #e3edf3; border-radius: 18px; transition: .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: #eaf8fb; color: #0b8ba2; font-weight: 800; }
.feature-card h3 { margin: 24px 0 10px; font-size: 20px; }
.feature-card p { color: var(--muted); font-size: 14px; }

.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.module-card { padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.module-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--navy); color: #72d8e3; font-size: 18px; }
.module-card h3 { margin: 18px 0 8px; font-size: 18px; }
.module-card p { color: var(--muted); font-size: 13px; margin: 0; }

.solution { background: #071a2b; color: white; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.solution-panel { min-height: 470px; position: relative; display: grid; place-items: center; border-radius: 24px; background: radial-gradient(circle at 50% 40%, rgba(35,199,217,.16), transparent 48%), #0b263c; border: 1px solid rgba(255,255,255,.08); }
.mini-screen { width: 78%; padding: 25px; border-radius: 16px; background: white; box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.mini-header { width: 38%; height: 12px; margin-bottom: 25px; border-radius: 10px; background: #dfeaf0; }
.mini-row { height: 55px; display: grid; grid-template-columns: 32px 1fr 55px; align-items: center; gap: 13px; border-bottom: 1px solid #edf2f5; }
.mini-row i { width: 31px; height: 31px; border-radius: 50%; background: #e7f7f9; }
.mini-row span { width: 72%; height: 8px; border-radius: 10px; background: #e7edf1; }
.mini-row b { height: 23px; border-radius: 8px; background: #dff7ef; }
.security-card { position: absolute; left: 6%; bottom: 8%; display: flex; align-items: center; gap: 13px; padding: 17px 20px; border-radius: 13px; color: var(--navy); background: white; box-shadow: var(--shadow); }
.security-card > div { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: white; background: var(--green); }
.security-card span { display: flex; flex-direction: column; color: var(--muted); font-size: 9px; }
.security-card strong { color: var(--text); font-size: 11px; }
.solution-copy h2 { color: white; }
.solution-copy > p { color: rgba(255,255,255,.62); }
.solution-copy ul { list-style: none; padding: 0; margin: 28px 0; }
.solution-copy li { margin: 13px 0; color: rgba(255,255,255,.78); font-size: 14px; }
.solution-copy li span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 10px; border-radius: 50%; background: rgba(32,201,151,.16); color: #65dfba; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: #7ce2eb; font-weight: 700; font-size: 14px; }

.cta { padding: 85px 0; background: var(--soft); }
.cta-box { border-radius: 24px; padding: 55px 60px; color: white; background: linear-gradient(135deg, #087fa4, #0a5bd7); display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: center; box-shadow: 0 25px 70px rgba(10,91,215,.2); }
.cta .section-tag.light { color: #b9f2f6; }
.cta h2 { color: white; margin-top: 12px; font-size: 37px; }
.cta p { margin-bottom: 0; color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.phone-link { color: white; font-weight: 800; letter-spacing: .04em; }

footer { background: #061522; color: white; padding: 58px 0 25px; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.3fr .7fr; gap: 50px; align-items: center; }
.footer-grid > p { color: rgba(255,255,255,.5); font-size: 13px; max-width: 420px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; }
.footer-contact span { color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.footer-contact a { margin-top: 6px; font-weight: 800; }
.copyright { margin-top: 40px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.35); font-size: 11px; }

.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 16px 35px rgba(37,211,102,.34); transition: .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 30px; fill: white; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .menu-btn { display: block; }
  .menu { position: absolute; left: 20px; right: 20px; top: 88px; padding: 24px; border-radius: 16px; background: #0b263c; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .25s ease; }
  .menu.open { opacity: 1; pointer-events: auto; transform: none; }
  .hero { padding-top: 135px; }
  .hero-grid, .solution-grid, .cta-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 75px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(680px, 95%); margin: auto; }
  .benefit-grid, .module-grid { grid-template-columns: repeat(2,1fr); }
  .strip-content { flex-wrap: wrap; justify-content: center; padding: 26px 0; }
  .solution-copy { order: -1; }
  .cta-actions { align-items: flex-start; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding: 125px 0 85px; }
  .hero h1 { font-size: 42px; }
  .hero-actions, .hero-trust { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 16px; text-align: left; }
  .dashboard-shell { transform: none; }
  .dashboard-sidebar { display: none; }
  .dashboard-main { padding: 14px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article:nth-child(3) { display: none; }
  .dashboard-lower { grid-template-columns: 1fr; }
  .schedule-card { display: none; }
  .floating-card { display: none; }
  .section { padding: 78px 0; }
  .benefit-grid, .module-grid { grid-template-columns: 1fr; }
  .solution-grid { gap: 45px; }
  .solution-panel { min-height: 390px; }
  .mini-screen { width: 90%; }
  .security-card { left: 4%; right: 4%; bottom: 5%; }
  .cta-box { padding: 38px 25px; }
  .cta h2 { font-size: 31px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-contact { align-items: flex-start; }
}
