:root {
  --navy-primary: #08274d;
  --navy-dark: #15314e;
  --navy-medium: #2b445c;

  --blue-accent: #2b445c;
  --green-primary: #4b9d30;
  --green-bright: #63b32e;
  --green-light: #7ac943;
  --white: #ffffff;
  --gray-bg: #e5e8ed;
  --gray-medium: #c9d0d8;
  --text-dark: #2f3742;

  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

@media (max-width: 991px) {
  .manu-white {
    background-color: #fff !important;
    padding-bottom: 10px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  color: var(--navy-primary);
  letter-spacing: -0.02em;
}
/*  */
/* ===== Main hero title modern look ===== */
.my-title {
  position: relative;
}

/* Underline accent wrapper */
.my-title .underline-accent {
  position: relative;
  display: inline-block;
}

.my-title .underline-accent svg {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  overflow: visible;
}

/* Draw-in animation for the underline path — triggers when parent .my-title is in-view */
.my-title .underline-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}

.my-title.in-view .underline-path {
  animation: drawUnderline 1s cubic-bezier(0.65, 0, 0.35, 1) 0.6s forwards;
}

@keyframes drawUnderline {
  to {
    stroke-dashoffset: 0;
  }
}

/* subtle entrance for whole title (works with your existing .reveal system) */
.my-title.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.my-title.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/*  */
.font-mono {
  font-family: var(--font-mono);
}

.text-green {
  color: var(--green-primary);
}

.bg-navy {
  background: var(--navy-primary);
}

a {
  text-decoration: none;
}

::selection {
  background: var(--green-light);
  color: var(--navy-primary);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}
/* ---------- Navbar ---------- */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0);
  transition:
    background 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(3, 27, 58, 0.08);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  right: -5px;
  bottom: -5px;
}

.brand-mark svg {
  position: relative;
  z-index: 2;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--navy-primary);
}

.brand-word span {
  color: var(--green-primary);
}

.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-medium);
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--green-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
}

.nav-link-custom:hover {
  color: var(--navy-primary);
}

