

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #0f1319;
  --bg2: #141920;
  --bg3: #1a2130;
  --bg4: #1e2838;
  --sky: #4a9ee8;
  --sky2: #7ec8f0;
  --sky3: #2a6aaa;
  --sky4: #0d2a44;
  --text: #e4eef8;
  --text2: #8aaec8;
  --text3: #506070;
  --border: #1e3050;
  --border2: #2a4060;
  --green: #3dcc8e;
  --red: #e85a5a;
  --nav-h: 68px;
  --silk: cubic-bezier(0.16, 1, 0.3, 1);
  --silk-fast: cubic-bezier(0.25, 1, 0.4, 1);
  --max-w: 1280px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TICKER */
.ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
  flex-shrink: 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-right: 1px solid var(--border);
}
.ticker-sym {
  color: var(--text2);
}
.ticker-price {
  color: var(--text);
}
.ticker-up {
  color: var(--green);
}
.ticker-dn {
  color: var(--red);
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes silk-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes silk-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes silk-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.silk-reveal {
  opacity: 0;
}
.silk-reveal.visible {
  animation: silk-in 0.9s var(--silk) forwards;
}
.silk-reveal-left {
  opacity: 0;
}
.silk-reveal-left.visible {
  animation: silk-in-left 0.9s var(--silk) forwards;
}
.vedio-section {
      grid-column: 1 / -1;
          width: 60%;
    margin: 0 auto;
}
.silk-reveal-right {
  opacity: 0;
}
.silk-reveal-right.visible {
  animation: silk-in-right 0.9s var(--silk) forwards;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 max(48px, calc((100vw - var(--max-w)) / 2));
  border-bottom: 1px solid transparent;
  transform: translateY(36px);
  transition:
    background 0.6s var(--silk),
    border-color 0.6s var(--silk),
    transform 0.5s var(--silk);
}
nav > * {
  position: relative;
}
nav.scrolled {
  background: rgba(15, 19, 25, 0.95);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  transform: translateY(0);
}
.nav-logo {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--sky);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 6px;
  transition:
    color 0.4s var(--silk),
    background 0.4s var(--silk);
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.5s var(--silk),
    color 0.5s var(--silk);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
}
.btn-primary {
  background: var(--sky);
  border: 1px solid var(--sky);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.5s var(--silk),
    transform 0.4s var(--silk);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--sky2);
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 100px 24px 60px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
  flex-shrink: 0;
}
.mobile-menu a:hover {
  color: var(--sky);
}
.mobile-menu .m-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  margin-top: 20px;
  flex-shrink: 0;
}
.mobile-menu .btn-primary,
.mobile-menu .btn-ghost {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: calc(36px + var(--nav-h) + 60px);
  padding-bottom: 80px;
  padding-left: max(48px, calc((100vw - var(--max-w)) / 2));
  padding-right: max(48px, calc((100vw - var(--max-w)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 119px,
      rgba(74, 158, 232, 0.35) 119px,
      rgba(74, 158, 232, 0.35) 120px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 119px,
      rgba(74, 158, 232, 0.35) 119px,
      rgba(74, 158, 232, 0.35) 120px
    );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 0% 0%,
    #000 0%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 0% 0%,
    #000 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(74, 158, 232, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 158, 232, 0.1);
  border: 1px solid rgba(74, 158, 232, 0.25);
  color: var(--sky);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--sky);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(40px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--sky);
}
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-hero {
  background: var(--sky);
  border: none;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.6s var(--silk),
    transform 0.6s var(--silk),
    box-shadow 0.6s var(--silk);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero:hover {
  background: var(--sky2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74, 158, 232, 0.25);
}
.btn-hero svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s var(--silk);
}
.btn-hero:hover svg {
  transform: translateX(3px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 0.5s var(--silk),
    color 0.5s var(--silk);
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--sky);
  margin-right: -10px;
}
.hero-trust-text {
  font-size: 13px;
  color: var(--text2);
  margin-left: 18px;
}
.hero-trust-text strong {
  color: var(--text);
  font-weight: 500;
}

/* HERO DASHBOARD MOCKUP */
.hero-visual {
  position: relative;
}
.dash-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.dash-topbar {
  background: var(--bg3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.dash-dots {
  display: flex;
  gap: 6px;
}
.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-title-bar {
  font-size: 12px;
  color: var(--text3);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.dash-body {
  padding: 20px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dash-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.dash-stat-label {
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dash-stat-val {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.dash-stat-change {
  font-size: 10px;
  margin-top: 2px;
}
.chart-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.chart-head-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
}
.chart-badge {
  font-size: 10px;
  background: rgba(61, 204, 142, 0.12);
  color: var(--green);
  border: 1px solid rgba(61, 204, 142, 0.2);
  padding: 2px 8px;
  border-radius: 10px;
}
.tx-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tx-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
}
.tx-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.tx-info {
  flex: 1;
}
.tx-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}
.tx-date {
  font-size: 10px;
  color: var(--text3);
}
.tx-amount {
  font-size: 13px;
  font-weight: 600;
}

/* FLOAT BADGES */
.float-badge {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
.float-badge:nth-child(2) {
  animation-delay: 1.5s;
}
.float-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.float-badge-info .val {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.float-badge-info .lbl {
  font-size: 10px;
  color: var(--text3);
}
.fb-left {
  left: -60px;
  top: 30%;
}
.fb-right {
  right: -50px;
  bottom: 25%;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* LOGOS */
.logos-section {
  padding: 40px max(48px, calc((100vw - var(--max-w)) / 2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-width: 100%;
}
.logos-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 24px;
}
.logos-track-wrap {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  width: 100%;
}
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.logos-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 22s linear infinite;
  width: max-content;
  will-change: transform;
  flex-shrink: 0;
}
.logo-item {
  padding: 0 40px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}

/* STATS */
.stats-section {
  padding: 60px max(48px, calc((100vw - var(--max-w)) / 2));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: var(--bg);
}
.stat-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.6s var(--silk),
    transform 0.6s var(--silk),
    background 0.6s var(--silk);
}
.stat-block:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  background: var(--bg3);
}
.stat-icon {
  width: 38px;
  height: 38px;
  background: rgba(74, 158, 232, 0.1);
  border: 1px solid rgba(74, 158, 232, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  transition: transform 0.6s var(--silk);
}
.stat-block:hover .stat-icon {
  transform: scale(1.08) rotate(-4deg);
}
.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  border: 1px solid var(--sky);
  opacity: 0;
  pointer-events: none;
}
.stat-block:hover .stat-icon::before {
  animation: ring-pulse 1.4s var(--silk) infinite;
}
.stat-block:hover .stat-icon::after {
  animation: ring-pulse 1.4s var(--silk) infinite;
  animation-delay: 0.7s;
}
@keyframes ring-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
.stat-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3vw, 24px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: #9eb3c7;
  font-weight: 400;
  margin-bottom: 0px;
}
.stat-bar-wrap {
  background: var(--bg3);
  border-radius: 4px;
  height: 4px;
  margin-bottom: 8px;
}
.stat-bar {
  height: 100%;
  border-radius: 4px;
  background: var(--sky);
  transition: width 1.2s ease;
}
.stat-trend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
}
.stat-trend svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* FEATURES STICKY STACK */
.features-section {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
}
.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.7;
}

.sticky-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sticky-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sticky-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition:
    border-color 0.6s var(--silk),
    background 0.6s var(--silk),
    transform 0.6s var(--silk);
  position: relative;
  overflow: hidden;
}
.sticky-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sky);
  opacity: 0;
  transition: opacity 0.5s var(--silk);
}
.sticky-card:hover {
  transform: translateX(4px);
}
.sticky-card.active {
  border-color: var(--border2);
  background: var(--bg3);
}
.sticky-card.active::before {
  opacity: 1;
}
.sticky-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 158, 232, 0.1);
  border: 1px solid rgba(74, 158, 232, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.sticky-card.active .sticky-card-icon {
  background: rgba(74, 158, 232, 0.18);
}
.sticky-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sticky-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.sticky-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
}
.sticky-card-pills {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.sc-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(74, 158, 232, 0.08);
  border: 1px solid rgba(74, 158, 232, 0.15);
  color: var(--sky2);
}

