﻿:root {
  --primary: #0055FF;
  --primary-dark: #0041C4;
  --primary-light: #EAF0FF;
  --secondary: #0B1E3F;
  --amber: #E0A72E;
  --sky: #39C6E0;
  --bg: #FBFCFE;
  --panel: #F2F5FB;
  --text: #101623;
  --muted: #5B6478;
  --line: #E3E7F0;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--secondary);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

a {
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.btn-schexus {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: .95rem;
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-schexus:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-schexus {
  border: 1.5px solid var(--line);
  color: var(--secondary);
  border-radius: 12px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: .95rem;
  background: #fff;
  transition: .25s ease;
}

.btn-outline-schexus:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ ANNOUNCEMENT ============ */
.announcement {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: .88rem;
  font-weight: 500;
}

.announcement a {
  color: var(--amber);
  font-weight: 700;
  margin-left: 8px;
}

.announcement a:hover {
  color: #fff;
}

/* ============ NAV ============ */
.navbar {
  padding: 16px 0;
  background: rgba(251, 252, 251, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: .3s;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(21, 32, 24, .04);
}

.navbar-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary) !important;
}

.navbar-brand span {
  color: var(--primary);
}

.nav-link {
  font-weight: 600;
  margin: 0 14px;
  color: var(--secondary) !important;
  font-size: .94rem;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ============ HERO ============ */
.hero {
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .28;
  z-index: 0;
}

.hero-blur-1 {
  width: 380px;
  height: 380px;
  background: var(--primary);
  top: -100px;
  left: -140px;
}

.hero-blur-2 {
  width: 420px;
  height: 420px;
  background: var(--sky);
  right: -160px;
  bottom: -140px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--secondary);
}

.hero-stats small {
  color: var(--muted);
  font-size: .82rem;
}

/* Ecosystem diagram (signature element) */
.ecosystem {
  position: relative;
  height: 520px;
}

.eco-svg {
  width: 100%;
  height: 100%;
}

.eco-node {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(21, 32, 24, .08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
  animation: float 6s ease-in-out infinite;
}

.eco-node i {
  color: var(--primary);
  font-size: 1.15rem;
}

.eco-node.n1 {
  top: 2%;
  left: 6%;
  animation-delay: 0s;
}

.eco-node.n2 {
  top: 8%;
  right: 2%;
  animation-delay: .4s;
}

.eco-node.n3 {
  top: 46%;
  left: 0%;
  animation-delay: .8s;
}

.eco-node.n4 {
  top: 50%;
  right: 4%;
  animation-delay: 1.2s;
}

.eco-node.n5 {
  bottom: 6%;
  left: 14%;
  animation-delay: 1.6s;
}

.eco-node.n6 {
  bottom: 2%;
  right: 10%;
  animation-delay: 2s;
}

.eco-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, var(--primary-light));
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 85, 255, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.eco-center strong {
  font-family: 'Fraunces', serif;
  color: var(--secondary);
  font-size: 1.15rem;
}

.eco-center small {
  color: var(--muted);
  font-size: .72rem;
  max-width: 120px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============ TRUSTED ============ */
.trusted {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trusted p {
  text-align: center;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 28px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: .55;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--secondary);
}

/* ============ SECTION shared ============ */
.section {
  padding: 110px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-panel {
  background: var(--panel);
}

.section-dark {
  background: var(--secondary);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #B9C7C0;
}

/* ============ PROBLEMS ============ */
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  height: 100%;
  transition: .3s;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(21, 32, 24, .08);
  border-color: transparent;
}

.problem-card .num {
  font-family: 'Fraunces', serif;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.problem-card h5 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: .92rem;
  margin: 0;
}

/* ============ WHY ============ */
.why-row {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.why-row:last-child {
  border-bottom: 1px solid var(--line);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-row h5 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.why-row p {
  margin: 0;
  font-size: .92rem;
}

/* ============ PLATFORM OVERVIEW ============ */
.flow-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.flow-node {
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.flow-node .dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
}

.flow-node span {
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
}

.flow-arrow {
  color: var(--line);
  font-size: 1.3rem;
}

/* ============ EXPERIENCE CARDS ============ */
.exp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: .3s;
}

.exp-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 46px rgba(0, 85, 255, .1);
  transform: translateY(-4px);
}

.exp-card .exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.exp-card h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.exp-card p {
  font-size: .88rem;
  margin-bottom: 14px;
}

.exp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}

.exp-card ul li {
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.exp-card ul li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
}

/* ============ DASHBOARD SHOWCASE ============ */
.device-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(21, 32, 24, .12);
  padding: 14px;
  position: relative;
}

.device-frame .bar {
  display: flex;
  gap: 6px;
  padding: 4px 4px 12px;
}

.device-frame .bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.device-screen {
  background: var(--panel);
  border-radius: 12px;
  padding: 22px;
  min-height: 280px;
}

.device-screen .row-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
}