.btn-demo {
  background: linear-gradient(
    120deg,
    var(--green-primary),
    var(--green-bright)
  );
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.62rem 1.4rem;
  border-radius: 100px;
  border: none;
  box-shadow: 0 8px 20px rgba(75, 157, 48, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(75, 157, 48, 0.38);
  color: #fff;
}

.btn-demo i {
  transition: transform 0.25s ease;
}

.btn-demo:hover i {
  transform: translateX(3px);
}

/* ---------- Dropdown toggle: separate hover effect (no shared underline) ---------- */
.nav-item.dropdown {
  position: relative;
}

.nav-link-custom.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* kill both the custom underline AND Bootstrap's default caret on this element */
.nav-link-custom.dropdown-toggle::after {
  display: none !important;
}

/* custom caret icon — pushed to the right via flex order */
.nav-link-custom.dropdown-toggle::before {
  content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  order: 2;
  transition: transform 0.25s ease;
}

.nav-item.dropdown.show .nav-link-custom.dropdown-toggle::before {
  transform: rotate(180deg);
}

.nav-link-custom.dropdown-toggle:hover,
.nav-item.dropdown.show .nav-link-custom.dropdown-toggle {
  color: var(--navy-primary);
}

/* ---------- Dropdown menu ---------- */
.gk-dropdown {
  border: none;
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: 0 12px 32px rgba(3, 27, 58, 0.14);

  /* plain CSS positioning — avoids Popper's post-render jump */
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  inset: auto !important;
  transform: none !important;
  margin: 0;
  margin-top: 0.5rem;
}

.gk-dropdown .dropdown-item {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-medium);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.gk-dropdown .dropdown-item:hover,
.gk-dropdown .dropdown-item:focus {
  background: rgba(75, 157, 48, 0.1);
  color: var(--navy-primary);
}

.gk-dropdown .dropdown-divider {
  margin: 0.35rem 0;
  border-color: var(--gray-medium);
}

/* Desktop: dropdown fixed width, floats below */
@media (min-width: 992px) {
  .gk-dropdown {
    min-width: 190px;
  }
}

/* Mobile: dropdown should sit inline inside the collapsed navbar,
   not float/overlay (overrides the absolute positioning above) */
@media (max-width: 991.98px) {
  .gk-dropdown {
    position: static !important;
    box-shadow: none;
    background: rgba(43, 68, 92, 0.04);
    margin-top: 0.25rem;
    transform: none !important;
  }
}

/* ---------- Play Video Button ---------- */
.btn-play-video {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(75, 157, 48, 0.18);
  animation: playPulse 2.4s ease-out infinite;
}

.play-ring-2 {
  animation-delay: 1.2s;
}

@keyframes playPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.play-core {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(8, 39, 77, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.play-core i {
  color: var(--navy-primary);
  font-size: 1.05rem;
  margin-left: 3px; /* optical centering for play triangle */
  transition: color 0.25s ease;
}

.btn-play-video:hover .play-core {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(75, 157, 48, 0.3);
}

.btn-play-video:hover .play-core i {
  color: var(--green-primary);
}

@media (max-width: 480px) {
  .btn-play-video {
    width: 54px;
    height: 54px;
  }
  .play-core {
    width: 44px;
    height: 44px;
  }
  .play-core i {
    font-size: 0.9rem;
  }
}

.btn-ghost-navy {
  border: 1.5px solid var(--gray-medium);
  color: var(--navy-primary);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-ghost-navy:hover {
  border-color: var(--navy-primary);
  background: var(--navy-primary);
  color: #fff;
}

.btn-ghost-white {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  background: transparent;
  transition: all 0.25s ease;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ---------- Call Now Button — Extraordinary ---------- */
.call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.5rem 0.55rem 0.55rem;
  border-radius: 100px;
  background: linear-gradient(
    135deg,
    var(--navy-primary),
    var(--navy-dark) 60%
  );
  box-shadow:
    0 10px 24px rgba(8, 39, 77, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 32px rgba(8, 39, 77, 0.4),
    0 0 0 4px rgba(75, 157, 48, 0.18);
}

.call-icon-wrap {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(75, 157, 48, 0.4);
}

.call-icon-wrap i {
  color: #fff;
  font-size: 0.95rem;
  animation: callRing 2.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes callRing {
  0%,
  70%,
  100% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-18deg);
  }
  80% {
    transform: rotate(14deg);
  }
  85% {
    transform: rotate(-10deg);
  }
  90% {
    transform: rotate(6deg);
  }
  95% {
    transform: rotate(0deg);
  }
}

.call-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(75, 157, 48, 0.5);
  animation: callPulseRing 2.6s ease-out infinite;
}

@keyframes callPulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.call-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.call-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.call-sub {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.call-sub::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 6px var(--green-bright);
  animation: dotBlink 1.6s ease-in-out infinite;
}

@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.call-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  z-index: 1;
  animation: callShineSweep 3.2s ease-in-out infinite;
}

@keyframes callShineSweep {
  0% {
    left: -60%;
  }
  40%,
  100% {
    left: 130%;
  }
}

@media (max-width: 480px) {
  .call-btn {
    padding: 0.5rem 1.2rem 0.5rem 0.5rem;
    gap: 0.6rem;
  }
  .call-icon-wrap {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .call-label {
    font-size: 0.86rem;
  }
  .call-sub {
    font-size: 0.6rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background:
    radial-gradient(circle at 8% 15%, rgba(75, 157, 48, 0.06), transparent 45%),
    radial-gradient(circle at 92% 85%, rgba(3, 27, 58, 0.05), transparent 40%),
    var(--white);
  overflow: hidden;
}

.ledger-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image: radial-gradient(var(--gray-medium) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--green-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(75, 157, 48, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(75, 157, 48, 0.18);
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 0.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 1.3rem 0 1.2rem;
}

.hero h1 .underline-accent {
  position: relative;
  white-space: nowrap;
}

.hero h1 .underline-accent svg {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
}

.hero p.lead-text {
  font-size: 1.12rem;
  color: var(--blue-accent);
  max-width: 520px;
  line-height: 1.65;
}

.hero-trust {
  font-size: 0.85rem;
  color: var(--blue-accent);
  font-weight: 500;
}

.hero-trust i {
  color: var(--green-primary);
}

/* 4image left */
/* ---------- Gonok Khata: Hero Feature Cards ---------- */
.ghk-feat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.ghk-feat-card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 108px;
  padding: 1rem 0.5rem 0.85rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(21, 49, 78, 0.07);
  box-shadow: 0 8px 20px rgba(8, 39, 77, 0.07);
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  animation:
    ghkFeatEnter 0.6s ease forwards,
    ghkFeatFloat 4.5s ease-in-out infinite;
}

.ghk-feat-delay-1 {
  animation-delay: 0.05s, 0.6s;
}
.ghk-feat-delay-2 {
  animation-delay: 0.15s, 0.7s;
}
.ghk-feat-delay-3 {
  animation-delay: 0.25s, 0.8s;
}
.ghk-feat-delay-4 {
  animation-delay: 0.35s, 0.9s;
}

@keyframes ghkFeatEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ghkFeatFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.ghk-feat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 157, 48, 0.35), transparent 70%);
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.ghk-feat-card:hover .ghk-feat-glow {
  opacity: 1;
}

.ghk-feat-card:hover {
  border-color: rgba(75, 157, 48, 0.3);
  box-shadow: 0 14px 30px rgba(75, 157, 48, 0.2);
}

.ghk-feat-imgwrap {
  position: relative;
  z-index: 1;
  width: 85px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
/* .ghk-feat-imgwrap {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
} */

.ghk-feat-card:hover .ghk-feat-imgwrap {
  transform: scale(1.12);
}

.ghk-feat-imgwrap img {
  width: 900%;
  height: 100%;
  object-fit: contain;
}

.ghk-feat-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-primary);
  text-align: center;
  transition: color 0.3s ease;
}

.ghk-feat-card:hover .ghk-feat-label {
  color: var(--green-primary);
}

/* ---------- Badge: New / Popular ---------- */
.ghk-feat-badge {
  position: absolute;
  top: -8px;
  right: -6px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(8, 39, 77, 0.25);
  transform: rotate(6deg);
  animation: ghkBadgePulse 1.8s ease-in-out infinite;
  white-space: nowrap;
}

.ghk-feat-badge.is-new {
  background: linear-gradient(135deg, var(--green-primary), #6cc94a);
}

.ghk-feat-badge.is-popular {
  background: linear-gradient(135deg, #e05d3d, #f2924a);
}

@keyframes ghkBadgePulse {
  0%,
  100% {
    transform: rotate(6deg) scale(1);
  }
  50% {
    transform: rotate(6deg) scale(1.08);
  }
}

@media (max-width: 480px) {
  .ghk-feat-card {
    width: 75px;
    padding: 0.8rem 0.3rem 0.65rem;
  }
  .ghk-feat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .ghk-feat-imgwrap {
    width: 60px;
    height: 66px;
  }
  .ghk-feat-label {
    font-size: 0.67rem;
  }
  .ghk-feat-badge {
    font-size: 0.46rem;
    padding: 2px 6px;
    top: -6px;
    right: -4px;
  }
}
/* Animated 5-image scatter — freeform, not a row/column grid */
.mockup-wrap {
  position: relative;
  min-height: auto;
}

/*  */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.35;
}

.blob-1 {
  width: 280px;
  height: 280px;

  top: -40px;
  right: 40px;
}

.blob-2 {
  width: 220px;
  height: 220px;
  background: rgb(191, 212, 233);
  bottom: -40px;
  left: 0;
  opacity: 0.12;
}
/* orbit */
/* orbit */
.orbit-showcase {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.orbit-path {
  position: absolute;
  inset: 40px;
  border: 2px dashed var(--gray-medium);
  border-radius: 50%;
  opacity: 0.5;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 215px;
  z-index: 5;
  filter: drop-shadow(0 20px 40px rgba(3, 27, 58, 0.3));
}

.orbit-center img {
  width: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

.orbit-ring {
  position: absolute;
  inset: 40px;
  animation: orbitSpin 18s linear infinite;
}

/* 🔑 PAUSE the whole ring when ANY icon is hovered */
.orbit-ring:has(.orbit-item:hover) {
  animation-play-state: paused;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle)) translateX(var(--orbit-radius, 200px));
}

.orbit-icon-wrap {
  position: absolute;
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
  animation: counterSpin 18s linear infinite;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(3, 27, 58, 0.18);
  /*  border: 2px solid rgba(75, 157, 48, 0.25); */
  text-decoration: none;
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

/* 🔑 PAUSE each icon's own counter-spin too, so it doesn't keep
   spinning in place while the ring is frozen */
.orbit-ring:has(.orbit-item:hover) .orbit-icon-wrap {
  animation-play-state: paused;
}

/* 🔑 Hover effect ONLY on the hovered icon (highlight + zoom the image) */
.orbit-icon-wrap:hover {
  box-shadow: 0 14px 32px rgba(75, 157, 48, 0.35);
  border-color: rgba(75, 157, 48, 0.9);
  background: #f6fff2;
}

.orbit-icon-wrap img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.orbit-icon-wrap:hover img {
  transform: scale(1.18);
}

.orbit-label {
  position: absolute;
  top: 75px;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy-primary);
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 8px;
  border-radius: 100px;
}

/* counter-rotate keyframes — 7 items, angle step = 360/7 ≈ 51.43deg */
@keyframes counterSpin0 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes counterSpin51 {
  from {
    transform: translate(-50%, -50%) rotate(-51.43deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-411.43deg);
  }
}
@keyframes counterSpin102 {
  from {
    transform: translate(-50%, -50%) rotate(-102.86deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-462.86deg);
  }
}
@keyframes counterSpin154 {
  from {
    transform: translate(-50%, -50%) rotate(-154.29deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-514.29deg);
  }
}
@keyframes counterSpin205 {
  from {
    transform: translate(-50%, -50%) rotate(-205.71deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-565.71deg);
  }
}
@keyframes counterSpin257 {
  from {
    transform: translate(-50%, -50%) rotate(-257.14deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-617.14deg);
  }
}
@keyframes counterSpin308 {
  from {
    transform: translate(-50%, -50%) rotate(-308.57deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-668.57deg);
  }
}

@media (max-width: 424px) {
  .orbit-showcase {
    --orbit-radius: 145px;
  }
  .orbit-icon-wrap {
    width: 58px;
    height: 58px;
  }
  .orbit-icon-wrap img {
    width: 58px;
    height: 58px;
  }
  .orbit-label {
    display: none;
  }
  .orbit-center {
    width: 150px;
  }
}
@media (min-width: 425px) and (max-width: 450px) {
  .orbit-showcase {
    --orbit-radius: 160px;
  }
}
@media (min-width: 451px) and (max-width: 480px) {
  .orbit-showcase {
    --orbit-radius: 175px;
  }
}
/* ---------- Footer ---------- */
footer {
  background: var(--navy-primary);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}

footer h6 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

footer a.footer-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.65rem;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

footer a.footer-link:hover {
  color: var(--green-light);
  transform: translateX(3px);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.social-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.social-ic:hover {
  background: var(--green-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-row {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-contact-row i {
  color: var(--green-light);
  margin-top: 2px;
}
/* ---------- Product Demo Section ---------- */
.product-demo-section {
  padding: 110px 0;
  position: relative;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(75, 157, 48, 0.05),
      transparent 45%
    ),
    radial-gradient(circle at 88% 80%, rgba(3, 27, 58, 0.04), transparent 40%);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
}

.section-sub {
  color: var(--blue-accent);
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0.6rem auto 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 60px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  padding: 32px 22px 26px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 24px -12px rgba(3, 27, 58, 0.12);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s ease;
  transition-delay: calc(var(--i, 0) * 0.05s);

  display: flex;
  flex-direction: column;
  height: 100%;
}

/* animated gradient border ring */
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: 22px;
  padding: 2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    rgba(75, 157, 48, 0) 0%,
    var(--green-light) 15%,
    var(--green-primary) 25%,
    rgba(75, 157, 48, 0) 40%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotateBorder 3.5s linear infinite;
  animation-play-state: paused;
}

@keyframes rotateBorder {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.product-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

/* base subtle border under the gradient ring */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 22px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(3, 27, 58, 0.08);
  transition: box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 54px -18px rgba(3, 27, 58, 0.28);
}

/* cursor-follow radial glow */
.product-card .card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    160px circle at var(--mx, 50%) var(--my, 0%),
    rgba(75, 157, 48, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover .card-glow {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: -34px;
  z-index: 2;
  background: linear-gradient(
    120deg,
    var(--green-primary),
    var(--green-bright)
  );
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 38px;
  transform: rotate(40deg);
  box-shadow: 0 6px 14px rgba(75, 157, 48, 0.35);
}

.product-icon-wrap {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef4ea, #ffffff);
  box-shadow:
    inset 0 0 0 1px rgba(75, 157, 48, 0.12),
    0 10px 22px rgba(3, 27, 58, 0.07);
  animation: iconFloat 3.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.product-icon {
  width: 90%;
  height: 90%;
  /*  width: 50px;
  height: 50px; */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(4deg);
}

.product-card:hover .product-icon-wrap {
  transform: rotate(-8deg) scale(1.12);
  animation-play-state: paused;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.product-title {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;

  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-desc {
  position: relative;
  z-index: 1;
  font-size: 0.83rem;
  color: var(--blue-accent);
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 42px;

  flex-grow: 1;
}

.product-demo-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-primary);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(75, 157, 48, 0.3);
  overflow: hidden;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;

  align-self: center;
  margin-top: auto;
  flex-shrink: 0;
}

.product-demo-btn span {
  position: relative;
  z-index: 2;
}

.product-demo-btn i {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  transition: transform 0.35s ease;
}

/* fill sweep from left on hover */
.product-demo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    var(--green-primary),
    var(--green-bright)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-demo-btn:hover {
  color: #fff;
  border-color: var(--green-primary);
}

.product-demo-btn:hover::before {
  transform: scaleX(1);
}

.product-demo-btn:hover i {
  transform: translateX(4px);
}
/* ---------- Why GonoKhata Section ---------- */
.why-section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.why-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 90px;
}

.why-row-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .why-row,
  .why-row-reverse {
    flex-direction: column;
    gap: 36px;
    margin-top: 60px;
  }
}

.why-media,
.why-content {
  flex: 1 1 50%;
  min-width: 0;
}

/* ---- Video card ---- */
.why-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(3, 27, 58, 0.3),
    0 0 0 1px rgba(3, 27, 58, 0.06);
  aspect-ratio: 16 / 9;
  background: var(--navy-primary);
  cursor: pointer;
}

.why-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
}

.why-video-card:hover .why-thumb {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.why-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 27, 58, 0.05) 0%,
    rgba(3, 27, 58, 0.55) 100%
  );
  pointer-events: none;
}