/* STICKY PANEL */
.sticky-panel-wrap {
  position: sticky;
  top: calc(36px + var(--nav-h) + 32px);
}
.sticky-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}
.panel-topbar {
  background: var(--bg3);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.panel-dots {
  display: flex;
  gap: 5px;
}
.panel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.panel-content {
  padding: 24px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel-view {
  display: none;
}
.panel-view.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadein 0.35s ease;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* panel mockups */
.pm-row {
  display: flex;
  gap: 10px;
}
.pm-card {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.pm-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.pm-val {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.pm-change {
  font-size: 11px;
  margin-top: 3px;
}
.pm-bar-wrap {
  background: var(--bg);
  border-radius: 6px;
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
}
.pm-bar {
  height: 100%;
  border-radius: 6px;
  background: var(--sky);
}
.pm-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.pm-list-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.pm-list-info {
  flex: 1;
}
.pm-list-name {
  font-size: 12px;
  font-weight: 500;
}
.pm-list-sub {
  font-size: 10px;
  color: var(--text3);
}
.pm-list-amt {
  font-size: 13px;
  font-weight: 600;
}
.pm-chart-mini {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.pm-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 8px;
}
.pm-spark-bar {
  flex: 1;
  background: rgba(74, 158, 232, 0.25);
  border-radius: 3px 3px 0 0;
  border-top: 2px solid var(--sky);
  transition: height 0.4s ease;
}
.pm-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pm-sec-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-sec-icon {
  font-size: 20px;
}
.pm-sec-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}
.pm-sec-status {
  font-size: 10px;
  color: var(--green);
}

/* DASHBOARD PREVIEW */
.dashboard-section {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dashboard-inner {
  max-width: 900px;
  margin: 0 auto;
}
.dashboard-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
}
.dp-topbar {
  background: var(--bg2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.dp-title {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.dp-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
}
.dp-live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.dp-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.dp-chart-area {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.dp-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.dp-chart-val {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}
.dp-chart-change {
  font-size: 12px;
  color: var(--green);
  margin-top: 4px;
}
.dp-chart-period {
  display: flex;
  gap: 4px;
}
.dp-period-btn {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text3);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.dp-period-btn.active {
  background: var(--sky4);
  border-color: var(--sky3);
  color: var(--sky);
}
.dp-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dp-side-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.dp-side-label {
  font-size: 10px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.dp-side-val {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.dp-side-change {
  font-size: 11px;
  margin-top: 4px;
}
.dp-allocations {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dp-alloc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dp-alloc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dp-alloc-name {
  font-size: 12px;
  color: var(--text2);
  flex: 1;
}
.dp-alloc-pct {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}
.dp-alloc-bar-wrap {
  flex: 1;
  background: var(--bg3);
  border-radius: 3px;
  height: 4px;
}
.dp-alloc-bar {
  height: 100%;
  border-radius: 3px;
}

/* PRICING */
.pricing-section {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
}
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  margin-top: 32px;
}
.toggle-label {
  font-size: 14px;
  color: var(--text2);
}
.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.toggle-switch.on {
  background: var(--sky3);
}
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--text2);
  border-radius: 50%;
  transition:
    transform 0.2s,
    background 0.2s;
}
.toggle-switch.on .toggle-knob {
  transform: translateX(20px);
  background: #fff;
}
.toggle-save {
  font-size: 11px;
  font-weight: 600;
  background: rgba(61, 204, 142, 0.12);
  color: var(--green);
  border: 1px solid rgba(61, 204, 142, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition:
    border-color 0.6s var(--silk),
    transform 0.6s var(--silk),
    box-shadow 0.6s var(--silk);
}
.price-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}
.price-card.featured {
  border-color: var(--sky3);
  background: var(--bg3);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky);
  color: #0a1a2c;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.price-plan {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 16px;
}
.price-amount {
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount sup {
  font-size: 20px;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.price-period {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}
.price-features li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.price-btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
}
.price-btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
}
.price-btn-primary {
  background: var(--sky);
  color: #0a1a2c;
}
.price-btn-primary:hover {
  background: var(--sky2);
}

/* SECURITY */
.security-section {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 0 auto;
}
.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sec-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    border-color 0.6s var(--silk),
    transform 0.6s var(--silk);
}
.sec-badge:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.sec-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 158, 232, 0.1);
  border: 1px solid rgba(74, 158, 232, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sec-badge-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.sec-badge-desc {
    font-size: 14px;
    color: #9eb3c7;
    line-height: 1.5;
}
.sec-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
  margin-top: 4px;
}
.sec-badge-status::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
}
.testi-track-wrap {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
  max-width: 100%;
  width: 100%;
}
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testi-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.testi-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.testi-track {
  display: flex;
  gap: 16px;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
  will-change: transform;
  flex-shrink: 0;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  flex-shrink: 0;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--sky);
  stroke: none;
}
.testi-quote {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testi-role {
  font-size: 11px;
  color: var(--text3);
}

/* APP DOWNLOAD */
.app-section {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 119px,
      rgba(74, 158, 232, 0.35) 119px,
      rgba(74, 158, 232, 0.35) 120px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 119px,
      rgba(74, 158, 232, 0.35) 119px,
      rgba(74, 158, 232, 0.35) 120px
    );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 100% 100%,
    #000 0%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 100% 100%,
    #000 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.app-section > * {
  position: relative;
  z-index: 1;
}
.app-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.app-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 14px 26px;
  text-decoration: none;
  transition:
    border-color 0.5s var(--silk),
    background 0.5s var(--silk);
  min-width: 200px;
}
.app-store-btn:hover {
  border-color: var(--sky);
  background: var(--bg4);
}
.app-store-btn svg {
  fill: var(--text);
  flex-shrink: 0;
}
.app-store-btn-info {
  display: flex;
  flex-direction: column;
}
.app-store-btn-sub {
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.02em;
}
.app-store-btn-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.01em;
}
.phone-mockup {
  width: 220px;
  margin: 0 auto;
  background: var(--bg3);
  border: 2px solid var(--border2);
  border-radius: 36px;
  padding: 20px 14px;
  position: relative;
}
.phone-notch {
  width: 70px;
  height: 20px;
  background: var(--bg);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 16px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 16px;
  padding: 16px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.phone-greeting {
  font-size: 12px;
  color: var(--text3);
}
.phone-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  font-family: "Outfit", sans-serif;
}
.phone-balance {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.phone-bal-label {
  font-size: 9px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-bal-val {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-top: 4px;
}
.phone-bal-change {
  font-size: 10px;
  color: var(--green);
  margin-top: 2px;
}
.phone-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.phone-quick-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 9px;
  color: var(--text2);
}
.phone-quick-icon {
  font-size: 16px;
  margin-bottom: 3px;
}
.phone-chart-mini {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.phone-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}
.phone-spark-bar {
  flex: 1;
  background: rgba(74, 158, 232, 0.2);
  border-radius: 2px 2px 0 0;
  border-top: 1.5px solid var(--sky);
}
.phone-qr {
  width: 60px;
  height: 60px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text3);
}