.device-screen .pill {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
}

/* ============ TESTIMONIALS ============ */
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}

.testi-card p {
  font-style: italic;
  color: var(--secondary);
  font-size: 1rem;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Fraunces', serif;
}

.testi-meta strong {
  display: block;
  font-size: .9rem;
  color: var(--secondary);
}

.testi-meta small {
  color: var(--muted);
  font-size: .78rem;
}

/* ============ STATS ============ */
.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-box .num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--primary);
  font-weight: 700;
}

.stat-box small {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .78rem;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.02rem;
}

.faq-q i {
  transition: .3s;
  color: var(--primary);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding-top: 14px;
  margin: 0;
}

/* ============ CTA ============ */
.cta-band {
  background: linear-gradient(135deg, var(--secondary), #0f2438);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-band p {
  color: #B9C7C0;
  max-width: 520px;
  margin: 0 auto 34px;
}

.cta-blur {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--primary);
  filter: blur(120px);
  opacity: .35;
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--secondary);
  color: #B9C7C0;
  padding: 80px 0 30px;
  font-size: .9rem;
}

footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

footer a {
  color: #B9C7C0;
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: var(--amber);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

@media (max-width:991px) {
  .hero {
    padding: 150px 0 70px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .ecosystem {
    height: auto;
    margin-top: 50px;
  }

  .eco-node {
    position: static;
    margin-bottom: 12px;
    animation: none;
  }

  .eco-center {
    position: static;
    transform: none;
    margin: 0 auto 20px;
  }

  .flow-arrow {
    display: none;
  }

  .cta-band {
    padding: 50px 24px;
  }
}

/* ============ ANNOUNCEMENT ============ */
.announcement {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: .88rem;
  font-weight: 500;
}

.announcement a {
  color: var(--amber);
  font-weight: 700;
  margin-left: 8px;
}

.announcement a:hover {
  color: #fff;
}

/* ============ NAV ============ */
.navbar {
  padding: 16px 0;
  background: rgba(251, 252, 251, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: .3s;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(21, 32, 24, .04);
}

.navbar-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary) !important;
}

.navbar-brand span {
  color: var(--primary);
}

.nav-link {
  font-weight: 600;
  margin: 0 14px;
  color: var(--secondary) !important;
  font-size: .94rem;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ============ HERO ============ */
.hero {
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .28;
  z-index: 0;
}

.hero-blur-1 {
  width: 380px;
  height: 380px;
  background: var(--primary);
  top: -100px;
  left: -140px;
}

.hero-blur-2 {
  width: 420px;
  height: 420px;
  background: var(--sky);
  right: -160px;
  bottom: -140px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--secondary);
}

.hero-stats small {
  color: var(--muted);
  font-size: .82rem;
}

/* Ecosystem diagram (signature element) */
.ecosystem {
  position: relative;
  height: 520px;
}

.eco-svg {
  width: 100%;
  height: 100%;
}

.eco-node {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(21, 32, 24, .08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
  animation: float 6s ease-in-out infinite;
}

.eco-node i {
  color: var(--primary);
  font-size: 1.15rem;
}

.eco-node.n1 {
  top: 2%;
  left: 6%;
  animation-delay: 0s;
}

.eco-node.n2 {
  top: 8%;
  right: 2%;
  animation-delay: .4s;
}

.eco-node.n3 {
  top: 46%;
  left: 0%;
  animation-delay: .8s;
}

.eco-node.n4 {
  top: 50%;
  right: 4%;
  animation-delay: 1.2s;
}

.eco-node.n5 {
  bottom: 6%;
  left: 14%;
  animation-delay: 1.6s;
}

.eco-node.n6 {
  bottom: 2%;
  right: 10%;
  animation-delay: 2s;
}

.eco-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, var(--primary-light));
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 85, 255, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.eco-center strong {
  font-family: 'Fraunces', serif;
  color: var(--secondary);
  font-size: 1.15rem;
}

.eco-center small {
  color: var(--muted);
  font-size: .72rem;
  max-width: 120px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============ TRUSTED ============ */
.trusted {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trusted p {
  text-align: center;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 28px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: .55;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--secondary);
}

/* ============ SECTION shared ============ */
.section {
  padding: 110px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-panel {
  background: var(--panel);
}

.section-dark {
  background: var(--secondary);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #B9C7C0;
}

/* ============ PROBLEMS ============ */
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  height: 100%;
  transition: .3s;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(21, 32, 24, .08);
  border-color: transparent;
}

.problem-card .num {
  font-family: 'Fraunces', serif;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.problem-card h5 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: .92rem;
  margin: 0;
}

/* ============ WHY ============ */
.why-row {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.why-row:last-child {
  border-bottom: 1px solid var(--line);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-row h5 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.why-row p {
  margin: 0;
  font-size: .92rem;
}

/* ============ PLATFORM OVERVIEW ============ */
.flow-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.flow-node {
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.flow-node .dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
}

.flow-node span {
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
}

.flow-arrow {
  color: var(--line);
  font-size: 1.3rem;
}

/* ============ EXPERIENCE CARDS ============ */
.exp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: .3s;
}

.exp-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 46px rgba(0, 85, 255, .1);
  transform: translateY(-4px);
}

.exp-card .exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.exp-card h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.exp-card p {
  font-size: .88rem;
  margin-bottom: 14px;
}

.exp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}

.exp-card ul li {
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.exp-card ul li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
}

/* ============ DASHBOARD SHOWCASE ============ */
.device-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(21, 32, 24, .12);
  padding: 14px;
  position: relative;
}

