:root {
  --brand-blue: #1537ff;
  --brand-violet: #6f32ff;
  --brand-cyan: #0a84ff;
  --brand-green: #12a84a;
  --brand-orange: #ff6b00;
  --ink: #070d34;
  --muted: #4f5d86;
  --soft: #f7f8ff;
  --soft-2: #f0f4ff;
  --border: #dde4f5;
  --shadow: 0 22px 55px rgba(42, 58, 130, 0.12);
  --shadow-sm: 0 12px 30px rgba(42, 58, 130, 0.09);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(21, 55, 255, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -44px;
  left: 1rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--brand-blue);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.navbar {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 228, 245, 0.78);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--ink);
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #1778ff 0%, #5038ff 50%, #8d2cff 100%);
  box-shadow: 0 14px 28px rgba(80, 56, 255, 0.28);
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-weight: 750;
  padding: 0.7rem 1rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.28rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-violet));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.section-padding {
  padding: 5.5rem 0;
}

.page-hero {
  padding: 8.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 72% 18%, rgba(111, 50, 255, 0.13), transparent 28%),
    radial-gradient(circle at 14% 22%, rgba(21, 55, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  overflow: hidden;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.08;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  -webkit-background-clip: text;
  background-clip: text;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  box-shadow: 0 14px 28px rgba(21, 55, 255, 0.25);
}

.primary-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21, 55, 255, 0.3);
}

.secondary-btn {
  color: var(--ink);
  border: 1px solid var(--border);
  background: #fff;
}