/* FAQ */
.faq-section {
  padding: 100px max(48px, calc((100vw - var(--max-w)) / 2));
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140%;
  height: 140%;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 119px,
      rgba(74, 158, 232, 0.35) 119px,
      rgba(74, 158, 232, 0.35) 120px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 119px,
      rgba(74, 158, 232, 0.35) 119px,
      rgba(74, 158, 232, 0.35) 120px
    );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 0% 100%,
    #000 0%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse 100% 100% at 0% 100%,
    #000 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.faq-section > * {
  position: relative;
  z-index: 1;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: rgba(20, 25, 32, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.5s var(--silk),
    background 0.5s var(--silk);
}
.faq-item.open {
  border-color: var(--border2);
  background: rgba(20, 25, 32, 0.65);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.4s var(--silk);
}
.faq-q:hover .faq-q-text {
  color: var(--sky);
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--text3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    transform 0.6s var(--silk),
    stroke 0.4s var(--silk);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--sky);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s var(--silk),
    padding 0.5s var(--silk);
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  padding: 0 24px;
  font-weight: 300;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* FOOTER */
footer {
  padding: 40px max(48px, calc((100vw - var(--max-w)) / 2)) 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 28px;
  align-items: start;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text3);
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-newsletter {
  display: flex;
  gap: 8px;
}
.footer-input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  outline: none;
}
.footer-input::placeholder {
  color: var(--text3);
}
.footer-input:focus {
  border-color: var(--sky);
}
.footer-sub-btn {
  background: var(--sky);
  border: none;
  color: #0a1a2c;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer-sub-btn:hover {
  background: var(--sky2);
}
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--sky);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  color: var(--text3);
}
.footer-link {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.4s var(--silk);
}
.footer-link:hover {
  color: var(--sky);
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s;
}
.social-btn:hover {
  border-color: var(--sky);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text3);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: calc(36px + var(--nav-h) + 40px) 24px 60px;
    gap: 40px;
  }
  .fb-left,
  .fb-right {
    display: none;
  }
  .stats-section {
    grid-template-columns: 1fr 1fr;
  }
  .features-section,
  .pricing-section,
  .faq-section,
  .testimonials-section,
  .dashboard-section,
  .logos-section,
  .security-section,
  .app-section,
  .stats-section {
    padding: 60px 24px;
  }
  footer {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .sticky-layout {
    grid-template-columns: 1fr;
  }
  .sticky-panel-wrap {
    position: static;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .security-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .app-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .dp-body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .stats-section {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  .pricing-grid {
    gap: 12px;
  }
}
.process-flow {
  width: fit-content;
  max-width: calc(100% - 30px);
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: linear-gradient(135deg, #182f68, #294a91);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;

  box-shadow:
    0 12px 35px rgba(16, 42, 92, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  font-family: Arial, sans-serif;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 5px;

  padding: 5px 12px;
  border-radius: 9px;

  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;

  white-space: nowrap;

  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;
  flex: 0 0 25px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #9fc9ff;
  font-size: 11px;
  font-weight: 700;
}

.arrow {
  color: #63b0ff;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .process-flow {
    gap: 4px;
    padding: 12px 14px;
  }

  .process-step {
    padding: 8px 7px;
    gap: 6px;
    font-size: 14px;
  }

  .step-number {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
    font-size: 10px;
  }

  .arrow {
    font-size: 21px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .process-flow {
    width: calc(100% - 30px);
    max-width: 420px;

    margin: 25px auto;
    padding: 18px 15px;

    flex-direction: column;
    gap: 3px;

    box-sizing: border-box;
  }

  .process-step {
    width: 100%;
    box-sizing: border-box;

    justify-content: flex-start;

    padding: 11px 15px;

    font-size: 15px;
    letter-spacing: 0.4px;
  }

  .step-number {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    font-size: 10px;
  }

  .arrow {
    font-size: 22px;

    /* Change horizontal arrow → into ↓ */
    transform: rotate(90deg);

    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .process-step:hover {
    transform: none;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {
  .process-flow {
    width: calc(100% - 20px);
    padding: 15px 10px;
    border-radius: 12px;
  }

  .process-step {
    padding: 10px 12px;
    font-size: 14px;
  }

  .step-number {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }

  .arrow {
    font-size: 20px;
  }
}
/* ==========================================
   OBJECTIVE SECTION
========================================== */

.objective-section {
  position: relative;
  overflow: hidden;

  padding: 50px 0 50px;

  background: #ffffff;
}

/* subtle background */

.objective-section::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgba(47, 108, 224, 0.05);

  filter: blur(20px);
}

/* ==========================================
   CONTAINER
========================================== */

.objective-section .container {
  position: relative;
  z-index: 2;

  max-width: 1240px;

  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   HEADER
========================================== */

.objective-header {
  max-width: 850px;
}

.objective-label {
  display: inline-flex;
  align-items: center;

  padding: 8px 16px;

  border-radius: 30px;

  background: #edf4ff;

  color: #1558d6;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.2px;
}

/* HEADING */

.objective-header h2 {
  margin: 24px 0 14px;

  color: #101827;

  font-size: clamp(42px, 4.2vw, 44px);

  line-height: 1.1;

  font-weight: 750;
}

.objective-header h2 span {
  color: var(--sky);
}

/* SUBTITLE */

.objective-header > p {
  margin: 0;

  color: #46627d;

  font-size: 20px;

  line-height: 1.7;
}

/* ==========================================
   CARDS
========================================== */

.objective-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin-top: 48px;
}

.objective-card {
  position: relative;

  min-height: 220px;

  padding: 28px;

  box-sizing: border-box;

  overflow: hidden;

  border: 1px solid #dfe8f2;

  border-radius: 16px;

  background: linear-gradient(145deg, #f5f8fc, #edf3f9);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* CARD TOP */

.objective-card-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* NUMBER */

.objective-number {
  color: #9ab0c6;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;
}

/* ICON */

.objective-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #e1edff;

  color: #2469d7;

  font-size: 19px;

  transition: 0.35s ease;
}

/* CARD HEADING */

.objective-card h3 {
  margin: 32px 0 0;

  color: #123e87;

  font-size: 22px;

  line-height: 1.4;

  font-weight: 650;

  letter-spacing: -0.3px;
}

/* BOTTOM LINE */

.card-line {
  position: absolute;

  left: 28px;
  bottom: 25px;

  width: 45px;
  height: 3px;

  border-radius: 5px;

  background: var(--sky);

  transition: width 0.35s ease;
}

/* ==========================================
   HIGHLIGHT CARD
========================================== */

.objective-card-highlight {
  border-color: #c9dcf7;

  background: linear-gradient(145deg, #edf5ff, #e6f0fc);
}

.objective-card-highlight .objective-icon {
  background: #d5e7ff;

  color: #1462d5;
}

/* ==========================================
   HOVER
========================================== */

.objective-card:hover {
  transform: translateY(-7px);

  border-color: #a9c9f3;

  box-shadow: 0 18px 45px rgba(27, 78, 140, 0.12);
}

.objective-card:hover .objective-icon {
  transform: scale(1.08);

  background: var(--sky);

  color: #ffffff;
}

.objective-card:hover .card-line {
  width: 75px;
}

/* ==========================================
   BOTTOM DESCRIPTION
========================================== */

.objective-bottom {
  position: relative;

  max-width: 930px;

  margin-top: 48px;

  padding-left: 25px;
}

.bottom-accent {
  position: absolute;

  left: 0;
  top: 6px;

  width: 4px;
  height: calc(100% - 12px);

  border-radius: 5px;

  background: #2774df;
}

.objective-bottom p {
  margin: 0;

  color: #46627d;

  font-size: 19px;

  line-height: 1.85;
}

.objective-bottom strong {
  color: #173f82;

  font-weight: 700;
}
/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media (max-width: 767px) {
  .objective-section {
    padding: 60px 0 65px;
    overflow: hidden;
  }

  .objective-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 18px;
    box-sizing: border-box;
  }

  /* HEADER */
  .objective-header {
    width: 100%;
  }

  .objective-label {
    display: inline-flex;
    font-size: 10px;
    padding: 8px 13px;
    letter-spacing: 1px;
  }

  .objective-header h2 {
    margin: 18px 0 12px;

    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .objective-header > p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;
  }

  /* CARDS */
  .objective-grid {
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 14px;

    margin-top: 30px;
  }

  .objective-card,
  .objective-card:last-child {
    width: 100%;
    min-height: 175px;

    padding: 22px;

    box-sizing: border-box;

    grid-column: auto;

    border-radius: 14px;
  }

  /* CARD TOP */
  .objective-card-top {
    width: 100%;
  }

  .objective-number {
    font-size: 12px;
  }

  .objective-icon {
    width: 42px;
    height: 42px;

    border-radius: 10px;

    font-size: 16px;
  }

  /* CARD TITLE */
  .objective-card h3 {
    margin: 24px 0 0;

    font-size: 19px;
    line-height: 1.4;

    letter-spacing: -0.2px;
  }

  /* CARD BOTTOM LINE */
  .card-line {
    left: 22px;
    bottom: 19px;

    width: 38px;
    height: 3px;
  }

  /* BOTTOM CONTENT */
  .objective-bottom {
    width: 100%;

    margin-top: 32px;

    padding-left: 18px;

    box-sizing: border-box;
  }

  .bottom-accent {
    left: 0;
    top: 5px;
    bottom: 5px;

    width: 3px;

    height: auto;
  }

  .objective-bottom p {
    margin: 0;

    font-size: 16px;
    line-height: 1.75;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
  .objective-section {
    padding: 50px 0 55px;
  }

  .objective-section .container {
    padding: 0 15px;
  }

  .objective-header h2 {
    font-size: 31px;

    line-height: 1.17;

    letter-spacing: -0.8px;
  }

  .objective-header > p {
    font-size: 15px;
  }

  .objective-grid {
    margin-top: 26px;

    gap: 12px;
  }

  .objective-card,
  .objective-card:last-child {
    min-height: 160px;

    padding: 20px;
  }

  .objective-card h3 {
    margin-top: 21px;

    font-size: 18px;
  }

  .objective-icon {
    width: 40px;
    height: 40px;
  }

  .card-line {
    left: 20px;
    bottom: 17px;
  }

  .objective-bottom {
    margin-top: 28px;
  }

  .objective-bottom p {
    font-size: 15px;

    line-height: 1.7;
  }
}

/* ==========================================
   VERY SMALL DEVICES
========================================== */

@media (max-width: 360px) {
  .objective-header h2 {
    font-size: 28px;
  }

  .objective-header > p {
    font-size: 14px;
  }

  .objective-card {
    min-height: 150px;
    padding: 18px;
  }

  .objective-card h3 {
    font-size: 17px;
  }
}
/* ==========================================
   PROBLEM SECTION
========================================== */

.problem-section {
  position: relative;
  overflow: hidden;

  padding: 50px 0 50px;

  background: #f5f8fc;
}

/* subtle background glow */

.problem-section::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  right: -180px;
  top: -180px;

  border-radius: 50%;

  background: rgba(45, 119, 224, 0.06);

  filter: blur(30px);

  pointer-events: none;
}

.problem-section .container {
  position: relative;
  z-index: 2;

  max-width: 1240px;

  margin: 0 auto;

  padding: 0 20px;
}

/* ==========================================
   MAIN LAYOUT
========================================== */

.problem-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 75px;

  align-items: center;
}

/* ==========================================
   LEFT CONTENT
========================================== */

.problem-content {
  max-width: 650px;
}

/* LABEL */

.section-label {
  display: inline-flex;

  align-items: center;

  padding: 8px 16px;

  border-radius: 30px;

  background: #e5efff;

  color: #145bd5;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.2px;
}

/* HEADING */

.problem-content h2 {
  margin: 25px 0 28px;

  color: #101a2f;

  font-size: clamp(42px, 4vw, 44px);

  line-height: 1.12;

  font-weight: 750;
}

.problem-content h2 span {
  color: var(--sky);
}

/* DESCRIPTION */

.problem-content > p {
  max-width: 620px;

  margin: 0;

  color: #47627d;

  font-size: 19px;

  line-height: 1.85;
}

/* ==========================================
   BACKLOG BOX
========================================== */

.backlog-box {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 38px;

  padding: 22px 16px;

  border: 1px solid #d9e3ee;

  border-radius: 14px;

  background: #ffffff;

  box-shadow: 0 12px 30px rgba(28, 67, 108, 0.06);
}

.backlog-item {
    color: #ef3539;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.5;
    border: 1px solid #ffc6c8;
    background: linear-gradient(135deg, #fff8f8, #fff1f1);
    padding: 7px;
    border-radius: 16px;
}

.backlog-box > span {
  color: #e2292f;

  font-size: 22px;

  font-weight: 400;
}

/* ==========================================
   RIGHT VISUAL
========================================== */

.problem-visual {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  min-height: 500px;

  padding: 30px 0;
}

/* ==========================================
   PROBLEM CARDS
========================================== */

.problem-card {
  position: relative;

  width: 100%;

  max-width: 560px;

  padding: 30px;

  box-sizing: border-box;

  border-radius: 16px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
}

/* RED CARD */

.problem-card-red {
  border: 1px solid #ffc6c8;

  background: linear-gradient(135deg, #fff8f8, #fff1f1);

  box-shadow: 0 15px 35px rgba(207, 44, 48, 0.06);
}

/* GREEN CARD */

.problem-card-green {
  border: 1px solid #bdebcf;

  background: linear-gradient(135deg, #f4fff8, #edfff4);

  box-shadow: 0 15px 35px rgba(30, 151, 83, 0.07);
}

/* ==========================================
   CARD HEADER
========================================== */

.problem-card-header {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 14px;

  font-size: 13px;

  font-weight: 750;

  letter-spacing: 1px;
}

.problem-card-red .problem-card-header {
  color: #ef3539;
}

.problem-card-green .problem-card-header {
  color: #07964d;
}

/* ICON */

.problem-card-icon {
  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 15px;

  font-weight: 800;
}

.problem-card-red .problem-card-icon {
  background: #ffe0e1;

  color: #e92e33;
}

.problem-card-green .problem-card-icon {
  background: #d8f7e5;

  color: #07964d;
}

/* CARD TEXT */

.problem-card h3 {
  margin: 0;

  color: #183c69;

  font-size: 21px;

  line-height: 1.6;

  font-weight: 650;
}

.problem-card-red h3 {
  color: #8f2025;
}

.problem-card-green h3 {
  color: #075b36;
}

/* ==========================================
   CONNECTOR
========================================== */

.problem-connector {
  position: relative;

  width: 100%;

  height: 76px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.problem-connector span {
  position: absolute;

  top: 0;

  width: 1px;
  height: 100%;

  background: linear-gradient(to bottom, #efb7b9, #a9dcbc);
}

.problem-connector i {
  position: relative;

  z-index: 2;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #d7e2ed;

  border-radius: 50%;

  background: #f2f6fa;

  color: #7692ae;

  font-size: 20px;

  font-style: normal;
}

/* ==========================================
   DECORATIVE ORBS
========================================== */

.problem-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.orb-one {
  width: 10px;
  height: 10px;

  right: -15px;
  top: 120px;

  background: #ff8a8d;

  box-shadow: 0 0 20px rgba(255, 80, 80, 0.4);
}

.orb-two {
  width: 7px;
  height: 7px;

  left: -10px;
  bottom: 110px;

  background: #48c98a;

  box-shadow: 0 0 20px rgba(30, 180, 100, 0.4);
}
@media (max-width: 767px) {
  .problem-section {
    padding: 60px 0 70px;
  }

  .problem-section .container {
    padding: 0 18px;
  }

  /* ==================================
       LEFT CONTENT
    ================================== */

  .problem-content {
    width: 100%;
  }

  .section-label {
    padding: 7px 13px;

    font-size: 10px;

    letter-spacing: 0.9px;
  }

  .problem-content h2 {
    margin: 20px 0 20px;

    font-size: 34px;

    line-height: 1.16;

    letter-spacing: -1px;
  }

  .problem-content > p {
    font-size: 16px;

    line-height: 1.75;
  }

  /* ==================================
       BACKLOG
    ================================== */

  .backlog-box {
    margin-top: 28px;

    padding: 18px 16px;

    gap: 5px 8px;

    border-radius: 13px;
  }

  .backlog-item {
    font-size: 15px;
  }

  .backlog-box > span {
    font-size: 18px;
  }

  /* ==================================
       RIGHT SIDE
    ================================== */

  .problem-wrapper {
    gap: 35px;
  }

  .problem-visual {
    min-height: auto;

    padding: 0;
  }

  /* ==================================
       CARDS
    ================================== */

  .problem-card {
    width: 100%;

    padding: 22px;

    border-radius: 14px;
  }

  .problem-card-header {
    gap: 9px;

    margin-bottom: 12px;

    font-size: 10px;

    letter-spacing: 0.8px;
  }

  .problem-card-icon {
    width: 28px;
    height: 28px;

    font-size: 13px;
  }

  .problem-card h3 {
    font-size: 18px;

    line-height: 1.55;
  }

  /* ==================================
       CONNECTOR
    ================================== */

  .problem-connector {
    height: 65px;
  }

  .problem-connector i {
    width: 34px;
    height: 34px;

    font-size: 17px;
  }

  /* hide decoration */

  .problem-orb {
    display: none;
  }
}
@media (max-width: 400px) {
  .problem-section {
    padding: 50px 0 60px;
  }

  .problem-section .container {
    padding: 0 15px;
  }

  .problem-content h2 {
    font-size: 30px;

    letter-spacing: -0.8px;
  }

  .problem-content > p {
    font-size: 15px;
  }

  .backlog-box {
    padding: 16px;
  }

  .backlog-item {
    font-size: 14px;
  }

  .problem-card {
    padding: 19px;
  }

  .problem-card h3 {
    font-size: 17px;
  }
}
.Solutionsection {
  grid-column: 1 / -1;
}
.smart-section {
  position: relative;
  overflow: hidden;
  padding: 50px 24px;
  background: #f5f8fc;
  font-family: Inter, system-ui, sans-serif;
}

.smart-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(54, 151, 235, 0.10),
    transparent 70%
  );
  pointer-events: none;
}

.smart-container {
  position: relative;
  max-width: 1240px;
  margin: auto;
}


/* -------------------------
   Main blocks
------------------------- */

.smart-block {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: center;
    padding: 50px 0;
}

.student-block {
  border-bottom: 1px solid #dfe6ef;
}

.school-block {
  padding-top: 20px;
}


/* -------------------------
   Typography
------------------------- */

.smart-content {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 18px;

  border-radius: 999px;

  background: #eaf3ff;
  border: 1px solid #d6e9ff;

  color: var(--sky);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.smart-content h2 {
  margin: 0;

  color: #071b3a;

  font-size: clamp(38px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -2px;
  font-weight: 750;
      margin-bottom: 16px;
}

.smart-content h2 span {
  display: block;
  color: var(--sky);
}

.smart-content p {
    max-width: 620px;
    margin: 0;
    color: #47627d;
    font-size: 19px;
}


/* -------------------------
   Insight card
------------------------- */

.insight-card,
.school-card {
  position: relative;

  padding: 30px;

  border: 1px solid rgba(30, 92, 160, 0.14);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.88);

  box-shadow:
    0 20px 60px rgba(19, 57, 95, 0.10),
    0 4px 14px rgba(19, 57, 95, 0.05);

  backdrop-filter: blur(10px);
}

.insight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;

  background: linear-gradient(
    90deg,
    #247ed7,
    #54b7ff
  );

  border-radius: 0 0 10px 10px;
}

.card-label {
  margin-bottom: 25px;

  color: #91a2b7;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.priority-label {
  margin-bottom: 7px;

  color: #91a2b7;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.insight-card h3 {
  margin: 0;

  color: #09234a;

  font-size: 17px;
  line-height: 1.45;
}

.divider {
  height: 1px;
  margin: 20px 0;

  background: #e3e9f1;
}

.insight-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}

.insight-card li {
  display: flex;
  gap: 9px;

  margin: 12px 0;

  color: #50657d;

  font-size: 13px;
  line-height: 1.5;
}

.insight-card li span {
  color: #20b891;
  font-weight: 700;
}

.priority-badge {
  display: inline-flex;

  padding: 7px 11px;

  border-radius: 7px;

  background: #fff5d8;
  color: #b87800;

  font-size: 10px;
  font-weight: 700;
}


/* -------------------------
   School benefits
------------------------- */

.benefits {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.benefits li {
  display: flex;
  gap: 11px;
  align-items: flex-start;

  margin: 13px 0;

  color: #42617e;

  font-size: 14px;
  line-height: 1.5;
}

.benefits li span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 17px;
  height: 17px;

  flex-shrink: 0;

  border-radius: 50%;

  color: #277fe0;

  font-size: 11px;
  font-weight: 700;
}


/* -------------------------
   School CTA
------------------------- */

.school-card {
  padding: 34px;
}

.school-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 22px;

  border-radius: 12px;

  background: linear-gradient(
    135deg,
    #eaf4ff,
    #dcecff
  );

  color: #237bd5;

  font-size: 20px;
}

.school-card h3 {
  margin: 0 0 12px;

  color: #09234a;

  font-size: 22px;
  letter-spacing: -0.5px;
}

.school-card p {
  margin: 0 0 24px;

  color: #62748b;

  font-size: 14px;
  line-height: 1.7;
}

.card-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 13px 18px;

  border-radius: 9px;

  background: var(--sky);
  color: white;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  box-shadow: 0 8px 20px rgba(33, 101, 216, 0.22);

  transition: 0.25s ease;
}

.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(33, 101, 216, 0.3);
}

.card-button span {
  font-size: 17px;
}


/* -------------------------
   Tablet
------------------------- */

@media (max-width: 900px) {

  .smart-block {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .smart-content {
    max-width: 700px;
  }

  .insight-card,
  .school-card {
    max-width: 600px;
    width: 100%;
  }

}


/* -------------------------
   Mobile
------------------------- */

@media (max-width: 600px) {

  .smart-section {
    padding: 65px 20px;
  }

  .smart-block {
    padding: 55px 0;
    gap: 32px;
  }

  .school-block {
    padding-top: 55px;
  }

  .smart-content h2 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .smart-content p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .insight-card,
  .school-card {
    padding: 24px;
    border-radius: 18px;
  }

  .insight-card h3 {
    font-size: 16px;
  }

  .school-card h3 {
    font-size: 20px;
  }

  .benefits li {
    font-size: 13px;
  }

}

/* ==============================
   Contact Section
================================ */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(69, 111, 255, 0.20),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #101c3d 0%,
            #172b60 50%,
            #1d3c83 100%
        );

    color: #ffffff;
}

/* Decorative glow */

.contact-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    pointer-events: none;
}

.contact-glow-left {
    left: -180px;
    bottom: -180px;
    background: #4f7cff;
}

.contact-glow-right {
    right: -180px;
    top: -150px;
    background: #7195ff;
}


/* Container */

.contact-container {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}


/* Badge */

.contact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    color: #b9d3ff;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 24px;
}


/* Heading */

.contact-container h2 {
    margin: 0 auto;

    max-width: 800px;

    font-family: Arial, sans-serif;
    font-size: clamp(19px, 5vw, 34px);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -2px;

    color: #ffffff;
}


/* Description */

.contact-description {
    max-width: 760px;

    margin: 28px auto 0;

    color: #a9c9ff;

    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
}


/* Email */

.contact-email {
    display: inline-block;

    margin-top: 24px;

    color: #c6ddff;

    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.contact-email:hover {
    color: #ffffff;
    transform: translateY(-2px);
}


/* Buttons */

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    margin-top: 38px;
}


/* Common button */

.btn {
    min-width: 175px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 8px 20px;

    border-radius: 10px;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.btn span {
    font-size: 20px;

    transition: transform 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover span {
    transform: translateX(4px);
}


/* Primary button */

.btn-primary {
    color: var(--sky);

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    background: #f1f6ff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


/* Secondary button */

.btn-secondary {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.45);

    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.75);
}


/* ==============================
   Tablet
================================ */

@media (max-width: 768px) {

    .contact-section {
        padding: 80px 22px;
    }

    .contact-container h2 {
        font-size: clamp(36px, 8vw, 52px);
        letter-spacing: -1.5px;
    }

    .contact-description {
        font-size: 17px;
        line-height: 1.65;
    }

    .contact-email {
        font-size: 18px;
    }
    .vedio-section {
          width: 100%;
}
}


/* ==============================
   Mobile
================================ */

@media (max-width: 600px) {

    .contact-section {
        padding: 65px 20px;
    }

    .contact-badge {
        font-size: 10px;
        letter-spacing: 1.3px;

        padding: 7px 15px;

        margin-bottom: 20px;
    }

    .contact-container h2 {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .contact-description {
        margin-top: 20px;

        font-size: 16px;
        line-height: 1.65;
    }

    .contact-email {
        margin-top: 22px;

        font-size: 17px;
    }

    .contact-buttons {
        flex-direction: column;

        width: 100%;

        margin-top: 32px;
    }

    .btn {
        width: 100%;
        max-width: 340px;

        padding: 15px 20px;
    }

    .contact-glow {
        width: 220px;
        height: 220px;

        filter: blur(80px);
    }
}


/* Small phones */

@media (max-width: 380px) {

    .contact-section {
        padding: 55px 16px;
    }

    .contact-container h2 {
        font-size: 32px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-email {
        font-size: 16px;
    }
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}