.device-frame .bar {
  display: flex;
  gap: 6px;
  padding: 4px 4px 12px;
}

.device-frame .bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.device-screen {
  background: var(--panel);
  border-radius: 12px;
  padding: 22px;
  min-height: 280px;
}

.device-screen .row-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
}

.device-screen .pill {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
}

/* ============ TESTIMONIALS ============ */
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}

.testi-card p {
  font-style: italic;
  color: var(--secondary);
  font-size: 1rem;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Fraunces', serif;
}

.testi-meta strong {
  display: block;
  font-size: .9rem;
  color: var(--secondary);
}

.testi-meta small {
  color: var(--muted);
  font-size: .78rem;
}

/* ============ STATS ============ */
.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-box .num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--primary);
  font-weight: 700;
}

.stat-box small {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .78rem;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.02rem;
}

.faq-q i {
  transition: .3s;
  color: var(--primary);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding-top: 14px;
  margin: 0;
}

/* ============ CTA ============ */
.cta-band {
  background: linear-gradient(135deg, var(--secondary), #0f2438);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-band p {
  color: #B9C7C0;
  max-width: 520px;
  margin: 0 auto 34px;
}

.cta-blur {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--primary);
  filter: blur(120px);
  opacity: .35;
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--secondary);
  color: #B9C7C0;
  padding: 80px 0 30px;
  font-size: .9rem;
}

footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

footer a {
  color: #B9C7C0;
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: var(--amber);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

@media (max-width:991px) {
  .hero {
    padding: 150px 0 70px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .ecosystem {
    height: auto;
    margin-top: 50px;
  }

  .eco-node {
    position: static;
    margin-bottom: 12px;
    animation: none;
  }

  .eco-center {
    position: static;
    transform: none;
    margin: 0 auto 20px;
  }

  .flow-arrow {
    display: none;
  }

  .cta-band {
    padding: 50px 24px;
  }
}

/* Generic icon chip + feature list (reused across inner pages) */
.exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-list li {
  font-size: .9rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-list li i {
  color: var(--primary);
}

/* ============ RESOURCES PAGE ============ */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.category-chip {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: .82rem;
  color: var(--secondary);
}

.category-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:991px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(11, 30, 63, .08);
}

.article-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--primary-light), var(--panel));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
}

.article-body {
  padding: 22px;
}

.article-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
}

.article-body h5 {
  font-size: 1rem;
  margin: 10px 0 8px;
}

.article-body p {
  font-size: .85rem;
  margin: 0;
}

