:root {
  --navy: #082040;
  --navy-2: #0c3258;
  --navy-deep: #04101f;
  --cyan: #00c4f0;
  --cyan-2: #0eaed7;
  --cyan-soft: #e7f8fe;
  --green: #20b486;
  --violet: #6658d3;
  --amber: #f6b73c;
  --ink: #1a2b41;
  --muted: #5c6d82;
  --line: #e3eaf3;
  --mist: #f3f7fb;
  --white: #ffffff;
  --header-h: 100px;
  --shadow-card: 0 12px 32px rgba(8, 32, 64, 0.08);
  --shadow-lift: 0 22px 50px rgba(8, 32, 64, 0.14);
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

::selection {
  background: rgba(0, 196, 240, 0.22);
  color: var(--navy);
}

.container-site { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.container-wide { width: min(1280px, calc(100% - 40px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
}

h1, h2, h3, h4 { margin: 0; color: var(--navy); letter-spacing: 0; line-height: 1.15; }
.muted { color: var(--muted); }
.section { padding: 80px 0; }
.section-mist { background: var(--mist); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-top: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin: 16px 0 0; }

.mesh {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 196, 240, 0.16), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(8, 32, 64, 0.08), transparent 28%),
    radial-gradient(circle at 70% 88%, rgba(14, 174, 215, 0.12), transparent 36%),
    linear-gradient(#ffffff, #f4f9fd);
}
.dot-grid {
  background-image: radial-gradient(rgba(8, 32, 64, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
}
.navy-glow {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 196, 240, 0.18), transparent 42%),
    radial-gradient(ellipse at 90% 80%, rgba(14, 174, 215, 0.12), transparent 40%),
    linear-gradient(180deg, #082040 0%, #04101f 100%);
  color: #fff;
}
.navy-glow h2, .navy-glow .eyebrow { color: #fff; }
.navy-glow .eyebrow { color: var(--cyan); }
.navy-glow .section-head p { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(0, 196, 240, 0.28);
}
.btn-primary:hover { background: #4dd4ff; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(227, 234, 243, 0.8);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 82px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.logo-light img {
  height: 82px;
}
.nav {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.nav a, .nav-drop > span {
  border-radius: 999px;
  padding: 8px 12px;
}
.nav a:hover, .nav-drop > span:hover { background: var(--mist); }
.nav a.active { color: var(--cyan-2); }
.nav-drop { position: relative; }
.nav-drop > span {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-drop > span svg { width: 16px; height: 16px; opacity: 0.6; }
.nav-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 280px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(8,32,64,0.12);
  z-index: 20;
}
.nav-drop:hover .nav-menu { display: block; }
.nav-menu a {
  display: block;
  border-radius: 10px;
  padding: 8px 12px;
}
.nav-menu.mega {
  min-width: 430px;
  padding: 14px;
}
.services-mega { min-width: 470px; }
.mega-intro {
  margin: 4px 4px 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #082040, #0c5d7b);
  color: #fff;
  padding: 16px;
}
.mega-intro strong { display: block; font-size: 0.9rem; letter-spacing: 0.12em; }
.mega-intro span { display: block; color: rgba(255,255,255,0.72); font-size: 0.86rem; margin-top: 3px; }
.mega-item {
  display: grid !important;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}
.mega-item b {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--cyan-soft);
  color: var(--navy);
  font-size: 12px;
}
.mega-item strong { display: block; font-size: 0.92rem; }
.mega-item small { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.45; margin-top: 2px; }
.header-cta { display: none; align-items: center; gap: 8px; }
.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 16px 0 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a, .mobile-nav button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 8px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.mobile-nav .sub { padding-left: 20px; color: var(--muted); font-weight: 500; display: none; }
.mobile-nav .sub.open { display: block; }
.mobile-nav .cta { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }

@media (min-width: 1024px) {
  .nav, .header-cta { display: flex; }
  .menu-toggle, .mobile-nav { display: none !important; }
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 64px 0 80px;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 800;
  max-width: 680px;
  margin-top: 16px;
}
.hero .lead { max-width: 560px; font-size: 1.12rem; line-height: 1.75; color: var(--muted); margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.hero-visual { position: relative; }
.hero-product-stack {
  position: relative;
  min-height: 520px;
}
.hero-product-stack .browser { position: relative; z-index: 2; }
.device-slab {
  position: absolute;
  display: none;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-lift);
  padding: 10px;
  z-index: 3;
}
.tablet-slab {
  left: -24px;
  bottom: 10px;
  width: 235px;
}
.tablet-screen {
  min-height: 155px;
  border-radius: 16px;
  background: #f4f7fb;
  padding: 16px;
}
.tablet-screen b { color: var(--navy); }
.tablet-lines { display: grid; gap: 8px; margin-top: 14px; }
.tablet-lines span { height: 9px; border-radius: 99px; background: #dce7f2; }
.tablet-lines span:nth-child(2) { width: 74%; background: rgba(32,180,134,.24); }
.tablet-lines span:nth-child(3) { width: 86%; background: rgba(102,88,211,.22); }
.phone-float {
  position: absolute;
  right: 0;
  bottom: -32px;
  display: none;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; padding: 80px 0; }
  .phone-float { display: block; }
  .device-slab { display: block; }
}

/* Stats */
.stats {
  border-block: 1px solid var(--line);
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 0;
  text-align: center;
}
.stats-grid strong { display: block; font-size: 1.9rem; color: var(--navy); letter-spacing: 0; }
.stats-grid span { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-strip {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
}
.trust-head h2 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
.logo-rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.client-logo-marquee {
  overflow: hidden;
  padding: 8px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.client-logo-rail {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: logo-scroll 42s linear infinite;
}
.client-logo-marquee:hover .client-logo-rail,
.client-logo-marquee:focus-within .client-logo-rail {
  animation-play-state: paused;
}
.client-logo {
  flex: 0 0 210px;
  min-height: 160px;
  border: 1px solid #dbe5ef;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fbfe);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 14px;
  color: #7c8da1;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px rgba(8,32,64,.04);
}
.client-logo img {
  width: auto;
  max-width: 112px;
  height: 86px;
  object-fit: contain;
}
.client-logo span {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.35;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}
@media (max-width: 767px) {
  .client-logo-marquee {
    overflow: visible;
    mask-image: none;
  }
  .client-logo-rail {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    animation: none;
  }
  .client-logo { flex-basis: auto; }
}

.proof-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 580px;
  margin-top: 28px;
}
.proof-chip {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  padding: 12px 14px;
  box-shadow: 0 10px 28px rgba(8,32,64,.05);
}
.proof-chip b { display: block; color: var(--navy); font-size: 1rem; }
.proof-chip span { display: block; color: var(--muted); font-size: .78rem; font-weight: 600; margin-top: 2px; }
@media (min-width: 620px) { .proof-chips { grid-template-columns: repeat(4, 1fr); } }

.grid-2 { display: grid; gap: 40px; align-items: center; }
.grid-3 { display: grid; gap: 16px; }
.grid-5 { display: grid; gap: 16px; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
  .grid-2.reverse > :first-child { order: 2; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.product-suite {
  display: grid;
  gap: 22px;
}
@media (min-width: 980px) { .product-suite { grid-template-columns: 1fr 1fr; } }
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 6%, rgba(0,196,240,.12), transparent 34%);
  pointer-events: none;
}
.product-card .product-copy {
  position: relative;
  padding: 30px;
  flex: 1 1 auto;
}
.product-card .product-media {
  position: relative;
  padding: 0 24px 28px;
  margin-top: auto;
}
.product-card h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.product-card .label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan-2);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-card.mobile-product { background: linear-gradient(180deg, #fff, #f3fbff); }
.product-card.featured-product {
  display: flex;
}
.product-card .browser .dash {
  min-height: 330px;
}
.product-card .dash-side {
  width: 132px;
}
.product-card .kpis {
  grid-template-columns: repeat(2, 1fr);
}
.product-card .dash-panels {
  grid-template-columns: 1fr;
}
.product-card .panel:nth-child(2) {
  display: none;
}

.ecosystem-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(0,196,240,.16), transparent 35%),
    linear-gradient(180deg, #fff, #f7fbff);
  overflow: hidden;
}
.ecosystem-center {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 28px 70px rgba(8,32,64,.2);
  z-index: 2;
}
.ecosystem-center b { font-size: 1.35rem; letter-spacing: .08em; }
.ecosystem-node {
  position: absolute;
  width: 126px;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(8,32,64,.07);
}
.ecosystem-node::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 1px;
  background: #c9d8e8;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  z-index: -1;
}
.node-students { top: 34px; left: 12%; }
.node-parents { top: 34px; right: 12%; }
.node-teachers { top: 46%; left: 5%; }
.node-admins { top: 46%; right: 5%; }
.node-management { bottom: 34px; left: 18%; }
.node-devices { bottom: 34px; right: 18%; }

@media (max-width: 700px) {
  .trust-head { display: block; }
  .trust-head .muted { margin-top: 10px; }
  .ecosystem-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
    min-height: auto;
  }
  .ecosystem-center,
  .ecosystem-node {
    position: static;
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
  }
  .ecosystem-center { height: auto; padding: 24px; }
  .ecosystem-node::before { display: none; }
}

.experience-shell {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 1000px) { .experience-shell { grid-template-columns: .72fr 1.28fr; } }
.tab-copy {
  border-left: 3px solid var(--cyan);
  padding-left: 18px;
  color: var(--muted);
}
.card:hover { transform: translateY(-4px); transition: 0.2s ease; }
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
}
.icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { font-size: 1.1rem; font-weight: 800; margin-top: 16px; }
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 8px 0 0; }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.feature-list li { display: flex; align-items: flex-start; gap: 8px; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--cyan);
  margin-top: 8px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .feature-list { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
}

.service-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.service-card img { width: 100%; height: 208px; object-fit: cover; }
.service-card .body { padding: 28px; }
.service-card h3 { font-size: 1.25rem; font-weight: 800; }

.why-card {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 24px;
}
.why-card .icon-box { background: rgba(0,196,240,0.15); color: var(--cyan); }
.why-card h3 { color: #fff; margin-top: 16px; }
.why-card p { color: rgba(255,255,255,0.65); }

.process-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-grid article { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 20px; }
.process-grid .step { color: var(--cyan-2); font-size: 0.85rem; font-weight: 800; }

.industry.featured { background: var(--navy); color: #fff; border-color: rgba(0,196,240,0.3); }
.industry.featured h3 { color: #fff; }
.industry.featured p { color: rgba(255,255,255,0.7); }

.cta-band {
  display: grid;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border-radius: 32px;
  background: var(--navy);
  color: #fff;
  padding: 48px 24px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 480px; }
.cta-band img { border-radius: 16px; }
@media (min-width: 800px) {
  .cta-band { grid-template-columns: 1fr 1fr; padding: 48px; }
}

.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.tab {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.phones { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 16px; }
.product-card .phones {
  min-height: 315px;
  overflow: hidden;
  align-items: flex-start;
}
.product-card .phones .phone {
  width: 142px;
}
.phones > :nth-child(n + 2) { display: none; }
@media (min-width: 640px) {
  .phones > :nth-child(-n + 3) { display: block; }
}
@media (min-width: 1024px) {
  .phones > * { display: block; }
}
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 12px; font-size: 0.95rem; }
.contact-list svg { width: 20px; height: 20px; color: var(--cyan-2); flex-shrink: 0; margin-top: 2px; }
.map { width: 100%; height: 224px; border: 1px solid var(--line); border-radius: 16px; margin-top: 24px; }
.form-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form label { display: grid; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.form input, .form select, .form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--cyan); }
.form-msg { margin: 0; }
.form-ok { color: #047857; font-size: 0.9rem; font-weight: 700; }
.form-err { color: #dc2626; font-size: 0.9rem; font-weight: 700; }

.page-hero { border-bottom: 1px solid var(--line); }
.page-hero .container-site { padding: 64px 0; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; max-width: 48rem; margin-top: 12px; }
.page-hero p { max-width: 40rem; font-size: 1.1rem; color: var(--muted); margin-top: 16px; }
.page-hero .hero-actions { margin-top: 28px; }

.footer { background: var(--navy-deep); color: #fff; }
.footer-grid { display: grid; gap: 34px; padding: 64px 0; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr 1.35fr; } }
.footer .logo { margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,0.65); font-size: 0.9rem; max-width: 360px; line-height: 1.6; }
.footer .tag { color: var(--cyan); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; margin-top: 12px; }
.footer h4 { color: #fff; font-size: 0.9rem; margin-bottom: 12px; }
.footer a { display: block; color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 8px 0; }
.footer a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 28px; height: 28px; }

/* Browser + phone mockups */
.browser {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #0b1c33;
  box-shadow: 0 28px 70px rgba(8,32,64,0.28);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 99px; }
.dots .r { background: #ff6b6b; }
.dots .y { background: #ffd166; }
.dots .g { background: #06d6a0; }
.browser-url {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  text-align: center;
  padding: 4px 12px;
}

.dash {
  display: flex;
  min-height: 420px;
  background: #eef3f8;
  color: #1a2b41;
  font-size: 12px;
}
.dash-side {
  display: none;
  width: 168px;
  flex-shrink: 0;
  background: #082040;
  color: #fff;
  padding: 12px;
}
@media (min-width: 640px) { .dash-side { display: block; } }
.dash-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 0 4px; }
.dash-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--cyan); color: var(--navy);
  display: grid; place-items: center; font-size: 10px; font-weight: 900;
}
.dash-brand b { display: block; font-size: 11px; }
.dash-brand small { color: rgba(255,255,255,0.5); font-size: 9px; }
.dash-nav div {
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.dash-nav .on { background: rgba(0,196,240,0.15); color: var(--cyan); font-weight: 600; }
.dash-main { flex: 1; min-width: 0; }
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #dce7f2;
}
.dash-top .org { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #0eaed7; }
.dash-top h3 { font-size: 13px; }
.avatar {
  width: 28px; height: 28px; border-radius: 99px;
  background: #082040; color: #fff;
  display: grid; place-items: center; font-size: 10px; font-weight: 700;
}
.kpis { display: grid; gap: 12px; padding: 12px; }
@media (min-width: 640px) { .kpis { grid-template-columns: repeat(4, 1fr); } }
.kpi {
  background: #fff;
  border: 1px solid #dce7f2;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 16px rgba(8,32,64,0.04);
}
.kpi span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #6b7c91; }
.kpi b { display: block; margin-top: 4px; font-size: 1.15rem; color: #082040; }
.kpi small { color: #6b7c91; font-size: 10px; }
.dash-panels { display: grid; gap: 12px; padding: 0 12px 12px; }
@media (min-width: 900px) { .dash-panels { grid-template-columns: 3fr 2fr; } }
.panel { background: #fff; border: 1px solid #dce7f2; border-radius: 12px; padding: 12px; }
.panel h4 { font-size: 11px; margin-bottom: 8px; }
.activity { list-style: none; padding: 0; margin: 0; }
.activity li { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.activity b { display: block; font-size: 11px; color: #082040; }
.activity small { color: #6b7c91; font-size: 10px; }

.phone {
  width: 168px;
  overflow: hidden;
  border-radius: 34px;
  border: 6px solid #0b1c33;
  background: #0b1c33;
  box-shadow: 0 24px 50px rgba(8,32,64,0.3);
  position: relative;
}
.phone.lg { width: 170px; }
.phone-notch {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 2;
  width: 80px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0,0,0,0.8);
}
.phone-screen { aspect-ratio: 9 / 19; overflow: hidden; border-radius: 28px; background: #fff; }
.ph { height: 100%; font-size: 11px; }
.ph-dark { background: linear-gradient(#082040, #0c3258); color: #fff; }
.ph-light { background: #f4f7fb; color: #082040; }
.ph-bar { display: flex; justify-content: space-between; padding: 12px 16px 4px; font-size: 10px; }
.ph-bar.light { color: rgba(255,255,255,0.8); }
.ph-pad { padding: 8px 16px; }
.ph-kicker { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.ph-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.ph-stats div { background: rgba(255,255,255,0.1); border-radius: 16px; padding: 12px; }
.ph-stats b { display: block; font-size: 1.25rem; color: var(--cyan); }
.ph-sheet {
  margin-top: 16px;
  height: calc(100% - 170px);
  background: #f4f7fb;
  color: #1a2b41;
  border-radius: 24px 24px 0 0;
  padding: 16px;
}
.ph-row {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
  box-shadow: 0 1px 4px rgba(8,32,64,0.06);
}
.bar { height: 6px; background: #e3eaf3; border-radius: 99px; margin-top: 8px; overflow: hidden; }
.bar i { display: block; height: 100%; background: #00c4f0; border-radius: 99px; }

.chart { width: 100%; height: 110px; }
.donut-wrap { display: flex; align-items: center; gap: 12px; }

.float-y { animation: float-y 5.5s ease-in-out infinite; }
.float-y-slow { animation: float-y 7s ease-in-out infinite; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

.ecosystem-img { width: 100%; max-width: 960px; margin: 0 auto; border-radius: 16px; }
.center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .float-y, .float-y-slow, .reveal { animation: none; opacity: 1; transform: none; }
}