.why-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(3, 27, 58, 0.35);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease;
}

.why-play-btn i {
  transform: translateX(2px);
}

.why-play-btn::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  animation: pulseRing 2.2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.why-video-card:hover .why-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--green-primary);
  color: #fff;
}

.why-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(3, 27, 58, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* live iframe replaces thumbnail after click */
.why-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 4;
}

/* ---- Text content ---- */
.why-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(75, 157, 48, 0.08);
  border: 1px solid rgba(75, 157, 48, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.why-content h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 0.9rem;
  line-height: 1.25;
}

.why-content p {
  color: var(--blue-accent);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--navy-medium);
  font-weight: 500;
}

.why-list li i {
  color: var(--green-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ---------- Directional entrance animation ---------- */
.slide-left,
.slide-right {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left {
  transform: translateX(-60px);
}

.slide-right {
  transform: translateX(60px);
}

.slide-left.in-view,
.slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .slide-left,
  .slide-right {
    transform: translateY(40px);
  }
  .slide-left.in-view,
  .slide-right.in-view {
    transform: translateY(0);
  }
}

/* plan section */
/* ---------- Pricing Section (soft + attractive) ---------- */
.pricing-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(75, 157, 48, 0.06), transparent 40%),
    radial-gradient(circle at 95% 100%, rgba(3, 27, 58, 0.04), transparent 40%),
    #fbfcfa;
}