.split-panel {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 46px;
}

.split-panel .exp-icon {
  background: var(--primary);
}

/* ============ BLOG PAGES ============ */
.blog-hero-post {
  grid-column: 1 / -1;
}

.blog-featured {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog-featured .bf-media {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(135deg, var(--primary-light), var(--panel));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
}

.blog-featured .bf-body {
  flex: 1;
  min-width: 280px;
  padding: 40px;
}

.blog-featured h2 {
  font-size: 1.5rem;
}

.blog-sidebar {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
}

.blog-sidebar h6 {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--secondary);
  margin-bottom: 16px;
}

.blog-sidebar .cat-link {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: .87rem;
  font-weight: 600;
  color: var(--secondary);
  border-bottom: 1px solid var(--line);
}

.blog-sidebar .cat-link:last-child {
  border-bottom: none;
}

.blog-sidebar .cat-link span {
  color: var(--muted);
  font-weight: 400;
}

/* Single post */
.post-header {
  max-width: 740px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 20px;
}

.post-meta .p-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
}

.post-body {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}

.post-body h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
}

.post-body p {
  margin-bottom: 20px;
  color: var(--text);
}

.post-body ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-body li {
  margin-bottom: 8px;
  color: var(--text);
}

.post-cover {
  max-width: 740px;
  margin: 0 auto 40px;
  height: 280px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-light), var(--panel));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
}

.related-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.related-card {
  flex: 0 0 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.related-card .r-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
}

.related-card h6 {
  font-size: .92rem;
  margin: 8px 0 0;
}

/* ============ COMMUNITIES PAGE ============ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width:991px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.event-date strong {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  line-height: 1;
}

.event-date small {
  font-size: .7rem;
  text-transform: uppercase;
}

.event-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.event-card p {
  font-size: .85rem;
  margin: 0;
}

.forum-thread {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.forum-thread .t-title {
  font-weight: 700;
  font-size: .9rem;
  color: var(--secondary);
}

.forum-thread .t-meta {
  font-size: .78rem;
  color: var(--muted);
}

.forum-thread .t-count {
  background: var(--panel);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--secondary);
}

/* ============ COMPANY PAGE ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width:768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.value-card .exp-icon {
  background: var(--primary-light);
  color: var(--primary);
}

.founder-quote {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 50px;
  color: #fff;
  position: relative;
}

.founder-quote p {
  color: #DCE3F2;
  font-size: 1.2rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  line-height: 1.6;
}

.founder-quote strong {
  color: #fff;
  display: block;
  margin-top: 20px;
}

.founder-quote small {
  color: #8A97B5;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ============ SCHOOL DIRECTORY PAGE ============ */
.directory-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  display: flex;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(11, 30, 63, .08);
  flex-wrap: wrap;
}

.directory-search input,
.directory-search select {
  border: none;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
  padding: 12px 14px;
  flex: 1;
  min-width: 160px;
}

.directory-search select {
  color: var(--secondary);
  font-weight: 600;
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width:991px) {
  .school-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px) {
  .school-grid {
    grid-template-columns: 1fr;
  }
}

.school-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .3s;
}

.school-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(11, 30, 63, .08);
}

.school-banner {
  height: 110px;
  background: linear-gradient(135deg, var(--primary-light), var(--panel));
  position: relative;
}

.school-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.school-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  border: 4px solid #fff;
  margin-top: -34px;
  margin-left: 20px;
  position: relative;
}

.school-info {
  padding: 8px 20px 22px;
}

.school-info h5 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.school-info .school-loc {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.school-info .school-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.school-info .school-tags span {
  background: var(--panel);
  color: var(--secondary);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
}

.school-info a {
  font-weight: 700;
  font-size: .83rem;
  color: var(--primary);
}

.directory-stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ============ FEATURES PAGE ============ */
.feature-cat {
  margin-bottom: 60px;
}

.feature-cat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.feature-cat-head .exp-icon {
  margin-bottom: 0;
}

.feature-cat-head h3 {
  margin: 0;
  font-size: 1.3rem;
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width:991px) {
  .feature-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px) {
  .feature-mini-grid {
    grid-template-columns: 1fr;
  }
}

.feature-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
}

