:root {
  --navy: #0A1D4E;
  --blue: #5E7FA8;
  --light-blue: #EAF0F7;
  --white: #FFFFFF;
  --text-main: #132340;
  --text-light: #5C6F88;
  --line: #D5DFEC;
  --container: 1200px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% -20%, rgba(94,127,168,0.2), transparent 38%),
    radial-gradient(circle at 90% -10%, rgba(10,29,78,0.14), transparent 32%),
    linear-gradient(180deg, #FAFCFF 0%, #FFFFFF 55%, #F9FBFF 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 29, 78, 0.1);
}
.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img { height: 80px; width: auto; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: 0.2s ease;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a,
.submenu-toggle {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.main-nav a {
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5E7FA8, #0A1D4E);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav a:hover,
.submenu-toggle:hover { color: var(--blue); }

.has-submenu { position: relative; }
.submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(10, 29, 78, 0.12);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}
.submenu li a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.submenu li a:hover { background: var(--light-blue); }
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 40%;
  height: 280%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
  transform: rotate(20deg);
  transition: left 0.45s ease;
}
.btn:hover {
  background: var(--blue);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(21, 50, 96, 0.28);
}
.btn:hover::before { left: 120%; }
.btn-outline {
  border: 1px solid var(--line);
  color: var(--navy);
  background: #fff;
}
.btn-outline:hover {
  background: var(--light-blue);
  box-shadow: 0 10px 20px rgba(21, 50, 96, 0.15);
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.alt-bg { background: linear-gradient(180deg, #F5F8FD 0%, #FFFFFF 100%); }
.title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.title h1,
.title h2 {
  line-height: 1.12;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  color: var(--navy);
}
.title h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.title h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.title p { color: var(--text-light); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.landing-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(94,127,168,0.28), transparent 36%),
    radial-gradient(circle at 92% 12%, rgba(10,29,78,0.2), transparent 34%),
    linear-gradient(180deg, #F3F7FD 0%, #FFFFFF 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  z-index: 0;
  animation: drift 8s ease-in-out infinite;
}
.hero-orb.one {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(94,127,168,0.28) 0%, rgba(94,127,168,0) 70%);
  top: -80px;
  right: 8%;
}
.hero-orb.two {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(10,29,78,0.2) 0%, rgba(10,29,78,0) 70%);
  bottom: -140px;
  left: -70px;
  animation-delay: 1.5s;
}
.hero-copy,
.hero-card { position: relative; z-index: 1; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.hero-gradient {
  background: linear-gradient(90deg, #0A1D4E 0%, #5E7FA8 60%, #77A9D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-strong {
  color: #30435f;
  max-width: 58ch;
}
.hero-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 29, 78, 0.14);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.32) 45%, rgba(255,255,255,0) 65%);
  transform: translateX(-120%);
  animation: sheen 4.8s linear infinite;
}
.hero-card img {
  width: 100%;
  transform: scale(1.02);
}
.stats-band {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat-pill {
  border: 1px solid #C7D6E8;
  background: rgba(255,255,255,0.8);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 18px rgba(10, 29, 78, 0.08);
}
.stat-pill strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.05;
}
.stat-pill span {
  color: var(--text-light);
  font-size: 0.83rem;
}
.kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #E2EBF6;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
}
.lead { color: var(--text-light); font-size: 1.05rem; }
.inline-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(4px);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: auto -35% -55% -35%;
  height: 70%;
  background: radial-gradient(circle, rgba(94,127,168,0.28), rgba(94,127,168,0));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lift-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--text-light); }
.card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #9ab3d3;
  box-shadow: 0 20px 34px rgba(10, 29, 78, 0.2);
}
.card:hover::before { opacity: 1; }
.card:hover .icon-line {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 10px 20px rgba(94,127,168,0.25);
}
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -55px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(94,127,168,0.2), rgba(94,127,168,0));
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.icon-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--light-blue);
  color: var(--blue);
  margin-bottom: 10px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.list-clean { list-style: none; }