.pricing-section .section-sub {
  max-width: 520px;
  margin: 0.5rem auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  align-items: start;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 40px auto 0;
  }
}

.price-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow:
    0 2px 8px rgba(3, 27, 58, 0.04),
    0 16px 36px -20px rgba(3, 27, 58, 0.16);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  transition-delay: calc(var(--i, 0) * 0.06s);

  animation: cardFloat 3.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 10px rgba(3, 27, 58, 0.05),
    0 26px 48px -18px rgba(3, 27, 58, 0.22);
  animation-play-state: paused;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 10px rgba(3, 27, 58, 0.05),
    0 26px 48px -18px rgba(3, 27, 58, 0.22);
}

.price-card-popular {
  background: linear-gradient(180deg, #ffffff 0%, #f5faf1 100%);
  box-shadow:
    0 2px 8px rgba(75, 157, 48, 0.08),
    0 20px 44px -18px rgba(75, 157, 48, 0.28);
}

.price-card-popular:hover {
  box-shadow:
    0 4px 10px rgba(75, 157, 48, 0.1),
    0 30px 54px -18px rgba(75, 157, 48, 0.32);
}

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    120deg,
    var(--green-primary),
    var(--green-bright)
  );
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 6px 14px rgba(75, 157, 48, 0.3);
}