.feature-mini i {
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ============ FORUM PAGES ============ */
.forum-cats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.forum-cat-card {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.forum-cat-card i {
  font-size: 1.3rem;
  color: var(--primary);
}

.forum-cat-card strong {
  display: block;
  font-size: .9rem;
  color: var(--secondary);
}

.forum-cat-card small {
  color: var(--muted);
  font-size: .76rem;
}

.thread-list-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: .2s;
}

.thread-list-item:hover {
  border-color: var(--primary);
  box-shadow: 0 14px 34px rgba(0, 85, 255, .08);
}

.thread-list-item .t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.thread-list-item .t-body {
  flex: 1;
}

.thread-list-item .t-title {
  font-weight: 700;
  font-size: .94rem;
  color: var(--secondary);
}

.thread-list-item .t-meta {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
}

.thread-list-item .t-stats {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  flex-shrink: 0;
}

.thread-list-item .t-stats strong {
  display: block;
  font-family: 'Fraunces', serif;
  color: var(--secondary);
  font-size: 1.1rem;
}

/* Thread view */
.op-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.op-card .op-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.reply-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}

.reply-card .op-meta {
  margin-bottom: 12px;
}

.reply-box {
  background: var(--panel);
  border-radius: 16px;
  padding: 22px;
  margin-top: 24px;
}

.reply-box textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
  resize: vertical;
  min-height: 100px;
}

/* ============ AUTH / SIGNUP FORMS ============ */
.form-shell {
  max-width: 900px;
  margin: 0 auto;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 40px 90px rgba(11, 30, 63, .08);
}

.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-card .section-sub {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 0;
}

.field-label {
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
  margin-bottom: 6px;
  display: block;
}

.field-label .req {
  color: #E0432E;
}

.field-hint {
  font-weight: 400;
  color: var(--muted);
  font-size: .78rem;
}

.form-control-schexus,
select.form-control-schexus {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: #fff;
}

.form-control-schexus:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 85, 255, .1);
}

.field-group {
  margin-bottom: 22px;
}

.section-divider {
  border-top: 1px solid var(--line);
  margin: 44px 0 32px;
  padding-top: 0;
}

.privacy-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
  margin: 30px 0;
}

.privacy-panel h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
  margin-bottom: 10px;
}

.privacy-panel h5 i {
  color: var(--primary);
}

.privacy-panel p {
  font-size: .86rem;
  margin-bottom: 8px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.check-row input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.check-row label {
  font-size: .85rem;
  color: var(--secondary);
  font-weight: 600;
}

.check-row a {
  color: var(--primary);
  font-weight: 700;
}

.auth-shell {
  max-width: 440px;
  margin: 0 auto;
}

.auth-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-size: .88rem;
  color: var(--muted);
}

.auth-toggle a {
  color: var(--primary);
  font-weight: 700;
}

.password-row {
  position: relative;
}

/* ============ GOVERNMENT PAGE ============ */
.gov-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.gov-flow .flow-node .dot {
  background: var(--primary-light);
  color: var(--primary);
}

.roadmap-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.roadmap-item:last-child {
  border-bottom: 1px solid var(--line);
}

.roadmap-tag {
  flex: 0 0 130px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Fraunces', serif;
  font-size: .95rem;
}

.roadmap-item h5 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.roadmap-item p {
  margin: 0;
  font-size: .9rem;
}