.secondary-btn:hover {
  color: var(--brand-blue);
  border-color: rgba(21, 55, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.soft-card {
  height: 100%;
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(42, 58, 130, 0.05);
  color: #000000;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 55, 255, 0.28);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  box-shadow: 0 14px 26px rgba(21, 55, 255, 0.22);
  font-size: 1.45rem;
}

.icon-green {
  background: linear-gradient(135deg, #0bb953, #0a8f47);
}

.icon-orange {
  background: linear-gradient(135deg, #ff7900, #ff4d00);
}

.icon-farm,
.icon-earth {
  background: linear-gradient(135deg, #3f8f2f, #8a6a2f);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.95rem;
  color: var(--brand-blue);
  background: rgba(21, 55, 255, 0.08);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.brand-gradient {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
}

.text-muted-custom {
  color: var(--muted);
}

.rounded-xl {
  border-radius: var(--radius);
}

.shadow-soft {
  box-shadow: var(--shadow);
}

.stats-card {
  height: 100%;
  padding: 1.35rem;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f8faff);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.stats-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1;
}

.logo-pill {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 850;
}

.cta-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(21, 55, 255, 0.28);
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-platform {
  position: absolute;
  right: 6%;
  bottom: 5%;
  width: min(78%, 520px);
  aspect-ratio: 1.36 / 1;
  border-radius: 34px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(231, 236, 255, 0.92)),
    #fff;
  border: 1px solid rgba(221, 228, 245, 0.92);
  box-shadow: 0 35px 75px rgba(21, 55, 255, 0.18);
  transform: perspective(900px) rotateX(55deg) rotateZ(-12deg);
}

.hero-platform::before,
.hero-platform::after {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 26px;
  border: 1px solid rgba(21, 55, 255, 0.16);
}

.hero-m {
  position: absolute;
  top: 40%;
  left: 40%;
  color: transparent;
  background: linear-gradient(145deg, #35a7ff 0%, #2648ff 38%, #6f32ff 68%, #b02cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  transform: perspective(760px) rotateX(14deg) rotateY(-18deg) rotateZ(-4deg);
  filter: drop-shadow(0 22px 14px rgba(21, 55, 255, 0.22)) drop-shadow(14px 20px 26px rgba(111, 50, 255, 0.2));
  text-shadow:
    1px 1px 0 #365dff,
    2px 2px 0 #3153f3,
    3px 3px 0 #2c49dc,
    4px 4px 0 #263fc5,
    5px 5px 0 #2237af,
    12px 20px 35px rgba(21, 55, 255, 0.35);
  transform-style: preserve-3d;
}

.floating-card {
  position: absolute;
  width: 116px;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  font-weight: 850;
}

.floating-card i {
  color: var(--brand-blue);
  font-size: 1.8rem;
}

.float-ai {
  top: 8%;
  left: 18%;
}

.float-scale {
  top: 40%;
  left: 5%;
}

.float-built {
  top: 24%;
  right: 0;
}

.float-india {
  right: 2%;
  bottom: 10%;
}

.soft-section {
  background: linear-gradient(180deg, #fbfcff 0%, #f5f7ff 100%);
}

.product-chip {
  display: inline-flex;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.chip-blue {
  color: var(--brand-blue);
  background: rgba(21, 55, 255, 0.1);
}

.chip-green {
  color: var(--brand-green);
  background: rgba(18, 168, 74, 0.1);
}

.chip-orange {
  color: var(--brand-orange);
  background: rgba(255, 107, 0, 0.1);
}

.chip-earth,
.chip-farm {
  color: #2f7d32;
  background: rgba(79, 121, 45, 0.12);
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  color: #334064;
}

.check-list i {
  color: var(--brand-green);
}

.table {
  vertical-align: middle;
}

.table th,
.table td {
  padding: 1rem;
}

.table thead th {
  color: var(--ink);
  background: #f7f8ff;
  border-bottom: 1px solid var(--border);
}

.form-control,
.form-select {
  min-height: 50px;
  border-color: var(--border);
  border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(21, 55, 255, 0.55);
  box-shadow: 0 0 0 0.22rem rgba(21, 55, 255, 0.12);
}

.accordion-button {
  color: var(--ink);
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: #f7f8ff;
  box-shadow: none;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.footer {
  padding: 4.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  background: #080d2a;
}

.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer a:hover {
  color: #fff;
}

.footer .form-control {
  border-color: rgba(255, 255, 255, 0.16);
}

.loading-state,
.empty-state {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.trust-strip {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(42, 58, 130, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 68px;
}

.trust-item .icon-box {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  box-shadow: none;
}

.mock-image,
.image-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  overflow: hidden;
  color: var(--brand-blue);
  background:
    radial-gradient(circle at 24% 20%, rgba(111, 50, 255, 0.16), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(10, 132, 255, 0.13), transparent 30%),
    linear-gradient(135deg, #fbfcff, #f1f4ff);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(21, 55, 255, 0.24);
  border-radius: 14px;
}

.image-placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 850;
}

.image-placeholder-content i {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 2.3rem;
}

.product-preview {
  min-height: 220px;
  padding: 1rem;
}

.quiz-preview {
  justify-content: flex-start;
  color: #fff;
  background: linear-gradient(135deg, #120a42, #2f1586 58%, #653dff);
}

.quiz-panel {
  width: 62%;
  min-width: 190px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.quiz-option {
  display: block;
  margin-top: 0.45rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  font-size: 0.78rem;
}

.dashboard-preview {
  background: linear-gradient(90deg, #f8fbff 0 34%, #fff 34% 100%);
}

.dashboard-sidebar {
  width: 34%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 1rem;
  border-right: 1px solid var(--border);
}

.dashboard-row {
  height: 9px;
  margin-bottom: 0.8rem;
  background: rgba(21, 55, 255, 0.16);
  border-radius: 999px;
}

.dashboard-main {
  position: relative;
  margin-left: 36%;
  width: 60%;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 90px;
}

.mini-bars span {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #76dfb2, #37a0ff);
}

.learning-preview {
  padding: 1.5rem;
  justify-content: flex-start;
  background: linear-gradient(135deg, #fff, #fff7f1);
}

.mitti-preview,
.farm-preview {
  padding: 1.25rem;
  justify-content: flex-start;
  color: #193614;
  background:
    radial-gradient(circle at 12% 18%, rgba(86, 145, 54, 0.22), transparent 30%),
    radial-gradient(circle at 85% 82%, rgba(138, 106, 47, 0.22), transparent 32%),
    linear-gradient(135deg, #f7fff2, #f4eadb);
}

.farm-card {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(63, 143, 47, 0.2);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(63, 91, 42, 0.1);
}

.farm-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: #f7fff2;
  border-radius: 12px;
  font-size: 0.88rem;
}

.farm-metric strong {
  color: #2f7d32;
}

.farm-reminder {
  margin-top: 0.8rem;
  padding: 0.65rem 0.75rem;
  color: #6a4c1f;
  background: #fff5df;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.course-card {
  width: 100%;
  padding: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.contact-illustration {
  min-height: 300px;
}

.envelope-shape {
  position: relative;
  width: 210px;
  height: 145px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  box-shadow: 0 24px 45px rgba(21, 55, 255, 0.24);
}

.envelope-shape::before,
.envelope-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 50% 58%, 100% 0, 100% 100%, 0 100%);
  background: rgba(255, 255, 255, 0.16);
}

.people-illustration {
  min-height: 360px;
  align-items: end;
  gap: 1rem;
  padding-bottom: 2rem;
}

.person-shape {
  width: 94px;
  height: 190px;
  border-radius: 48px 48px 18px 18px;
  background: linear-gradient(180deg, #7f5dff, #1e46e8);
  box-shadow: 0 18px 34px rgba(21, 55, 255, 0.2);
}

.person-shape:nth-child(2) {
  height: 240px;
  background: linear-gradient(180deg, #3b8cff, #6236ff);
}

.person-shape:nth-child(3) {
  height: 165px;
  background: linear-gradient(180deg, #a975ff, #2d54ff);
}

.founder-card {
  overflow: hidden;
}

.founder-photo-placeholder {
  min-height: 310px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
  font-weight: 850;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .section-padding {
    padding: 4.25rem 0;
  }

  .page-hero {
    padding: 7.5rem 0 3.75rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-platform {
    right: 8%;
    width: 76%;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 3.4rem 0;
  }

  .page-hero {
    padding: 6.75rem 0 3rem;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .floating-card {
    width: 94px;
    min-height: 94px;
    font-size: 0.78rem;
  }

  .float-scale {
    left: 0;
  }

  .hero-m {
    left: 29%;
    font-size: clamp(6rem, 28vw, 8rem);
  }
}
