:root {
  --primary: #39358f;
  --primary-dark: #28246e;
  --cyan: #00a8d4;
  --pink: #e62c83;
  --yellow: #f3d632;
  --orange: #ef6f2c;
  --ink: #202124;
  --muted: #687078;
  --surface: #f7f8fb;
  --white: #fff;
  --border: #e7e9ef;
  --shadow: 0 20px 55px rgba(38, 39, 87, .10);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.top-strip {
  background: var(--primary);
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  padding: .42rem 0;
}
.top-strip a:hover { color: #fff; }
.navbar {
  min-height: 78px;
  z-index: 1000;
}
.brand-logo {
  width: 200px;
  height: 94px;
  object-fit: contain;
}
.nav-link {
  color: #4b4f56 !important;
  font-size: .88rem;
  font-weight: 600;
  padding-left: .8rem !important;
  padding-right: .8rem !important;
}
.nav-link:hover { color: var(--primary) !important; }
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(57,53,143,.20);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-outline-custom {
  border: 1px solid #d9dbe5;
  color: var(--ink);
  background: rgba(255,255,255,.65);
  font-weight: 700;
}
.btn-outline-custom:hover { border-color: var(--primary); color: var(--primary); }
.btn-dark-custom {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.btn-dark-custom:hover { background: var(--primary); color: #fff; }
.btn-light-custom { background: #fff; color: var(--primary); font-weight: 800; }
.btn-light-custom:hover { background: #f2f3ff; color: var(--primary); }

.hero-section {
  position: relative;
  background:
    radial-gradient(circle at 75% 35%, rgba(57,53,143,.10), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fafbff 100%);
}
.min-vh-hero { min-height: calc(100vh - 115px); padding: 70px 0 90px; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.hero-glow-one {
  width: 280px; height: 280px; right: -130px; top: 70px;
  background: rgba(0,168,212,.08);
}
.hero-glow-two {
  width: 180px; height: 180px; left: -80px; bottom: 60px;
  background: rgba(230,44,131,.07);
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--primary);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 13px 0 0 var(--cyan), 26px 0 0 var(--yellow);
  margin-right: 20px;
}
.display-title {
  font-family: "Google Sans", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .98;
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 750px;
  margin: 25px 0;
}
.display-title span {
  display: block;
  color: var(--primary);
}
.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 46px;
}
.proof-item { display: flex; flex-direction: column; }
.proof-item strong { font-size: 1.3rem; color: var(--primary); }
.proof-item span { color: #747a82; font-size: .72rem; margin-top: 2px; }
.proof-divider { width: 1px; height: 34px; background: #dfe1e8; }

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}
.printer-scene {
  width: min(440px, 75%);
  position: relative;
  transform: translateY(8px);
  filter: drop-shadow(0 30px 25px rgba(31,31,73,.15));
}
.printer-top {
  height: 85px;
  width: 72%;
  margin: 0 auto -2px;
  background: #eceef4;
  border: 1px solid #d8dbe6;
  border-bottom: none;
  border-radius: 24px 24px 8px 8px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.printer-display { width: 52px; height: 22px; border-radius: 7px; background: #d8dbe7; }
.printer-button { width: 15px; height: 15px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(0,168,212,.10); }
.printer-body {
  position: relative;
  background: linear-gradient(145deg, #f8f9fb, #dfe2ea);
  border: 1px solid #d2d5df;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
}
.paper-slot {
  position: absolute;
  top: 20px; left: 12%; width: 76%; height: 65px;
  border-radius: 10px;
  background: #cfd3df;
  padding: 7px;
}
.paper-sheet {
  width: 100%; height: 100%; border-radius: 6px; background: #fff;
  transform: translateY(-13px);
  box-shadow: 0 8px 10px rgba(0,0,0,.08);
}
.printer-front {
  position: absolute; left: 8%; right: 8%; bottom: 18px;
  background: #d9dce5;
  border-radius: 10px;
  padding: 18px 20px;
}
.brand-mark { font-weight: 900; color: var(--primary); font-size: 1.05rem; }
.printer-line { height: 4px; width: 72%; border-radius: 4px; background: #b8bdca; margin-top: 12px; }
.printer-line.short { width: 45%; margin-top: 7px; }
.paper-output {
  position: absolute;
  z-index: -1;
  width: 55%; height: 105px; left: 22%; bottom: -68px;
  background: #fff; border: 1px solid #e2e3e9;
  transform: rotate(1deg);
  box-shadow: 0 12px 20px rgba(0,0,0,.08);
}
.paper-content { padding: 20px; }
.paper-content span { display:block; height: 4px; background: #dfe2e9; margin: 8px 0; border-radius: 4px; }
.paper-content span:first-child { width: 65%; }
.paper-content span:nth-child(2) { width: 90%; }
.paper-content span:nth-child(3) { width: 48%; }
.printer-shadow {
  position: absolute; width: 100%; height: 35px; bottom: -28px; left: 0;
  background: rgba(39,34,102,.18); filter: blur(17px); border-radius: 50%;
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(220,222,233,.9);
  box-shadow: 0 18px 45px rgba(34,35,79,.12);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 14px 17px;
  animation: float 4.8s ease-in-out infinite;
}
.floating-card i { font-size: 1.3rem; color: var(--primary); }
.floating-card strong, .floating-card small { display:block; }
.floating-card strong { font-size: .85rem; }
.floating-card small { color: #7a7f88; font-size: .68rem; margin-top: 2px; }
.card-one { left: 3%; top: 16%; }
.card-two { right: 2%; bottom: 12%; animation-delay: -2s; }
.color-dot { position:absolute; border-radius:50%; }
.dot-cyan { width:18px;height:18px;background:var(--cyan);right:9%;top:20%; }
.dot-pink { width:11px;height:11px;background:var(--pink);left:10%;bottom:24%; }
.dot-yellow { width:25px;height:25px;background:var(--yellow);right:15%;top:62%; }

.section { padding: 110px 0; }
.section-light { background: var(--surface); }
.section-heading { max-width: 700px; }
.section-heading h2, .section-title {
  font-family: "Google Sans", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin: 15px 0;
}
.section-heading p, .section-text {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: .35s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.icon-box {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: grid; place-items:center;
  font-size: 1.35rem;
  margin-bottom: 28px;
}
.icon-purple { color: var(--primary); background: rgba(57,53,143,.10); }
.icon-cyan { color: #008bb2; background: rgba(0,168,212,.11); }
.icon-pink { color: #cc1f6e; background: rgba(230,44,131,.10); }
.icon-yellow { color: #aa8e00; background: rgba(243,214,50,.18); }
.service-number {
  position: absolute; right: 25px; top: 25px;
  color: #d9dbe2; font-size: .75rem; font-weight: 800;
}
.service-card h3 { font-size: 1.1rem; font-weight: 750; line-height: 1.3; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; min-height: 94px; }
.service-card a { color: var(--primary); font-size: .8rem; font-weight: 800; }
.service-card a i { margin-left: 5px; }

.benefits-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-card {
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: 26px; transition: .3s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display:grid; place-items:center; background:#f0efff; color:var(--primary);
  margin-bottom: 20px;
}
.benefit-card h3 { font-size: 1rem; font-weight: 750; }
.benefit-card p { margin:0; color:var(--muted); font-size:.82rem; line-height:1.65; }

.story-section { padding: 35px 0 110px; }
.story-panel {
  position:relative; overflow:hidden; border-radius: 32px;
  padding: 75px; background:
  radial-gradient(circle at 85% 20%, rgba(0,168,212,.22), transparent 24%),
  radial-gradient(circle at 15% 100%, rgba(230,44,131,.16), transparent 28%),
  linear-gradient(135deg, #2d2a78, #39358f);
}
.story-decoration {
  position:absolute; width:260px; height:260px; right:-80px; bottom:-90px;
  border:1px solid rgba(255,255,255,.18); border-radius:50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.035), 0 0 0 90px rgba(255,255,255,.02);
}
.section-kicker.light { color: #a9e9f8; }
.story-panel h2 { font-family:"Google Sans",sans-serif; font-size:clamp(2rem,4vw,3.5rem); letter-spacing:-.035em; line-height:1.05; margin:15px 0 22px; max-width:750px; }
.story-panel p { max-width:680px; line-height:1.8; }
.stats-card {
  background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.16);
  border-radius:24px; padding: 28px;
}
.stat { display:flex; justify-content:space-between; align-items:baseline; padding: 14px 0; border-bottom:1px solid rgba(255,255,255,.12); gap:15px; }
.stat:last-child { border-bottom:0; }
.stat strong { font-size:2rem; color:#fff; }
.stat span { font-size:.76rem; color:rgba(255,255,255,.72); text-align:right; }

.contact-card {
  height:100%; background:#fff; border:1px solid var(--border); border-radius:24px;
  padding:30px; box-shadow:0 15px 45px rgba(35,37,77,.06);
}
.contact-item { display:flex; gap:15px; padding:17px 0; border-bottom:1px solid #edf0f4; }
.contact-item:last-of-type { border-bottom:0; }
.contact-icon {
  width:42px; height:42px; flex:0 0 42px; border-radius:13px;
  background:#f0efff; color:var(--primary); display:grid; place-items:center;
}
.contact-item span { display:block; color:#8a9098; font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; font-weight:800; margin-bottom:4px; }
.contact-item strong { font-size:.88rem; line-height:1.55; }
.contact-item a:hover { color:var(--primary); }
.social-btn {
  width:42px; height:42px; border-radius:50%; background:#f1f2f6; color:#51555e;
  display:grid; place-items:center; transition:.25s ease;
}
.social-btn:hover { background:var(--primary); color:#fff; transform:translateY(-2px); }
.social-btn.whatsapp:hover { background:#25d366; }

.map-wrap { position:relative; height:100%; min-height:430px; border-radius:24px; overflow:hidden; box-shadow:0 15px 45px rgba(35,37,77,.08); }
.map-wrap iframe { width:100%; height:100%; min-height:430px; border:0; filter:saturate(.8); }
.map-overlay {
  position:absolute; left:18px; bottom:18px; right:18px;
  background:rgba(255,255,255,.94); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.8); border-radius:15px;
  padding:13px 16px; display:flex; align-items:center; justify-content:space-between;
  box-shadow:0 8px 30px rgba(0,0,0,.10); font-size:.78rem; font-weight:800; color:var(--primary);
}
.map-overlay span i { margin-right:6px; }

.cta-section { padding: 0 0 90px; }
.cta-panel {
  border-radius:28px; padding:55px 60px; display:flex; justify-content:space-between;
  align-items:center; gap:30px;
  background: linear-gradient(135deg, var(--primary), #4a45aa);
  box-shadow:0 25px 60px rgba(57,53,143,.20);
}
.cta-panel h2 { color:#fff; font-family:"Google Sans",sans-serif; font-size:clamp(1.8rem,3vw,2.8rem); line-height:1.08; letter-spacing:-.03em; max-width:720px; margin-top:14px; }

.footer { background:#17182a; color:#fff; }
.footer-logo { width:200px; height:100px; object-fit:contain; background:#fff; border-radius:7px; }
.footer p { color:rgba(255,255,255,.72); font-size:.78rem; }
.footer small { color:rgba(255,255,255,.42); }

.floating-whatsapp {
  position:fixed; right:20px; bottom:20px; z-index:1100;
  background:#25d366; color:#fff; padding:12px 17px; border-radius:999px;
  display:flex; align-items:center; gap:8px; font-weight:800; font-size:.78rem;
  box-shadow:0 12px 30px rgba(37,211,102,.30); transition:.25s ease;
}
.floating-whatsapp:hover { color:#fff; transform:translateY(-3px); }
.floating-whatsapp i { font-size:1.2rem; }

.back-top {
  position:fixed; right:20px; bottom:76px; z-index:1099; width:40px; height:40px;
  border:0; border-radius:50%; background:#fff; color:var(--primary);
  box-shadow:0 8px 25px rgba(0,0,0,.12); opacity:0; pointer-events:none; transition:.25s;
}
.back-top.show { opacity:1; pointer-events:auto; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.08s; }
.delay-2 { transition-delay:.16s; }
.delay-3 { transition-delay:.24s; }
.delay-4 { transition-delay:.32s; }

@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-10px); }
}

@media (max-width: 991.98px) {
  .min-vh-hero { min-height:auto; padding:65px 0 80px; }
  .hero-visual { min-height:450px; margin-top:10px; }
  .story-panel { padding:55px 40px; }
  .navbar-collapse { padding:15px 0 5px; }
}
@media (max-width: 767.98px) {
  .top-strip span { display:none; }
  .navbar { min-height:68px; }
  .brand-logo { width:145px; height:48px; }
  .display-title { font-size:clamp(2.8rem, 13vw, 4.3rem); }
  .hero-copy { font-size:1rem; }
  .hero-proof { gap:13px; justify-content:space-between; }
  .proof-divider { height:28px; }
  .proof-item strong { font-size:1.05rem; }
  .proof-item span { font-size:.64rem; }
  .hero-visual { min-height:390px; }
  .printer-scene { width:76%; }
  .floating-card { padding:11px 12px; }
  .card-one { left:0; top:10%; }
  .card-two { right:0; bottom:10%; }
  .section { padding:80px 0; }
  .benefits-grid { grid-template-columns:1fr; }
  .story-section { padding-bottom:80px; }
  .story-panel { padding:45px 26px; border-radius:25px; }
  .cta-panel { padding:40px 28px; flex-direction:column; align-items:flex-start; border-radius:24px; }
  .map-wrap, .map-wrap iframe { min-height:340px; }
  .floating-whatsapp span { display:none; }
  .floating-whatsapp { width:52px; height:52px; justify-content:center; right:16px; bottom:16px; padding:0; }
  .back-top { right:16px; bottom:78px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