.consent-banner {
  background: var(--primary-light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.consent-banner i {
  color: var(--primary);
  font-size: 1.4rem;
}

.consent-banner p {
  margin: 0;
  font-size: .9rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ============ FOOTER ============ */
footer {
  background: var(--secondary);
  color: #B9C7C0;
  padding: 80px 0 30px;
  font-size: .9rem;
}

footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

footer a {
  color: #B9C7C0;
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: var(--amber);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

@media (max-width:991px) {
  .hero {
    padding: 150px 0 70px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .ecosystem {
    height: auto;
    margin-top: 50px;
  }

  .eco-node {
    position: static;
    margin-bottom: 12px;
    animation: none;
  }

  .eco-center {
    position: static;
    transform: none;
    margin: 0 auto 20px;
  }

  .flow-arrow {
    display: none;
  }

  .cta-band {
    padding: 50px 24px;
  }
}

/* ============ LEARNING PAGE ============ */
.leaderboard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 30px 70px rgba(11, 30, 63, .08);
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
}

.lb-row.top {
  background: var(--primary-light);
}

.lb-rank {
  width: 26px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--secondary);
}

.lb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

.lb-name {
  flex: 1;
  font-weight: 700;
  font-size: .88rem;
  color: var(--secondary);
}

.lb-xp {
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:991px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.course-card .prog-bar {
  height: 6px;
  background: var(--panel);
  border-radius: 20px;
  margin: 14px 0 8px;
  overflow: hidden;
}

.course-card .prog-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 20px;
}

.course-card small {
  color: var(--muted);
  font-size: .78rem;
}

/* ============ LMS APP SHELL ============ */
body.app-body {
  background: var(--bg);
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.app-sidebar {
  width: 250px;
  flex-shrink: 0;
  background: var(--secondary);
  color: #fff;
  padding: 26px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  padding: 6px 10px 26px;
  display: block;
}

.app-logo span {
  color: var(--sky);
}

.app-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #B9C4DB;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 4px;
  transition: .2s;
}

.app-nav-link i {
  font-size: 1.05rem;
  width: 20px;
}

.app-nav-link:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.app-nav-link.active {
  background: var(--primary);
  color: #fff;
}

.app-sidebar-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.app-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
}

.app-user .au-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}

.app-user strong {
  display: block;
  font-size: .82rem;
  color: #fff;
}

.app-user small {
  color: #8A97B5;
  font-size: .72rem;
}

.app-main {
  flex: 1;
  min-width: 0;
}

.app-topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 5;
}

.app-topbar .at-search {
  background: var(--panel);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .85rem;
  width: 280px;
}

.app-topbar .at-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-topbar .at-bell {
  position: relative;
  color: var(--secondary);
  font-size: 1.2rem;
}

.app-topbar .at-bell .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.app-content {
  padding: 32px;
}

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

.xp-banner {
  background: linear-gradient(135deg, var(--secondary), #0f2438);
  border-radius: 20px;
  padding: 28px 32px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.xp-banner h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.xp-banner p {
  color: #B9C4DB;
  margin: 0;
  font-size: .85rem;
}

.xp-pill {
  background: rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .9rem;
}

.mini-course {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mini-course:last-child {
  border-bottom: none;
}

.mini-course .mc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-course .mc-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--secondary);
}

.mini-course .mc-sub {
  font-size: .76rem;
  color: var(--muted);
}

.mini-course .prog-bar {
  height: 5px;
  background: var(--panel);
  border-radius: 20px;
  margin-top: 6px;
  width: 140px;
  overflow: hidden;
}

.mini-course .prog-fill {
  height: 100%;
  background: var(--primary);
}

.app-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

@media (max-width:900px) {
  .app-grid-2 {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }
}

/* Course/lesson view */
.course-shell {
  display: flex;
  gap: 0;
  min-height: calc(100vh - 68px);
}

.lesson-sidebar {
  width: 290px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 24px;
  overflow-y: auto;
}

.lesson-sidebar h6 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 14px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 2px;
}

.lesson-item i {
  color: var(--muted);
  font-size: .95rem;
}

.lesson-item.done i {
  color: var(--primary);
}

.lesson-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.lesson-item.active i {
  color: var(--primary);
}

.lesson-main {
  flex: 1;
  padding: 32px 40px;
}

.video-frame {
  background: var(--secondary);
  border-radius: 18px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 26px;
}

/* CBT exam */
.exam-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
}

.exam-timer {
  background: var(--secondary);
  color: #fff;
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
}

.exam-progress {
  height: 6px;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  margin: 22px 0 30px;
}

.exam-progress .fill {
  height: 100%;
  background: var(--primary);
  width: 32%;
}

.exam-q-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.exam-q-card h5 {
  font-size: 1.1rem;
  margin-bottom: 26px;
  line-height: 1.6;
}

.exam-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--secondary);
  cursor: pointer;
  transition: .15s;
}

.exam-option:hover {
  border-color: var(--primary);
}

.exam-option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.exam-option .opt-letter {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}

.exam-option.selected .opt-letter {
  background: var(--primary);
  color: #fff;
}

.exam-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}

/* ============ PARENTS PAGE ============ */
.notice-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.notice-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.notice-item .n-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--secondary);
}

.notice-item .n-time {
  font-size: .76rem;
  color: var(--muted);
}