.list-clean li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--text-main);
}
.list-clean i { margin-top: 4px; color: var(--blue); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.site-footer {
  margin-top: 30px;
  background: var(--navy);
  color: #fff;
  padding: 52px 0 24px;
}

/* Modern Cursor: Antigravity effect */
.anti-cursor-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}
.anti-cursor-core {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7e9ff 0%, #8db2dd 55%, #5E7FA8 100%);
  box-shadow: 0 0 12px rgba(94,127,168,0.55);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.anti-cursor-ring {
  position: fixed;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(94,127,168,0.45);
  background: radial-gradient(circle, rgba(94,127,168,0.12) 0%, rgba(94,127,168,0.03) 65%, rgba(94,127,168,0) 100%);
  transform: translate(-50%, -50%);
  transition: width 0.24s ease, height 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

body.antigravity-on a,
body.antigravity-on button,
body.antigravity-on .btn,
body.antigravity-on .menu-toggle,
body.antigravity-on .submenu-toggle {
  cursor: none;
}
body.antigravity-on.cursor-hover .anti-cursor-ring {
  width: 74px;
  height: 74px;
  border-color: rgba(94,127,168,0.7);
  background: radial-gradient(circle, rgba(94,127,168,0.2) 0%, rgba(94,127,168,0.05) 58%, rgba(94,127,168,0) 100%);
}
body.antigravity-on.cursor-hover .anti-cursor-core {
  transform: translate(-50%, -50%) scale(1.32);
  box-shadow: 0 0 18px rgba(94,127,168,0.72);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0.9;
}
.footer-links a { text-decoration: underline; }

.page-hero {
  padding: 74px 0 40px;
  background:
    radial-gradient(circle at 10% 10%, rgba(94,127,168,0.2), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(10,29,78,0.12), transparent 28%),
    linear-gradient(180deg, #F5F8FD 0%, #FFFFFF 100%);
}

.pricing-snapshot {
  position: relative;
}
.snapshot-head {
  border: 1px solid #9fb6d4;
  border-radius: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 198, 236, 0.45), transparent 40%),
    linear-gradient(135deg, #0f2a63 0%, #1b3e84 46%, #5f88bb 100%);
  box-shadow: 0 18px 36px rgba(10, 29, 78, 0.25);
  margin-bottom: 18px;
}
.snapshot-head .kicker {
  background: rgba(255,255,255,0.15);
  color: #edf4ff;
}
.snapshot-head h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.snapshot-head p {
  color: #d8e7ff;
  max-width: 70ch;
}
.snapshot-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #adc2dc;
  background:
    radial-gradient(circle at 110% -10%, rgba(145,178,217,0.25), transparent 38%),
    rgba(255,255,255,0.88);
}
.snapshot-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -58px;
  bottom: -74px;
  background: radial-gradient(circle, rgba(94,127,168,0.2), rgba(94,127,168,0));
}
.snapshot-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  background: #dfeaf8;
  border: 1px solid #b6c9e0;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}
.snapshot-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 10px;
}
.snapshot-cloud-wrap {
  margin-top: 18px;
}
.snapshot-cloud {
  border: 1px solid #adc2dc;
  background: rgba(255,255,255,0.9);
}
.snapshot-chips {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.snapshot-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #b3c8e1;
  background: linear-gradient(180deg, #f2f7ff 0%, #e8f1fc 100%);
  color: #16315d;
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.snapshot-chip:hover {
  transform: translateY(-2px);
  border-color: #93afd0;
  box-shadow: 0 8px 16px rgba(10, 29, 78, 0.16);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.plan { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.plan-head {
  padding: 14px;
  color: #fff;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 800;
}
.head-basic { background: #1E7E5A; }
.head-pro { background: #2A5FB9; }
.head-premium { background: #D97A2D; }
.plan-body { padding: 22px; }
.price { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.per { color: var(--text-light); margin-bottom: 10px; }

.timeline {
  border-left: 2px solid var(--line);
  padding-left: 20px;
}
.timeline-item { margin-bottom: 18px; }
.timeline-item h3 { color: var(--navy); margin-bottom: 4px; }
.timeline-item p { color: var(--text-light); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}
textarea { min-height: 120px; resize: vertical; }

@keyframes drift {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(22px); }
}
@keyframes sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 16px;
  }
  .main-nav > ul > li > a,
  .submenu-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 11px 6px;
  }
  .submenu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 1px solid var(--line);
    margin: 4px 0 8px;
    display: none;
  }
  .has-submenu.open .submenu { display: block; }

  .hero-grid,
  .grid-3,
  .grid-2,
  .split,
  .pricing,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .stats-band { grid-template-columns: 1fr; }
  .anti-cursor-wrap { display: none; }
}