.price-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-accent);
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--blue-accent);
  opacity: 0.8;
}

.price-monthly {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: var(--green-primary);
  font-weight: 600;
  background: rgba(75, 157, 48, 0.09);
  padding: 4px 12px;
  border-radius: 100px;
  margin: 10px 0 18px;
}

.price-btn {
  display: block;
  text-align: center;
  width: 100%;
  background: var(--navy-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.7rem 1rem;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 10px 22px -8px rgba(3, 27, 58, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-btn:hover {
  background: linear-gradient(
    120deg,
    var(--green-primary),
    var(--green-bright)
  );
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(75, 157, 48, 0.4);
}

.price-card-popular .price-btn {
  background: linear-gradient(
    120deg,
    var(--green-primary),
    var(--green-bright)
  );
  box-shadow: 0 12px 26px -8px rgba(75, 157, 48, 0.38);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 7px 10px;
  border-radius: 10px;
  transition: background 0.25s ease;
}

.price-list li:hover {
  background: rgba(75, 157, 48, 0.06);
}

.price-list li span {
  color: var(--blue-accent);
  opacity: 0.85;
}

.price-list li b {
  color: var(--navy-primary);
  font-weight: 700;
}

.price-list li b.ok {
  color: var(--green-primary);
  background: rgba(75, 157, 48, 0.12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.price-list li b.no {
  color: #c4677a;
  background: rgba(196, 103, 122, 0.12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.pricing-footnote {
  text-align: center;
  margin-top: 28px;
  font-size: 0.76rem;
  color: var(--blue-accent);
  opacity: 0.7;
}

/* ---------- Server & Support Specs button ---------- */
.price-specs-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px dashed rgba(3, 27, 58, 0.18);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy-medium);
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-specs-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(75, 157, 48, 0.05);
}

/* ---------- Specs Modal ---------- */
.specs-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 27, 58, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 20px;
}

.specs-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.specs-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  width: 100%;
  max-width: 340px;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.specs-modal.is-open .specs-modal-box {
  transform: translateY(0) scale(1);
}

.specs-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(3, 27, 58, 0.06);
  color: var(--navy-primary);
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.3s ease;
}

.specs-modal-close:hover {
  background: rgba(180, 72, 90, 0.12);
  color: #b4485a;
}

.specs-modal-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.specs-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.specs-modal-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(3, 27, 58, 0.06);
}

.specs-modal-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.specs-modal-list li span {
  color: var(--blue-accent);
}
.specs-modal-list li b {
  color: var(--navy-primary);
  font-weight: 700;
}
.specs-modal-list li b.ok {
  color: var(--green-primary);
}

/* ---------- Reveal animation base (needed if not already global) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* fqa */
.section-div {
  --ink: var(--navy-primary, #08274d);
  --ink-soft: var(--navy-medium, #2b445c);
  --stamp: var(--green-primary, #4b9d30);
  --stamp-bright: var(--green-bright, #63b32e);
  --rule: rgba(8, 39, 77, 0.1);
  --head-font: var(--font-display, "Sora", sans-serif);
  --body-font: var(--font-body, "Inter", sans-serif);

  padding: 100px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(75, 157, 48, 0.05), transparent 42%),
    radial-gradient(circle at 95% 90%, rgba(3, 27, 58, 0.045), transparent 42%),
    #fbfcfa;
}

/* faq */

.gk-help-rail {
  background-color: #fdfaf4;
  max-width: 1100px;
  margin: 60px auto 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(13, 27, 61, 0.35);
}

.gk-rail-nav {
  flex: 0 0 300px;
  background: var(--navy, #0d1b3d);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gk-rail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: none;
  background: transparent;
  border-left: 3px solid transparent;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.gk-rail-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.gk-rail-item.active {
  background: #ffffff;
  border-left-color: var(--stamp);
}

.gk-rail-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  flex: 0 0 auto;
}

.gk-rail-item.active .gk-rail-num {
  color: var(--stamp);
}

.gk-rail-ic {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
}

.gk-rail-item.active .gk-rail-ic {
  background: var(--stamp);
  color: #fff;
}

.gk-rail-title {
  font-family: var(--head-font);
  font-weight: 700;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.65);
}

.gk-rail-item.active .gk-rail-title {
  color: var(--navy, #0d1b3d);
}

.gk-rail-panel {
  flex: 1 1 auto;
  background: #fdfaf4;
  padding: 44px 40px;
  height: 100%;
  overflow-y: auto;
  border-left: 1px solid rgba(220, 90, 60, 0.25);
}

.gk-panel-content {
  display: none;
}

.gk-panel-content.active {
  display: block;
  animation: gkPanelIn 0.35s ease;
}

@keyframes gkPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gk-panel-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.gk-panel-count {
  font-family: monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: #d15a3c;
}

.gk-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--stamp);
  background: rgba(75, 157, 48, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
}

.gk-rail-panel h3 {
  font-family: var(--head-font);
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.gk-panel-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 620px;
}

.gk-panel-content .gk-sub-list {
  border-top: 1px solid var(--rule);
  padding-top: 8px;
}

@media (max-width: 992px) {
  .gk-help-rail {
    flex-direction: column;
    border-radius: 16px;
  }
  .gk-rail-nav {
    flex-direction: row;
    overflow-x: auto;
    flex: 0 0 auto;
  }
  .gk-rail-item {
    flex: 1;
    white-space: nowrap;
  }
  .gk-rail-panel {
    border-left: none;
    border-top: 1px solid rgba(220, 90, 60, 0.25);
    max-height: none;
    padding: 28px 20px;
  }
}
/* ===== Sub-menu — premium green version ===== */
.gk-panel-content .gk-sub-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gk-sub {
  position: relative;
  border: 1px solid rgba(75, 157, 48, 0.1);
  border-radius: 14px;
  padding: 0 18px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.gk-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-primary, #4b9d30), #7dc95e);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.gk-sub:hover {
  border-color: rgba(75, 157, 48, 0.25);
  box-shadow: 0 10px 28px -16px rgba(75, 157, 48, 0.3);
}

.gk-sub:hover::before,
.gk-sub[open]::before {
  transform: scaleY(1);
}

.gk-sub[open] {
  background: linear-gradient(135deg, #f3faf0 0%, #ffffff 60%);
  border-color: rgba(75, 157, 48, 0.22);
  box-shadow: 0 14px 32px -18px rgba(75, 157, 48, 0.35);
}

.gk-sub > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4px;
}

.gk-sub > summary::-webkit-details-marker {
  display: none;
}

/* dot becomes a small glowing chip */
.gk-sub > summary .gk-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8dce6;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.gk-sub[open] > summary .gk-dot,
.gk-sub:hover > summary .gk-dot {
  background: var(--green-primary, #4b9d30);
  box-shadow: 0 0 0 5px rgba(75, 157, 48, 0.12);
  transform: scale(1.2);
}

.gk-sub[open] > summary .gk-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(75, 157, 48, 0.3);
  animation: gkPulse 1.6s ease-out infinite;
}

@keyframes gkPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.gk-sub > summary .gk-title {
  flex: 1 1 auto;
  font-weight: 650;
  font-size: 0.97rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.gk-sub[open] > summary .gk-title,
.gk-sub:hover > summary .gk-title {
  color: var(--green-primary, #4b9d30);
}

/* nested level titles */
.gk-sub .gk-sub-list .gk-sub > summary .gk-title {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.gk-sub .gk-sub-list .gk-sub[open] > summary .gk-title,
.gk-sub .gk-sub-list .gk-sub:hover > summary .gk-title {
  color: var(--green-primary, #4b9d30);
}

/* caret becomes a filled circular arrow button */
.gk-sub > summary .gk-caret {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--green-primary, #4b9d30);
  background: rgba(75, 157, 48, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    color 0.3s ease;
}

.gk-sub:hover > summary .gk-caret {
  background: rgba(75, 157, 48, 0.14);
}

.gk-sub[open] > summary .gk-caret {
  transform: rotate(90deg);
  background: var(--green-primary, #4b9d30);
  color: #fff;
}

.gk-sub-body {
  padding: 0 4px 20px 41px;
  animation: gkSubIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gkSubIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gk-sub .gk-note {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 12px 16px;
  background: rgba(75, 157, 48, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--green-primary, #4b9d30);
}

/* nested sub-list — card-in-card feel */
.gk-sub .gk-sub-list {
  gap: 8px;
  margin-top: 2px;
}

.gk-sub .gk-sub-list .gk-sub {
  border-radius: 10px;
  padding: 0 14px;
  background: #fbfbfd;
}

.gk-sub .gk-sub-list .gk-sub:hover {
  background: #fff;
}

.gk-sub .gk-sub-list .gk-sub > summary {
  padding: 12px 4px;
  gap: 12px;
}

.gk-sub .gk-sub-list .gk-sub .gk-note {
  background: transparent;
  border-left-color: rgba(75, 157, 48, 0.25);
  padding: 0 0 0 14px;
}
/* YouTube icon in parent summary */
.gk-yt {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
}

.gk-yt:hover {
  background: #ff0000;
  color: #fff;
  transform: scale(1.08);
}

/* keep spacing consistent since title is flex:1, icon+caret sit right-aligned */
.gk-sub > summary .gk-yt {
  margin-left: auto;
}

.gk-sub > summary .gk-caret {
  margin-left: 6px;
}