/* ============ PLATFORM PAGE ============ */
.page-hero {
  padding: 160px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-blur {
  opacity: .22;
}

.page-hero h1 {
  font-size: 2.9rem;
  max-width: 760px;
}

.page-hero p.lead {
  font-size: 1.1rem;
  max-width: 600px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-copy {
  flex: 1;
}

.feature-media {
  flex: 1;
}

.feature-copy .exp-icon {
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-list li {
  font-size: .9rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-list li i {
  color: var(--primary);
}

.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 30px 70px rgba(11, 30, 63, .08);
}

.media-card .m-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 600;
  color: var(--secondary);
}

.media-card .m-row:last-child {
  border-bottom: none;
}

.media-card .m-row .pill {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
}

.community-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width:991px) {

  .community-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 30px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

.community-item,
.security-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.community-item i,
.security-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.community-item span,
.security-item span {
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.integration-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--secondary);
}

.integration-chip i {
  color: var(--primary);
  font-size: 1.1rem;
}

.ai-panel {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.ai-panel h2,
.ai-panel h3 {
  color: #fff;
}

.ai-panel p {
  color: #B9C4DB;
}

.ai-panel .exp-icon {
  background: var(--primary);
}

/* ============ ANNOUNCEMENT ============ */
.announcement {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: .88rem;
  font-weight: 500;
}

.announcement a {
  color: var(--amber);
  font-weight: 700;
  margin-left: 8px;
}

.announcement a:hover {
  color: #fff;
}

/* ============ NAV ============ */
.navbar {
  padding: 16px 0;
  background: rgba(251, 252, 251, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: .3s;
}

.navbar.scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(21, 32, 24, .04);
}

.navbar-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary) !important;
}

.navbar-brand span {
  color: var(--primary);
}

.nav-link {
  font-weight: 600;
  margin: 0 14px;
  color: var(--secondary) !important;
  font-size: .94rem;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ============ HERO ============ */
.hero {
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .28;
  z-index: 0;
}

.hero-blur-1 {
  width: 380px;
  height: 380px;
  background: var(--primary);
  top: -100px;
  left: -140px;
}

.hero-blur-2 {
  width: 420px;
  height: 420px;
  background: var(--sky);
  right: -160px;
  bottom: -140px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--secondary);
}

.hero-stats small {
  color: var(--muted);
  font-size: .82rem;
}

/* Ecosystem diagram (signature element) */
.ecosystem {
  position: relative;
  height: 520px;
}

.eco-svg {
  width: 100%;
  height: 100%;
}

.eco-node {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(21, 32, 24, .08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
  animation: float 6s ease-in-out infinite;
}

.eco-node i {
  color: var(--primary);
  font-size: 1.15rem;
}

.eco-node.n1 {
  top: 2%;
  left: 6%;
  animation-delay: 0s;
}

.eco-node.n2 {
  top: 8%;
  right: 2%;
  animation-delay: .4s;
}

.eco-node.n3 {
  top: 46%;
  left: 0%;
  animation-delay: .8s;
}

.eco-node.n4 {
  top: 50%;
  right: 4%;
  animation-delay: 1.2s;
}

.eco-node.n5 {
  bottom: 6%;
  left: 14%;
  animation-delay: 1.6s;
}

.eco-node.n6 {
  bottom: 2%;
  right: 10%;
  animation-delay: 2s;
}

.eco-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, var(--primary-light));
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 85, 255, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.eco-center strong {
  font-family: 'Fraunces', serif;
  color: var(--secondary);
  font-size: 1.15rem;
}

.eco-center small {
  color: var(--muted);
  font-size: .72rem;
  max-width: 120px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============ TRUSTED ============ */
.trusted {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trusted p {
  text-align: center;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 28px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: .55;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--secondary);
}

/* ============ SECTION shared ============ */
.section {
  padding: 110px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-panel {
  background: var(--panel);
}

.section-dark {
  background: var(--secondary);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #B9C7C0;
}

/* ============ PROBLEMS ============ */
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  height: 100%;
  transition: .3s;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(21, 32, 24, .08);
  border-color: transparent;
}

.problem-card .num {
  font-family: 'Fraunces', serif;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.problem-card h5 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: .92rem;
  margin: 0;
}

/* ============ WHY ============ */
.why-row {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.why-row:last-child {
  border-bottom: 1px solid var(--line);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-row h5 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.why-row p {
  margin: 0;
  font-size: .92rem;
}

/* ============ PLATFORM OVERVIEW ============ */
.flow-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.flow-node {
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.flow-node .dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
}

.flow-node span {
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
}

.flow-arrow {
  color: var(--line);
  font-size: 1.3rem;
}

/* ============ EXPERIENCE CARDS ============ */
.exp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: .3s;
}

.exp-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 46px rgba(0, 85, 255, .1);
  transform: translateY(-4px);
}

.exp-card .exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.exp-card h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.exp-card p {
  font-size: .88rem;
  margin-bottom: 14px;
}

.exp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}

.exp-card ul li {
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.exp-card ul li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
}

/* ============ DASHBOARD SHOWCASE ============ */
.device-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(21, 32, 24, .12);
  padding: 14px;
  position: relative;
}

.device-frame .bar {
  display: flex;
  gap: 6px;
  padding: 4px 4px 12px;
}

.device-frame .bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.device-screen {
  background: var(--panel);
  border-radius: 12px;
  padding: 22px;
  min-height: 280px;
}

.device-screen .row-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--secondary);
}

.device-screen .pill {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
}

/* ============ GROWTH ============ */
.growth-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 600;
  color: #ffffff;
  font-size: .98rem;
}

.growth-list li i {
  margin-top: 3px;
}

/* ============ TESTIMONIALS ============ */
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}

.testi-card p {
  font-style: italic;
  color: var(--secondary);
  font-size: 1rem;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Fraunces', serif;
}

.testi-meta strong {
  display: block;
  font-size: .9rem;
  color: var(--secondary);
}

.testi-meta small {
  color: var(--muted);
  font-size: .78rem;
}

/* ============ STATS ============ */
.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-box .num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--primary);
  font-weight: 700;
}

.stat-box small {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .78rem;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.02rem;
}

.faq-q i {
  transition: .3s;
  color: var(--primary);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding-top: 14px;
  margin: 0;
}

/* ============ CTA ============ */
.cta-band {
  background: linear-gradient(135deg, var(--secondary), #0f2438);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-band p {
  color: #B9C7C0;
  max-width: 520px;
  margin: 0 auto 34px;
}

.cta-blur {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--primary);
  filter: blur(120px);
  opacity: .35;
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--secondary);
  color: #B9C7C0;
  padding: 80px 0 30px;
  font-size: .9rem;
}

footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

footer a {
  color: #B9C7C0;
  display: block;
  margin-bottom: 10px;
}

footer a:hover {
  color: var(--amber);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

@media (max-width:991px) {
  .hero {
    padding: 150px 0 70px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .ecosystem {
    height: auto;
    margin-top: 50px;
  }

  .eco-node {
    position: static;
    margin-bottom: 12px;
    animation: none;
  }

  .eco-center {
    position: static;
    transform: none;
    margin: 0 auto 20px;
  }

  .flow-arrow {
    display: none;
  }

  .cta-band {
    padding: 50px 24px;
  }
}

/* Generic icon chip + feature list (reused across inner pages) */
.exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-list li {
  font-size: .9rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-list li i {
  color: var(--primary);
}

/* ============ PRICING PAGE ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width:991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 30px 70px rgba(0, 85, 255, .14);
  position: relative;
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}

.price-card h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.price-card .price {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: var(--secondary);
  margin: 14px 0;
}

.price-card .price small {
  font-size: .9rem;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex: 1;
}

.price-card ul li {
  padding: 8px 0;
  font-size: .88rem;
  color: var(--secondary);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 600;
}

.price-card ul li i {
  color: var(--primary);
  margin-top: 2px;
}

.roi-panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 46px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.steps-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}

.step-card .step-num {
  font-family: 'Fraunces', serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: block;
}

/* ============ SOLUTIONS PAGE ============ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width:991px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  scroll-margin-top: 100px;
  transition: .3s;
}

.audience-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 46px rgba(0, 85, 255, .1);
  transform: translateY(-4px);
}

.audience-card .exp-icon {
  margin-bottom: 16px;
}

.audience-card h5 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: .88rem;
  margin-bottom: 14px;
}

.audience-card a {
  font-weight: 700;
  font-size: .85rem;
  color: var(--primary);
}

.audience-card a i {
  transition: .2s;
}

.audience-card a:hover i {
  transform: translateX(3px);
}

.compare-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.compare-pill {
  flex: 0 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
  white-space: nowrap;
}