* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:focus,
:active {
  box-shadow: none !important;
}
:root {
  --bg: #ffffff;
  --ink: #12142b;
  --ink-soft: #5b5e7a;
  --primary: #4338ca;
  --primary-2: #7c3aed;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --line: #eceaf7;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --shadow-rest: 0 1px 0 rgba(18, 20, 43, 0.05);
  --shadow-scroll:
    0 12px 30px -14px rgba(67, 56, 202, 0.28), 0 2px 8px rgba(18, 20, 43, 0.06);
  --radius: 14px;
}
/* main card – clean white glass, ultra premium */
.portal-topbar {
  width: 100%;
  max-width: 1440px;
  height: 44px; /* 40-45px */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  border-radius: 60px;
  box-shadow:
    0 12px 40px -8px rgba(0, 54, 100, 0.08),
    0 0 0 1px rgba(16, 156, 181, 0.06) inset,
    0 0 30px rgba(16, 156, 181, 0.02);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* left side: announcement (marquee) */
.announcement-wrapper {
  flex: 0 0 auto;
  max-width: 32%;
  min-width: 180px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.announcement-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.announcement-marquee .marquee-track {
  display: inline-block;
  animation: scrollMarquee 28s linear infinite;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #003664;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  padding-right: 2.5rem;
}

.announcement-marquee .marquee-track a {
  color: #109cb5;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px dashed rgba(16, 156, 181, 0.2);
  transition:
    color 0.2s,
    border-color 0.2s;
  margin: 0 4px;
}

.announcement-marquee .marquee-track a:hover {
  color: #0d7f94;
  border-bottom-color: #109cb5;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* center: trust badges – glass card on white */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 1 auto;
  justify-content: center;
  padding: 0 0.5rem;
  z-index: 3;
  flex-wrap: nowrap;
}

.trust-item {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 40px;
  padding: 4px 18px 4px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(16, 156, 181, 0.08);
  box-shadow:
    0 2px 8px rgba(0, 54, 100, 0.02),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  color: #003664;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: all 0.15s ease;
  white-space: nowrap;
  height: 30px;
}

.trust-item i {
  font-size: 1rem;
  color: #109cb5;
  text-shadow: 0 0 10px rgba(16, 156, 181, 0.1);
}

.trust-item strong {
  font-weight: 700;
  color: #003664;
  margin-right: 2px;
}

.trust-item .badge-light {
  background: rgba(16, 156, 181, 0.04);
  color: #0d7f94;
  border-radius: 40px;
  padding: 0 8px;
  font-size: 0.7rem;
  font-weight: 600;
}
.trust-item:hover {
  transform: translateY(-3px);
}
.trust-item:active {
  transform: translateY(0px);
}
/* right side: icons, dark toggle, login */
.right-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  z-index: 3;
}

.contact-icon-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #003664;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 10px 0 6px;
  border-radius: 30px;
  height: 30px;
  border: 1px solid transparent;
}

.contact-icon-item i {
  font-size: 1.1rem;
  color: #109cb5;
  transition: transform 0.2s;
}

.contact-icon-item:hover {
  color: #001f3d;
  background: rgba(16, 156, 181, 0.02);
  border-color: rgba(16, 156, 181, 0.1);
}

.contact-icon-item:hover i {
  transform: scale(1.05);
}

.divider-vertical {
  width: 1px;
  height: 24px;
  background: rgba(0, 54, 100, 0.06);
}

/* dark mode toggle – premium white style */
.dark-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  border: 1px solid rgba(0, 54, 100, 0.04);
  padding: 0 6px;
  height: 32px;
  width: 58px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(2px);
  position: relative;
}

.dark-toggle:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(16, 156, 181, 0.15);
}

.dark-toggle .toggle-track {
  width: 42px;
  height: 20px;
  background: rgba(0, 54, 100, 0.04);
  border-radius: 40px;
  position: relative;
  transition: background 0.2s;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.02);
}

.dark-toggle .toggle-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(16, 156, 181, 0.1);
}

.dark-toggle.active .toggle-thumb {
  left: 24px;
  background: #109cb5;
  box-shadow: 0 0 20px rgba(16, 156, 181, 0.15);
}

.dark-toggle.active .toggle-track {
  background: rgba(16, 156, 181, 0.08);
}

.btn-login-premium {
  background: linear-gradient(145deg, #109cb5, #0d7f94);
  border: none;
  border-radius: 40px;
  padding: 4px 20px;
  height: 32px;
  font-weight: 600;
  font-size: 0.78rem;
  color: white;
  box-shadow: 0 4px 14px rgba(16, 156, 181, 0.08);
  transition: all 0.15s ease;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-login-premium i {
  font-size: 1rem;
}

.btn-login-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 156, 181, 0.15);
  background: linear-gradient(145deg, #16b8d4, #0e8aa0);
  color: white;
}

/* left watermark: graduation cap (white bg) */
.watermark-gradcap {
  position: absolute;
  left: 12px;
  bottom: -2px;
  font-size: 2.6rem;
  opacity: 0.04;
  color: #003664;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-5deg);
  filter: drop-shadow(0 0 8px rgba(16, 156, 181, 0.02));
}

/* right floating particles – soft white bg */
.floating-dots {
  position: absolute;
  right: 10px;
  top: -4px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  filter: blur(2px);
}

.floating-dots span {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: #109cb5;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(16, 156, 181, 0.1);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-dots span:nth-child(1) {
  top: 10px;
  left: 20px;
  width: 12px;
  height: 12px;
}
.floating-dots span:nth-child(2) {
  top: 30px;
  right: 10px;
  width: 6px;
  height: 6px;
  opacity: 0.6;
}
.floating-dots span:nth-child(3) {
  bottom: 20px;
  left: 60px;
  width: 18px;
  height: 18px;
  opacity: 0.3;
}
.floating-dots span:nth-child(4) {
  top: 60px;
  right: 40px;
  width: 10px;
  height: 10px;
  opacity: 0.5;
}
.floating-dots span:nth-child(5) {
  bottom: 0px;
  right: 80px;
  width: 14px;
  height: 14px;
  opacity: 0.2;
}

/* responsive */
@media (max-width: 1024px) {
  .trust-badges {
    gap: 0.8rem;
  }
  .trust-item {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
  .right-actions {
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .portal-topbar {
    height: 48px;
    padding: 0 12px;
    flex-wrap: nowrap;
  }
  .announcement-wrapper {
    max-width: 28%;
    min-width: 100px;
  }
  .trust-badges {
    display: none;
  }
  .contact-icon-item span {
    display: none;
  }
  .contact-icon-item {
    padding: 0 6px;
  }
  .btn-login-premium {
    padding: 4px 12px;
    font-size: 0.7rem;
  }
  .dark-toggle {
    width: 48px;
    height: 28px;
  }
  .dark-toggle .toggle-track {
    width: 34px;
    height: 16px;
  }
  .dark-toggle .toggle-thumb {
    width: 12px;
    height: 12px;
    top: 2px;
    left: 2px;
  }
  .dark-toggle.active .toggle-thumb {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .announcement-wrapper {
    max-width: 36%;
  }
  .right-actions .contact-icon-item:not(:first-child) {
    display: none;
  }
  .divider-vertical {
    display: none;
  }
}

/* dark mode override – keep white background but subtle */
body.dark {
  background: #eef3f6;
}

body.dark .portal-topbar {
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 12px 40px -8px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(16, 156, 181, 0.04) inset;
}

body.dark .trust-item {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(16, 156, 181, 0.05);
}

body.dark .contact-icon-item {
  color: #003664;
}

body.dark .announcement-marquee .marquee-track {
  color: #003664;
}
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  box-shadow: var(--shadow-rest);
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease;
}
.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-scroll);
}
.header-top {
  height: 84px;
  display: flex;
  align-items: center;
  transition: height 0.35s ease;
}
.site-header.scrolled .header-top {
  height: 74px;
}
.header-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.brand-logo {
  width: auto;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(67, 56, 202, 0.55);
  flex-shrink: 0;
  overflow: hidden;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 2px;
}
.brand-name span {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.search-zone {
  display: flex;
  justify-content: center;
  position: relative;
}
.search-bar {
  width: 100%;
  max-width: 520px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6f5fc;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 0 8px 0 18px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.search-bar:focus-within {
  background: #fff;
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}
.search-bar .icon-search {
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}
.search-bar input::placeholder {
  color: #9c9fbd;
}
.ai-search-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(
    from 180deg,
    var(--primary),
    var(--accent),
    var(--primary-2),
    var(--primary)
  );
  position: relative;
  transition: transform 0.25s ease;
}
.ai-search-btn::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
}
.ai-search-btn i {
  position: relative;
  width: auto;
  text-align: center;
  align-items: center;
  color: #ffffff;
  height: 17px;
  z-index: 1;
}
.ai-search-btn:hover {
  transform: scale(1.08);
}
.ai-search-btn.active {
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}
.search-submit {
  height: 36px;
  padding: 0 18px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  flex-shrink: 0;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.search-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.ai-suggest {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(18, 20, 43, 0.25);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 50;
}
.ai-suggest.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ai-suggest-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 10px;
}
.ai-suggest-title svg {
  width: 13px;
  height: 13px;
}
.suggest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.suggest-pill {
  padding: 8px 14px;
  border-radius: 100px;
  background: #f6f5fc;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.suggest-pill:hover {
  background: #fff;
  border-color: var(--primary-2);
  color: var(--primary-2);
}
.right-cluster {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.icon-btn:hover {
  background: #f6f5fc;
  border-color: var(--line);
}
.icon-btn i {
  font-size: 20px;
}
.badge-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
}
.divider {
  width: 1px;
  height: 26px;
  background: var(--line);
  margin: 0 6px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.lang-btn:hover {
  background: #f6f5fc;
  border-color: var(--line);
}
.lang-btn i {
  font-size: 14px;
}
.lang-btn .chev {
  font-size: 10px;
  color: var(--ink-soft);
  transition: transform 0.2s ease;
}
.dropdown-wrap {
  position: relative;
}
.dropdown-panel {
  position: absolute;
  top: 52px;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(18, 20, 43, 0.25);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 60;
}
.dropdown-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease;
}
.dropdown-item:hover {
  background: #f6f5fc;
}
.dropdown-item i {
  font-size: 16px;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.dropdown-item.danger {
  color: #dc2626;
}
.dropdown-item.danger i {
  color: #dc2626;
}
.dropdown-panel .dd-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 12px 4px;
}
.dd-sep {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}
.panel-header {
  padding: 10px 12px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.panel-header .name {
  font-weight: 700;
  font-size: 14px;
}
.panel-header .email {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.notif-item {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.notif-item:hover {
  background: #f6f5fc;
}
.notif-dot-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-dot-ring i {
  font-size: 16px;
  color: #fff;
}
.notif-text .t {
  font-size: 13px;
  font-weight: 600;
}
.notif-text .s {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 1px;
}
.btn-login {
  height: 40px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.btn-login:hover {
  border-color: var(--primary-2);
  background: #f9f8ff;
}
.btn-cta {
  position: relative;
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #12142b;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 22px -8px rgba(245, 158, 11, 0.55);
  display: flex;
  align-items: center;
  gap: 7px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  overflow: hidden;
}
.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(245, 158, 11, 0.65);
  filter: brightness(1.03);
}
.btn-cta:hover::after {
  left: 130%;
}
.btn-cta i {
  font-size: 15px;
}
.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 4px 10px 4px 4px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.profile-btn:hover {
  border-color: var(--primary-2);
  background: #f9f8ff;
}
.profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.profile-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.profile-btn .chev {
  font-size: 10px;
  color: var(--ink-soft);
}

/* ===== NAVBAR ===== */
.navbar {
  height: 54px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 15px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 2.5px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-item:hover .nav-link,
.nav-item.open .nav-link {
  color: var(--primary-2);
}
.nav-item:hover .nav-link::after,
.nav-item.open .nav-link::after {
  transform: scaleX(1);
}
.nav-link i {
  font-size: 10px;
  color: var(--ink-soft);
  transition: transform 0.25s ease;
}
.nav-item.open .nav-link i {
  transform: rotate(180deg);
  color: var(--primary-2);
}

.nav-cta {
  height: 38px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1.5px solid var(--primary);
  background: transparent;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.nav-cta i {
  font-size: 14px;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 48px -20px rgba(18, 20, 43, 0.28);
  padding: 10px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 70;
}
.nav-item.open .nav-panel {
  opacity: 1;
  transform: translateY(6px);
  pointer-events: auto;
}
.nav-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.nav-panel-item:hover {
  background: #f6f5fc;
}
.nav-panel-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(67, 56, 202, 0.12),
    rgba(124, 58, 237, 0.12)
  );
  color: var(--primary-2);
}
.nav-panel-icon i {
  font-size: 17px;
}
.nav-panel-text .t {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.nav-panel-text .s {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 1px;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 0px);
  left: 300px;
  transform: translateX(-50%) translateY(-8px);
  width: min(900px, 88vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 60px -24px rgba(18, 20, 43, 0.3);
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.05fr;
  gap: 8px;
}
.nav-item.open .mega-panel {
  opacity: 1;
  transform: translateX(-50%) translateY(6px);
  pointer-events: auto;
}
.mega-col-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-2);
  padding: 2px 10px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mega-col-title .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.mega-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-right: 6px;
}
.mega-links.scrollable {
  max-height: 300px;
  overflow-y: auto;
}
.mega-links.scrollable::-webkit-scrollbar {
  width: 5px;
}
.mega-links.scrollable::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 10px;
}
.mega-links.scrollable::-webkit-scrollbar-thumb:hover {
  background: #d8d4f0;
}
.mega-link {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    padding-left 0.15s ease;
}
.mega-link:hover {
  background: #f6f5fc;
  color: var(--primary-2);
  padding-left: 14px;
}
.mega-banner-col {
  border-radius: 16px;
  padding: 18px;
  background:
    radial-gradient(
      120% 120% at 100% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(
      155deg,
      var(--primary) 0%,
      var(--primary-2) 65%,
      #9333ea 100%
    );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.mega-banner-col::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.35),
    transparent 70%
  );
  top: -60px;
  right: -60px;
}
.mega-banner-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
.mega-banner-title {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}
.mega-banner-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.mega-banner-btn {
  margin-top: 16px;
  align-self: flex-start;
  background: #fff;
  color: var(--primary);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.mega-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.35);
}
.mega-banner-btn i {
  font-size: 13px;
}

.menu-toggle {
  display: none;
}

/* ============ SIDE PANEL (replaces old offcanvas) ============ */
.sidepanel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 20, 43, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sidepanel-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.sidepanel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: #fff;
  z-index: 1999;
  box-shadow: -20px 0 50px rgba(18, 20, 43, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.25, 1);
  display: flex;
  flex-direction: column;
}
.sidepanel.open {
  transform: translateX(0);
}
.sidepanel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.sidepanel-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sidepanel-close i {
  font-size: 16px;
}
.sidepanel-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 10px 20px;
}
.sp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
}
.sp-link:hover {
  background: #f6f5fc;
}
.sp-link i {
  font-size: 13px;
  color: var(--ink-soft);
  transition: transform 0.25s ease;
}
.sp-group.open .sp-link i {
  transform: rotate(180deg);
}
.sp-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 10px;
}
.sp-group.open .sp-sub {
  max-height: 900px;
}
.sp-sub-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-2);
  padding: 10px 12px 4px;
}
.sp-sub-link {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 10px;
}
.sp-sub-link:hover {
  background: #f6f5fc;
  color: var(--primary-2);
}
.sidepanel-foot {
  padding: 16px 18px 22px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.sp-demo-btn {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #12142b;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sp-demo-btn i {
  font-size: 14px;
}
.sp-login-btn {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.sp-login-btn i {
  font-size: 16px;
}
.sp-getstarted-btn {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: #12142b;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.sp-getstarted-btn i {
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .navbar {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  #authLoggedOut {
    display: none !important;
  }
  #authLoggedIn {
    display: none !important;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 12px;
    gap: 8px;
  }
  .search-zone {
    display: none;
  }
  .brand-tagline {
    display: none;
  }
  .profile-name {
    display: none;
  }
  .divider {
    display: none;
  }
  .lang-btn span {
    display: none;
  }
  .lang-btn {
    padding: 0 6px;
  }
  .right-cluster {
    gap: 4px;
  }
  .icon-btn {
    width: 34px;
    height: 34px;
  }
  .icon-btn i {
    font-size: 16px;
  }
  .brand-logo {
    width: 36px;
    height: 36px;
  }
  .brand-name {
    font-size: 16px;
  }
  .header-top {
    height: 64px;
  }
  .site-header.scrolled .header-top {
    height: 60px;
  }
  .brand {
    grid-column: 1 / 2;
  }
  .right-cluster {
    grid-column: 3 / 4;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .support-btn-mobile {
    grid-column: 2 / 3;
    display: flex;
    justify-self: start;
    align-items: center;
    gap: 4px;
    height: 32px;
    padding: 0 12px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .support-btn-mobile:hover {
    background: rgba(67, 56, 202, 0.06);
  }
  .support-btn-mobile i {
    font-size: 14px;
  }
  .menu-toggle {
    display: flex;
  }
  .sidepanel {
    width: 86vw;
  }
  .mega-panel {
    grid-template-columns: 1fr 1fr;
    width: 92vw;
    padding: 16px;
  }
  .mega-banner-col {
    grid-column: 1 / -1;
    min-height: 160px;
  }
  .mega-banner-title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .header-inner {
    padding: 0 8px;
    gap: 4px;
  }
  .brand-name {
    font-size: 14px;
  }
  .brand-logo {
    width: 30px;
    height: 30px;
  }
  .support-btn-mobile {
    font-size: 10px;
    padding: 0 8px;
    height: 28px;
  }
  .support-btn-mobile span {
    display: none;
  }
  .icon-btn {
    width: 30px;
    height: 30px;
  }
  .icon-btn i {
    font-size: 14px;
  }
  .lang-btn {
    padding: 0 4px;
  }
  .right-cluster {
    gap: 2px;
  }
  .header-top {
    height: 56px;
  }
  .site-header.scrolled .header-top {
    height: 52px;
  }
}
.support-btn-mobile {
  display: none;
}
/* ============================================================= HERO ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5vw 60px;
  overflow: hidden;
  background:
    radial-gradient(
      900px 620px at 8% 15%,
      rgba(16, 156, 181, 0.14),
      transparent 68%
    ),
    radial-gradient(
      760px 560px at 94% 82%,
      rgba(124, 58, 237, 0.11),
      transparent 62%
    ),
    radial-gradient(
      520px 420px at 55% 100%,
      rgba(240, 165, 0, 0.06),
      transparent 70%
    ),
    linear-gradient(180deg, #f7fbfd 0%, #f2f8fa 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#109cb5 1.1px, transparent 1.1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 50% 30%,
    #000 30%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 30%,
    #000 30%,
    transparent 80%
  );
  opacity: 0.35;
  pointer-events: none;
}

.spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    420px 420px at var(--sx, 50%) var(--sy, 30%),
    rgba(16, 156, 181, 0.14),
    transparent 65%
  );
  transition: opacity 0.3s ease;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-blur-1 {
  width: 520px;
  height: 520px;
  background: rgba(16, 156, 181, 0.16);
  top: -140px;
  left: -100px;
}
.hero-blur-2 {
  width: 440px;
  height: 440px;
  background: rgba(124, 58, 237, 0.12);
  bottom: -90px;
  right: -80px;
}
.hero-blur-3 {
  width: 320px;
  height: 320px;
  background: rgba(240, 165, 0, 0.08);
  top: 42%;
  right: 22%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 56px;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------- LEFT ---------------------------------------------- */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 6px 18px 6px 6px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #0d7f94;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 156, 181, 0.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(16, 156, 181, 0.08);
  overflow: hidden;
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  background: conic-gradient(
    from var(--ang, 0deg),
    transparent 0deg,
    #109cb5 60deg,
    transparent 140deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spinBorder 3.2s linear infinite;
}
@keyframes spinBorder {
  to {
    --ang: 360deg;
  }
}
.hero-badge b {
  background: #109cb5;
  color: #fff;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 10.5px;
  letter-spacing: 0.3px;
  font-weight: 800;
}

.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #11141f;
  margin: 0;
}
.hero-title .gradient {
  background: linear-gradient(100deg, #109cb5 0%, #0d7f94 35%, #7c3aed 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradFlow 6s ease-in-out infinite;
  display: inline-block;
}
@keyframes gradFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.7;
  color: #5b6570;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #109cb5, #0d7f94);
  box-shadow:
    0 10px 30px -8px rgba(16, 156, 181, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: box-shadow 0.3s ease;
  will-change: transform;
}
.btn-primary .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}
.btn-primary:hover .shine {
  left: 130%;
}
.btn-primary:hover {
  box-shadow:
    0 16px 40px -8px rgba(16, 156, 181, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #11141f;
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid #dfe9ec;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  will-change: transform;
}
.btn-secondary:hover {
  border-color: #109cb5;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 156, 181, 0.12);
}
.btn-secondary .play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #11141f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-secondary .play i {
  color: #fff;
  font-size: 10px;
  margin-left: 2px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}
.trust-rating {
  display: flex;
  align-items: center;
  gap: 9px;
}
.trust-rating .stars {
  color: #f0a500;
  font-size: 16px;
  letter-spacing: 2px;
}
.trust-rating .score {
  font-weight: 800;
  font-size: 18px;
  color: #11141f;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.trust-rating .label {
  font-size: 12.5px;
  color: #5b6570;
}

.trust-avatars {
  display: flex;
  align-items: center;
}
.trust-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -9px;
  background: linear-gradient(145deg, #109cb5, #0d7f94);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.trust-avatars .avatar:first-child {
  margin-left: 0;
}
.trust-avatars .avatar.plus {
  background: #11141f;
}
.trust-count {
  font-size: 14px;
  font-weight: 800;
  color: #11141f;
  margin-left: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.trust-count small {
  font-weight: 500;
  color: #5b6570;
  font-size: 12.5px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 7px 15px 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #11141f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: 0.25s ease;
}
.feature-pill:hover {
  background: #fff;
  border-color: #109cb5;
  transform: translateY(-2px);
}
.feature-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.dot.green {
  background: #1fa672;
}
.dot.blue {
  background: #109cb5;
}
.dot.amber {
  background: #f0a500;
}
.dot.purple {
  background: #7c3aed;
}

/* ---------------------------------------------- RIGHT : device mockup ---------------------------------------------- */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}

.mock-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.device-mock {
  position: relative;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff, #f3fafc);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 40px 90px -24px rgba(0, 40, 70, 0.28),
    0 0 0 1px rgba(16, 156, 181, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}
.device-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #0b2c48, #003664);
}
.device-topbar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.device-topbar .dot:nth-child(1) {
  background: #e0473c;
}
.device-topbar .dot:nth-child(2) {
  background: #f0a500;
}
.device-topbar .dot:nth-child(3) {
  background: #1fa672;
}
.device-url {
  margin-left: 8px;
  flex: 1;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  gap: 6px;
}
.device-url i {
  font-size: 9px;
}

.device-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-top-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
}

.mock-course {
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, #109cb5, #003664);
  position: relative;
  overflow: hidden;
}
.mock-course::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120px 90px at 90% 0%,
    rgba(255, 255, 255, 0.25),
    transparent
  );
}
.mock-course .tag {
  font-size: 9.5px;
  font-weight: 700;
  opacity: 0.85;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.mock-course h4 {
  margin: 6px 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.mock-progress-track {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mock-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: #fff;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mock-course .pct {
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 700;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.mock-ring-card {
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e9f1f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: conic-gradient(#109cb5 0deg, #e6eff1 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ring span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #11141f;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.mock-ring-card small {
  font-size: 9.5px;
  color: #5b6570;
  font-weight: 600;
}

.mock-chart {
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e9f1f3;
}
.mock-chart .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mock-chart .hd span {
  font-size: 11.5px;
  font-weight: 700;
  color: #11141f;
}
.mock-chart .hd b {
  font-size: 10px;
  color: #1fa672;
  font-weight: 700;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
}
.bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #109cb5, #0d7f94);
  height: 0%;
  transition: height 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.bars i:nth-child(4) {
  background: linear-gradient(180deg, #8fd3e0, #109cb5);
}

.mock-list {
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e9f1f3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-list .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-list .ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-list .ic i {
  font-size: 13px;
}
.mock-list .txt {
  flex: 1;
  min-width: 0;
}
.mock-list .txt b {
  display: block;
  font-size: 11.5px;
  color: #11141f;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-list .txt small {
  font-size: 10px;
  color: #5b6570;
}
.mock-list .time {
  font-size: 10px;
  font-weight: 700;
  color: #0d7f94;
  background: rgba(16, 156, 181, 0.1);
  padding: 3px 8px;
  border-radius: 99px;
  flex-shrink: 0;
}

.float-el {
  position: absolute;
  border-radius: 14px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 30px rgba(0, 20, 40, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #11141f;
  animation: floatY 5s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.float-el i {
  font-size: 16px;
  flex-shrink: 0;
}
.float-el.f1 {
  top: -5%;
  right: -13%;
  animation-delay: 0s;
}
.float-el.f2 {
  top: 40%;
  left: -15%;
  animation-delay: 0.9s;
}
.float-el.f3 {
  bottom: -4%;
  right: -9%;
  animation-delay: 1.7s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ---------------------------------------------- JOURNEY STEPPER ---------------------------------------------- */
.journey {
  position: relative;
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  box-shadow:
    0 16px 40px rgba(0, 20, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  z-index: 3;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.42;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  flex: 1;
  min-width: 0;
}
.journey-step.active {
  opacity: 1;
  transform: translateY(-2px);
}
.j-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6570;
  background: #eef4f6;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.j-dot i {
  font-size: 14px;
}
.journey-step.active .j-dot {
  color: #fff;
  background: linear-gradient(135deg, #109cb5, #0d7f94);
  box-shadow:
    0 0 0 5px rgba(16, 156, 181, 0.15),
    0 6px 16px rgba(16, 156, 181, 0.35);
  transform: scale(1.08);
}
.j-txt {
  font-size: 11px;
  font-weight: 700;
  color: #5b6570;
  white-space: nowrap;
  transition: color 0.45s ease;
}
.journey-step.active .j-txt {
  color: #11141f;
}
.journey-arrow {
  flex: 0 0 auto;
  width: 22px;
  display: flex;
  justify-content: center;
  color: #c9d8dc;
  transition: color 0.45s ease;
  margin-top: 9px;
}
.journey-arrow i {
  font-size: 13px;
  animation: arrowFlow 1.8s ease-in-out infinite;
}
.journey-arrow:nth-of-type(2) i {
  animation-delay: 0.1s;
}
.journey-arrow.flow {
  color: #109cb5;
}
@keyframes arrowFlow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(3px);
    opacity: 1;
  }
}

@media (max-width: 420px) {
  .j-txt {
    display: none;
  }
  .journey {
    padding: 12px 10px;
  }
}

/* ---------------------------------------------- TRUSTED STRIP ---------------------------------------------- */
.trusted-strip {
  position: relative;
  z-index: 2;
  margin-top: -26px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 28px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 20, 40, 0.05);
  display: flex;
  align-items: center;
  gap: 26px;
  overflow: hidden;
}
.trusted-strip .label {
  font-size: 12px;
  font-weight: 800;
  color: #5b6570;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-mask {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: scrollLogos 26s linear infinite;
}
.trusted-strip:hover .marquee-track {
  animation-play-state: paused;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: #11141f;
  font-size: 13.5px;
  white-space: nowrap;
  opacity: 0.55;
  transition: 0.25s;
  filter: grayscale(1);
}
.logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}
.logo-item i {
  font-size: 20px;
  opacity: 0.6;
}
@keyframes scrollLogos {
  to {
    transform: translateX(-50%);
  }
}

/* ---------------------------------------------- STATS STRIP ---------------------------------------------- */
.stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 10px 30px rgba(0, 20, 40, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}
.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  position: relative;
  flex: 1;
  min-width: 0;
  transition:
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(10, 20, 30, 0.12),
    transparent
  );
}
.stat:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.stat-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat:hover .stat-ic {
  transform: scale(1.08) rotate(-4deg);
}
.stat-ic i {
  font-size: 18px;
}
.stat.c-cyan .stat-ic {
  background: linear-gradient(
    150deg,
    rgba(16, 156, 181, 0.18),
    rgba(16, 156, 181, 0.06)
  );
}
.stat.c-violet .stat-ic {
  background: linear-gradient(
    150deg,
    rgba(124, 58, 237, 0.18),
    rgba(124, 58, 237, 0.06)
  );
}
.stat.c-amber .stat-ic {
  background: linear-gradient(
    150deg,
    rgba(240, 165, 0, 0.2),
    rgba(240, 165, 0, 0.07)
  );
}
.stat-txt {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.stat .n {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat.c-cyan .n {
  background: linear-gradient(120deg, #11141f 15%, #0d7f94 100%);
  padding: 5px;
  color: #ffffff;
  border-radius: 10px;
}
.stat.c-violet .n {
  background: linear-gradient(120deg, #11141f 15%, #7c3aed 100%);
  padding: 5px;
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
}
.stat.c-amber .n {
  background: linear-gradient(120deg, #11141f 15%, #c98200 100%);
  padding: 5px;
  color: #ffffff;
  text-align: center;
  border-radius: 10px;
}
.stat .l {
  font-size: 10.5px;
  color: #5b6570;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .stats-row {
    flex-direction: column;
  }
  .stat + .stat::before {
    left: 16%;
    right: 16%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .stat {
    padding: 13px 18px;
  }
}

/* ---------------------------------------------- MODAL ---------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 15, 25, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 20px;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-overlay.open .modal-box {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal-close i {
  font-size: 15px;
}

/* ---------------------------------------------- RESPONSIVE ---------------------------------------------- */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 24px 50px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-left {
    order: 1;
    align-items: center;
    text-align: center;
  }
  .hero-sub {
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-actions,
  .hero-features {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .stats-row {
    justify-content: center;
  }
  .hero-right {
    order: 0;
    max-width: 520px;
    margin: 0 auto;
  }
  .float-el {
    display: none;
  }
  .trusted-strip {
    border-radius: 26px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 88px 16px 40px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  .device-mock {
    transform: none !important;
  }
  .trusted-strip {
    padding: 14px 16px;
    gap: 14px;
  }
}
/* ===============================STATS SECTION STYLING=========================== */
.stats-section {
  width: 100%;
  padding: 60px 30px;
  background:
    radial-gradient(
      800px 500px at 10% 90%,
      rgba(123, 16, 181, 0.06),
      transparent 70%
    ),
    radial-gradient(
      600px 400px at 90% 10%,
      rgba(124, 58, 237, 0.04),
      transparent 60%
    ),
    #f5f9fc;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.02);
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#109cb5 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.stats-inner {
  position: relative;
  z-index: 1;
}

/* header */
.stats-header {
  text-align: center;
  margin-bottom: 48px;
}
.stats-header .tag {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(16, 156, 181, 0.08),
    rgba(124, 58, 237, 0.06)
  );
  border: 1px solid rgba(16, 156, 181, 0.08);
  border-radius: 100px;
  padding: 6px 20px 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #109cb5;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.stats-header h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  color: #12142b;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stats-header h2 span {
  background: linear-gradient(135deg, #109cb5 0%, #0d7f94 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-header p {
  color: #5b5e7a;
  font-size: 16px;
  margin-top: 6px;
  opacity: 0.7;
}

/* grid — desktop: 6 cards in one row */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* ===== ULTRA PREMIUM CARDS ===== */
.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 28px 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.02),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(16, 156, 181, 0.15),
    transparent,
    rgba(124, 58, 237, 0.1),
    transparent,
    rgba(240, 165, 0, 0.1),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  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.6s ease;
  pointer-events: none;
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(16, 156, 181, 0.02),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.stat-card:hover::after {
  opacity: 1;
}
.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 60px -12px rgba(16, 156, 181, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* shape variations */
.stat-card.s1 {
  border-radius: 36px 24px 36px 24px;
}
.stat-card.s2 {
  border-radius: 24px 36px 24px 36px;
}
.stat-card.s3 {
  border-radius: 42px 18px 42px 18px;
}
.stat-card.s4 {
  border-radius: 18px 42px 18px 42px;
}
.stat-card.s5 {
  border-radius: 32px 20px 32px 20px;
}
.stat-card.s6 {
  border-radius: 20px 32px 20px 32px;
}

.stat-card .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 24px;
  transition: all 0.4s ease;
  position: relative;
}
.stat-card:hover .icon-wrap {
  transform: scale(1.04) rotate(-2deg);
}
.icon-wrap::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  filter: blur(12px);
  opacity: 0.15;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.stat-card:hover .icon-wrap::after {
  opacity: 0.3;
}

.icon-blue {
  background: rgba(16, 156, 181, 0.08);
  color: #109cb5;
}
.icon-blue::after {
  background: #109cb5;
}
.icon-purple {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}
.icon-purple::after {
  background: #7c3aed;
}
.icon-amber {
  background: rgba(240, 165, 0, 0.08);
  color: #f0a500;
}
.icon-amber::after {
  background: #f0a500;
}
.icon-green {
  background: rgba(31, 166, 114, 0.08);
  color: #1fa672;
}
.icon-green::after {
  background: #1fa672;
}
.icon-rose {
  background: rgba(224, 71, 60, 0.06);
  color: #e0473c;
}
.icon-rose::after {
  background: #e0473c;
}
.icon-indigo {
  background: rgba(67, 56, 202, 0.06);
  color: #4338ca;
}
.icon-indigo::after {
  background: #4338ca;
}

.stat-card .number {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 800;
  color: #12142b;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-card .number .suffix {
  font-size: 0.6em;
  font-weight: 600;
  color: #109cb5;
  margin-left: 2px;
}
.stat-card .label {
  font-size: 13px;
  font-weight: 600;
  color: #12142b;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.stat-card .short-desc {
  font-size: 11px;
  color: #9ca0b8;
  margin-top: 2px;
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .stat-card {
    padding: 24px 14px 18px;
  }
  .stat-card .icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 16px;
  }
  .stat-card .number {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .stats-section {
    padding: 30px 12px;
    border-radius: 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .stat-card {
    padding: 16px 8px 12px;
    border-radius: 16px;
  }
  .stat-card .icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .stat-card .number {
    font-size: 20px;
  }
  .stat-card .label {
    font-size: 10px;
    margin-top: 3px;
  }
  .stat-card .short-desc {
    display: none;
  }
  .stat-card.s1,
  .stat-card.s2,
  .stat-card.s3,
  .stat-card.s4,
  .stat-card.s5,
  .stat-card.s6 {
    border-radius: 14px;
  }
  .stats-header {
    margin-bottom: 28px;
  }
  .stats-header h2 {
    font-size: 24px;
  }
  .stats-header p {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .stat-card {
    padding: 12px 6px 10px;
    border-radius: 12px;
  }
  .stat-card .icon-wrap {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 8px;
    margin-bottom: 4px;
  }
  .stat-card .icon-wrap svg {
    width: 16px;
    height: 16px;
  }
  .stat-card .number {
    font-size: 16px;
  }
  .stat-card .label {
    font-size: 8px;
    margin-top: 2px;
  }
  .stat-card .short-desc {
    display: none;
  }
  .stats-header h2 {
    font-size: 20px;
  }
  .stats-header .tag {
    font-size: 9px;
    padding: 3px 10px 3px 8px;
  }
}
/*==================================WHY CHOOSE SECTION STYLING===========================*/
.why-section {
  position: relative;
  overflow: hidden;
  padding: 110px 32px 100px;
  background: #fcfbff;
}
.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.55;
}
.why-section::before {
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.24), transparent 70%);
}
.why-section::after {
  bottom: -200px;
  right: -180px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
}
.dot-field {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(67, 56, 202, 0.1) 1.4px,
    transparent 1.4px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  z-index: 0;
}
.glass-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px -20px rgba(67, 56, 202, 0.25);
  z-index: 0;
}
.orb1 {
  width: 120px;
  height: 120px;
  top: 14%;
  left: 6%;
}
.orb2 {
  width: 70px;
  height: 70px;
  top: 60%;
  left: 3%;
}
.orb3 {
  width: 150px;
  height: 150px;
  bottom: 8%;
  right: 6%;
}
.orb4 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 10%;
}

.why-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Header block ---------- */
.why-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(67, 56, 202, 0.08);
  border: 1px solid rgba(67, 56, 202, 0.18);
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.why-badge svg {
  width: 13px;
  height: 13px;
}
.why-heading {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.why-heading .grad {
  background: linear-gradient(100deg, #4338ca 10%, #7c3aed 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #5b5e7a;
  margin: 0;
}

/* ---------- Layout 40/60 ---------- */
.why-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 44px;
  align-items: start;
}

/* ===================== LEFT: DASHBOARD ===================== */
.dashboard-stage {
  position: relative;
  padding: 44px 46px;
  perspective: 1400px;
}
.dash-frame {
  position: relative;
  background: #fff;
  border-radius: 26px;
  border: 1px solid #e8e6f6;
  box-shadow:
    0 40px 80px -30px rgba(67, 56, 202, 0.35),
    0 10px 24px -8px rgba(18, 20, 43, 0.08);
  transform: rotateY(-9deg) rotateX(4deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.dashboard-stage:hover .dash-frame {
  transform: rotateY(-2deg) rotateX(1deg);
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e6f6;
}
.dash-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.dash-greet {
  flex: 1;
  line-height: 1.25;
}
.dash-greet .g1 {
  font-size: 11px;
  color: #5b5e7a;
  font-weight: 500;
}
.dash-greet .g2 {
  font-size: 14px;
  font-weight: 700;
}
.dash-bell {
  position: relative;
  color: #5b5e7a;
}
.dash-bell svg {
  width: 18px;
  height: 18px;
}
.dash-bell .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  border: 2px solid #fff;
}

.dash-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}
.dash-panel {
  background: #f7f6fd;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 12px 13px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
  position: relative;
}
.dash-panel.active {
  transform: scale(1.055);
  border-color: #f59e0b;
  box-shadow: 0 14px 30px -10px rgba(245, 158, 11, 0.45);
  background: #fff;
  z-index: 4;
}
.dash-panel.dimmed {
  opacity: 0.38;
  filter: saturate(0.5);
}

.panel-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-donut {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.p-label {
  font-size: 11px;
  color: #5b5e7a;
  font-weight: 600;
  line-height: 1.3;
}
.p-label b {
  display: block;
  font-size: 16px;
  color: #12142b;
  font-family: "Sora", sans-serif;
}

.panel-live {
}
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #dc2626;
  margin-bottom: 6px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  animation: pulse 1.4s infinite;
}
.p-title {
  font-size: 12.5px;
  font-weight: 700;
}
.p-sub {
  font-size: 10.5px;
  color: #5b5e7a;
  margin-top: 2px;
}

.panel-ai {
  grid-column: 1 / 3;
}
.ai-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 8px;
}
.ai-head svg {
  width: 14px;
  height: 14px;
}
.ai-bubble {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 10px 10px 10px 3px;
  padding: 8px 10px;
  font-size: 11.5px;
  color: #12142b;
  max-width: 78%;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.ai-typing {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  padding-left: 2px;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7c3aed;
  animation: bounce 1s infinite ease-in-out;
}
.ai-typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.ai-typing span:nth-child(3) {
  animation-delay: 0.3s;
}
.panel-ai.active .ai-bubble,
.panel-ai.active .ai-typing {
  opacity: 1;
  transform: translateY(0);
}

.panel-analytics .chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
  margin-bottom: 6px;
}
.panel-analytics .chart-bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #7c3aed, #4338ca);
}
.panel-analytics.active .chart-bars i {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

.panel-certificate {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cert-icon {
  width: 26px;
  height: 26px;
  color: #f59e0b;
}
.cert-pop {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  color: #059669;
  background: #ecfdf5;
  border-radius: 100px;
  padding: 3px 8px;
  width: fit-content;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.panel-certificate.active .cert-pop {
  opacity: 1;
  transform: scale(1);
}

.panel-calendar {
  grid-column: 1 / 3;
}
.mini-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 6px;
}
.mini-cal span {
  height: 12px;
  border-radius: 3px;
  background: #edebfa;
}
.mini-cal span.on {
  background: #7c3aed;
}
.mini-cal span.hot {
  background: #f59e0b;
}

.dash-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 18px;
  border-top: 1px solid #e8e6f6;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease;
}
.dash-footer.dimmed {
  opacity: 0.38;
  filter: saturate(0.5);
}
.avatar-stack {
  display: flex;
}
.avatar-stack span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: linear-gradient(145deg, #7c3aed, #f59e0b);
}
.avatar-stack span:first-child {
  margin-left: 0;
}
.dash-footer p {
  margin: 0;
  font-size: 11.5px;
  color: #5b5e7a;
  font-weight: 600;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e8e6f6;
  box-shadow: 0 14px 30px -12px rgba(18, 20, 43, 0.22);
  font-size: 12px;
  font-weight: 700;
  color: #12142b;
  backdrop-filter: blur(8px);
  animation: floaty 4.5s ease-in-out infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  z-index: 3;
}
.float-chip svg {
  width: 15px;
  height: 15px;
}
.float-chip.active {
  border-color: #f59e0b;
  box-shadow: 0 16px 32px -10px rgba(245, 158, 11, 0.5);
  transform: scale(1.12) !important;
}
.float-chip.dimmed {
  opacity: 0.4;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.chip-ai {
  top: 8px;
  left: 6px;
  color: #7c3aed;
  animation-delay: 0.2s;
}
.chip-trophy {
  top: 6px;
  right: 8px;
  color: #f59e0b;
  animation-delay: 1.1s;
}
.chip-badge {
  top: 42%;
  left: -14px;
  color: #4338ca;
  animation-delay: 0.6s;
}
.chip-certificate {
  bottom: 78px;
  right: -14px;
  color: #059669;
  animation-delay: 1.6s;
}
.chip-progress {
  bottom: 8px;
  left: 14%;
  color: #7c3aed;
  animation-delay: 0.9s;
}
.chip-chat {
  bottom: 14px;
  right: 16%;
  color: #4338ca;
  animation-delay: 1.9s;
}

/* ===================== RIGHT: BENTO FEATURES ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 108px;
  gap: 16px;
}
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 20px;
  padding: 20px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -20px rgba(67, 56, 202, 0.32);
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(255, 255, 255, 0.85);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 16px -6px rgba(18, 20, 43, 0.3);
}
.card-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.grad-1 {
  background: linear-gradient(145deg, #6d5cf0, #4338ca);
}
.grad-2 {
  background: linear-gradient(145deg, #fb7185, #dc2626);
}
.grad-3 {
  background: linear-gradient(145deg, #34d399, #059669);
}
.grad-4 {
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
}
.grad-5 {
  background: linear-gradient(145deg, #60a5fa, #2563eb);
}
.grad-6 {
  background: linear-gradient(145deg, #a78bfa, #7c3aed);
}
.grad-7 {
  background: linear-gradient(145deg, #f472b6, #db2777);
}
.grad-8 {
  background: linear-gradient(145deg, #fcd34d, #f59e0b);
}

.feature-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.feature-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #5b5e7a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-arrow {
  position: absolute;
  bottom: 16px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(67, 56, 202, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4338ca;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}
.card-arrow svg {
  width: 14px;
  height: 14px;
}
.feature-card:hover .card-arrow {
  background: #f59e0b;
  color: #12142b;
  transform: translateX(3px);
}

/* Bento placement */
.c-ai {
  grid-column: 1/3;
  grid-row: 1/3;
}
.c-live {
  grid-column: 3/5;
  grid-row: 1/2;
}
.c-progress {
  grid-column: 3/5;
  grid-row: 2/3;
}
.c-certificate {
  grid-column: 1/2;
  grid-row: 3/5;
}
.c-assignments {
  grid-column: 2/3;
  grid-row: 3/5;
}
.c-community {
  grid-column: 3/4;
  grid-row: 3/5;
}
.c-placements {
  grid-column: 4/5;
  grid-row: 3/5;
}
.c-gamification {
  grid-column: 1/5;
  grid-row: 5/6;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.c-gamification .card-icon {
  margin-bottom: 0;
}
.c-gamification .card-text {
  flex: 1;
}
.c-gamification h3 {
  margin-bottom: 3px;
}
.c-gamification p {
  -webkit-line-clamp: 1;
}
.c-ai h3 {
  font-size: 19px;
}
.c-ai .card-icon {
  width: 52px;
  height: 52px;
}
.c-ai .card-icon svg {
  width: 26px;
  height: 26px;
}
.c-ai p {
  -webkit-line-clamp: 3;
  font-size: 13px;
}

/* ===================== BOTTOM STRIP ===================== */
.why-strip {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 32px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    rgba(67, 56, 202, 0.07),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid rgba(124, 58, 237, 0.15);
}
.strip-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -6px rgba(67, 56, 202, 0.5);
}
.strip-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.strip-left p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.btn-start {
  height: 48px;
  padding: 0 26px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #12142b;
  background: linear-gradient(120deg, #fbbf24, #f59e0b);
  box-shadow: 0 12px 26px -8px rgba(245, 158, 11, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(245, 158, 11, 0.65);
}
.btn-start svg {
  width: 15px;
  height: 15px;
}

/* ===================== RESPONSIVE STYLES ===================== */

/* For tablet and smaller devices */
@media (max-width: 1080px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dashboard-stage {
    max-width: 460px;
    margin: 0 auto 20px;
    padding: 20px 15px;
  }

  .dash-frame {
    transform: rotateY(0deg) rotateX(0deg) !important;
  }

  .dashboard-stage:hover .dash-frame {
    transform: rotateY(0deg) rotateX(0deg) !important;
  }

  /* Adjust floating chips position for smaller screens */
  .float-chip {
    font-size: 10px;
    padding: 6px 10px;
  }

  .chip-ai {
    top: 4px;
    left: 4px;
  }
  .chip-trophy {
    top: 4px;
    right: 4px;
  }
  .chip-badge {
    top: 35%;
    left: -8px;
  }
  .chip-certificate {
    bottom: 60px;
    right: -8px;
  }
  .chip-progress {
    bottom: 4px;
    left: 10%;
  }
  .chip-chat {
    bottom: 10px;
    right: 12%;
  }
}

/* For mobile devices */
@media (max-width: 640px) {
  .why-section {
    padding: 60px 16px 50px;
  }

  .why-head {
    margin: 0 auto 40px;
  }

  .why-heading {
    font-size: 28px;
  }

  .why-desc {
    font-size: 14px;
  }

  /* Dashboard mobile */
  .dashboard-stage {
    max-width: 100%;
    padding: 0px;
    margin: 0 auto 16px;
  }

  .dash-frame {
    border-radius: 18px;
    transform: rotateY(0deg) rotateX(0deg) !important;
  }

  .dashboard-stage:hover .dash-frame {
    transform: rotateY(0deg) rotateX(0deg) !important;
  }

  .dash-top {
    padding: 12px 14px;
    gap: 8px;
  }

  .dash-avatar {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .dash-greet .g1 {
    font-size: 10px;
  }

  .dash-greet .g2 {
    font-size: 12px;
  }

  .dash-bell svg {
    width: 16px;
    height: 16px;
  }

  .dash-body {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 10px;
  }

  .dash-panel {
    padding: 8px 10px;
    border-radius: 12px;
  }

  .panel-progress {
    gap: 6px;
  }

  .p-donut {
    width: 34px;
    height: 34px;
  }

  .p-label {
    font-size: 9px;
  }

  .p-label b {
    font-size: 13px;
  }

  .panel-live .p-title {
    font-size: 11px;
  }

  .panel-live .p-sub {
    font-size: 9px;
  }

  .panel-ai .ai-head {
    font-size: 10px;
  }

  .panel-ai .ai-bubble {
    font-size: 10px;
    padding: 6px 8px;
    max-width: 85%;
  }

  .panel-analytics .chart-bars {
    height: 28px;
    gap: 3px;
  }

  .panel-certificate .cert-icon {
    width: 20px;
    height: 20px;
  }

  .panel-certificate .cert-pop {
    font-size: 8px;
    padding: 2px 6px;
  }

  .mini-cal {
    gap: 2px;
  }

  .mini-cal span {
    height: 10px;
  }

  .dash-footer {
    padding: 10px 14px 14px;
  }

  .avatar-stack span {
    width: 18px;
    height: 18px;
    margin-left: -6px;
  }

  .dash-footer p {
    font-size: 10px;
  }

  /* Hide floating chips on mobile as they might overlap */
  .float-chip {
    display: none;
  }

  /* Features grid mobile */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-auto-rows: auto;
  }

  .feature-card {
    padding: 14px 14px 40px;
    border-radius: 16px;
    min-height: 100px;
  }

  .card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .card-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-card h3 {
    font-size: 13px;
    margin: 0 0 4px;
  }

  .feature-card p {
    font-size: 10.5px;
    -webkit-line-clamp: 2;
  }

  .card-arrow {
    width: 24px;
    height: 24px;
    bottom: 10px;
    right: 10px;
  }

  .card-arrow svg {
    width: 11px;
    height: 11px;
  }

  /* Bento placement mobile */
  .c-ai {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .c-live {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .c-progress {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .c-certificate {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .c-assignments {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .c-community {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .c-placements {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  .c-gamification {
    grid-column: 1/3;
    grid-row: 5/6;
    flex-direction: row;
    padding: 14px 14px;
    gap: 12px;
    min-height: 70px;
  }

  .c-gamification .card-icon {
    margin-bottom: 0;
    width: 32px;
    height: 32px;
  }

  .c-gamification .card-icon svg {
    width: 16px;
    height: 16px;
  }

  .c-gamification h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .c-gamification p {
    font-size: 10.5px;
    -webkit-line-clamp: 1;
  }

  .c-ai h3 {
    font-size: 16px;
  }

  .c-ai .card-icon {
    width: 42px;
    height: 42px;
  }

  .c-ai .card-icon svg {
    width: 20px;
    height: 20px;
  }

  .c-ai p {
    -webkit-line-clamp: 2;
    font-size: 11px;
  }

  /* Bottom strip mobile */
  .why-strip {
    margin-top: 40px;
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .strip-left p {
    font-size: 14px;
  }

  .strip-icon {
    width: 38px;
    height: 38px;
  }

  .strip-icon svg {
    width: 18px;
    height: 18px;
  }

  .btn-start {
    height: 42px;
    padding: 0 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
}

/* For very small phones */
@media (max-width: 380px) {
  .why-heading {
    font-size: 24px;
  }

  .why-badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .dash-body {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .panel-ai {
    grid-column: 1 / 2;
  }

  .panel-calendar {
    grid-column: 1 / 2;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .feature-card {
    padding: 10px 10px 35px;
    min-height: 80px;
  }

  .feature-card h3 {
    font-size: 11px;
  }

  .feature-card p {
    font-size: 9px;
  }

  .c-ai {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .c-live {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .c-progress {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .c-certificate {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .c-assignments {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .c-community {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .c-placements {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  .c-gamification {
    grid-column: 1/3;
    grid-row: 5/6;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
    min-height: 60px;
  }

  .c-gamification .card-icon {
    width: 28px;
    height: 28px;
  }

  .c-gamification .card-icon svg {
    width: 14px;
    height: 14px;
  }

  .c-gamification h3 {
    font-size: 11px;
  }

  .c-gamification p {
    font-size: 9px;
  }

  .c-ai .card-icon {
    width: 36px;
    height: 36px;
  }

  .c-ai .card-icon svg {
    width: 17px;
    height: 17px;
  }

  .c-ai h3 {
    font-size: 14px;
  }

  .c-ai p {
    font-size: 10px;
  }
}

/* For landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .why-section {
    padding: 50px 16px;
  }

  .why-layout {
    gap: 24px;
  }

  .dashboard-stage {
    max-width: 400px;
  }

  .features-grid {
    gap: 10px;
    grid-auto-rows: 90px;
  }

  .c-gamification {
    min-height: 60px;
  }
}
/* ===================== INTERACTIVE PLATFORM PREVIEW STYLING ===================== */
.preview-section {
  position: relative;
  overflow: hidden;
  padding: 110px 32px 90px;
  background: #fcfbff;
}
.preview-section::before,
.preview-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.55;
}
.preview-section::before {
  top: -160px;
  left: -180px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.22), transparent 70%);
}
.preview-section::after {
  bottom: -200px;
  right: -160px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
}
.dot-field {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(67, 56, 202, 0.1) 1.4px,
    transparent 1.4px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  z-index: 0;
}
.glass-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px -20px rgba(67, 56, 202, 0.25);
  z-index: 0;
}
.orb1 {
  width: 110px;
  height: 110px;
  top: 10%;
  left: 5%;
}
.orb2 {
  width: 64px;
  height: 64px;
  top: 64%;
  left: 2%;
}
.orb3 {
  width: 140px;
  height: 140px;
  bottom: 6%;
  right: 5%;
}
.orb4 {
  width: 56px;
  height: 56px;
  top: 16%;
  right: 9%;
}

.preview-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.preview-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  align-items: center;
}

/* ---------- LEFT ---------- */
.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(67, 56, 202, 0.08);
  border: 1px solid rgba(67, 56, 202, 0.18);
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.preview-badge svg {
  width: 13px;
  height: 13px;
}
.preview-heading {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.preview-heading .grad {
  background: linear-gradient(100deg, #4338ca 10%, #7c3aed 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.preview-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #5b5e7a;
  margin: 0 0 34px;
  max-width: 420px;
}

.role-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.role-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px 15px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e8e6f6;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.role-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  border-radius: 3px;
  background: transparent;
  transition: background 0.3s ease;
}
.role-tab .r-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1effb;
  color: #4338ca;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.role-tab .r-icon svg {
  width: 19px;
  height: 19px;
}
.role-tab .r-text {
  flex: 1;
  min-width: 0;
}
.role-tab .r-title {
  font-size: 14.5px;
  font-weight: 700;
}
.role-tab .r-sub {
  font-size: 11.5px;
  color: #5b5e7a;
  margin-top: 1px;
}
.role-tab .r-chev {
  width: 16px;
  height: 16px;
  color: #5b5e7a;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.role-tab:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 22px -14px rgba(67, 56, 202, 0.3);
}
.role-tab.active {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 30px -14px rgba(67, 56, 202, 0.32);
}
.role-tab.active::before {
  background: linear-gradient(180deg, #4338ca, #f59e0b);
}
.role-tab.active .r-icon {
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  color: #fff;
}
.role-tab.active .r-chev {
  transform: translateX(3px);
  color: #f59e0b;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  box-shadow: 0 16px 30px -12px rgba(67, 56, 202, 0.55);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -12px rgba(67, 56, 202, 0.65);
}
.btn-explore svg {
  width: 15px;
  height: 15px;
}

/* ---------- RIGHT: LAPTOP ---------- */
.laptop-stage {
  position: relative;
  padding: 60px 40px;
  perspective: 2000px;
}

.laptop {
  position: relative;
  margin: 0 auto;
  max-width: 640px;
  transform: rotateX(9deg) rotateY(-6deg);
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.laptop-stage:hover .laptop {
  transform: rotateX(2deg) rotateY(-1deg);
}

.laptop-lid {
  background: linear-gradient(160deg, #1e1f33, #12132a);
  border-radius: 22px 22px 6px 6px;
  padding: 14px 14px 8px;
  box-shadow:
    0 50px 90px -30px rgba(30, 20, 70, 0.45),
    0 14px 30px -10px rgba(18, 20, 43, 0.3);
}
.laptop-cam {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a3b57;
  margin: 0 auto 10px;
}
.laptop-screen {
  position: relative;
  background: #f7f6fd;
  border-radius: 10px;
  height: 400px;
  overflow: hidden;
}
.laptop-base {
  height: 18px;
  margin: 0 -18px;
  background: linear-gradient(180deg, #2b2c46, #17182b);
  clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 24px -10px rgba(18, 20, 43, 0.4);
}
.laptop-notch {
  height: 6px;
  width: 70px;
  margin: 0 auto;
  background: #0e0f1f;
  border-radius: 0 0 6px 6px;
}

/* Dashboard views inside screen */
.dash-view {
  position: absolute;
  inset: 0;
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  overflow: hidden;
}
.dash-view.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.db-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.db-topbar .who {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.db-topbar .who span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  color: #5b5e7a;
}
.db-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4338ca, #7c3aed);
}

.db-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.stat-card {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 12px;
  padding: 10px 12px;
}
.stat-card .s-num {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.stat-card .s-lbl {
  font-size: 10px;
  color: #5b5e7a;
  font-weight: 600;
  margin-top: 1px;
}

.db-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
}
.db-card {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 12px;
  padding: 12px 13px;
}
.db-card .c-title {
  font-size: 11px;
  font-weight: 700;
  color: #5b5e7a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.continue-card {
  background: linear-gradient(
    120deg,
    rgba(67, 56, 202, 0.08),
    rgba(124, 58, 237, 0.05)
  );
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.continue-thumb {
  width: 44px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(145deg, #7c3aed, #f59e0b);
  flex-shrink: 0;
}
.continue-info {
  flex: 1;
  min-width: 0;
}
.continue-info .t {
  font-size: 12px;
  font-weight: 700;
}
.progress-track {
  height: 5px;
  border-radius: 6px;
  background: #edebfa;
  margin-top: 5px;
}
.progress-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #4338ca, #7c3aed);
}
.resume-chip {
  font-size: 9.5px;
  font-weight: 800;
  color: #4338ca;
  background: #edebfa;
  padding: 4px 8px;
  border-radius: 100px;
}

.list-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 11px;
}
.list-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7c3aed;
  flex-shrink: 0;
}
.list-row .meta {
  margin-left: auto;
  color: #5b5e7a;
  font-size: 10px;
}

.mini-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mini-course {
  height: 34px;
  border-radius: 8px;
}
.mc1 {
  background: linear-gradient(145deg, #6d5cf0, #4338ca);
}
.mc2 {
  background: linear-gradient(145deg, #34d399, #059669);
}
.mc3 {
  background: linear-gradient(145deg, #f472b6, #db2777);
}

.cert-row {
  display: flex;
  gap: 8px;
}
.cert-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 5px 9px;
  border-radius: 100px;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
}
.mini-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #7c3aed, #4338ca);
}

/* Floating chips around laptop */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e8e6f6;
  box-shadow: 0 16px 32px -14px rgba(18, 20, 43, 0.22);
  backdrop-filter: blur(8px);
  animation: floaty2 5s ease-in-out infinite;
  z-index: 3;
}
.float-card .fc-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.float-card .fc-icon svg {
  width: 15px;
  height: 15px;
}
.float-card .fc-text .t {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
}
.float-card .fc-text .s {
  font-size: 10px;
  color: #5b5e7a;
}
@keyframes floaty2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fc-progress {
  top: 2%;
  left: -2%;
  animation-delay: 0.1s;
}
.fc-certificate {
  top: -2%;
  right: 6%;
  animation-delay: 0.9s;
}
.fc-live {
  top: 38%;
  left: -8%;
  animation-delay: 0.5s;
}
.fc-ai {
  top: 40%;
  right: -8%;
  animation-delay: 1.3s;
}
.fc-rating {
  bottom: 2%;
  left: 8%;
  animation-delay: 1.7s;
}
.fc-message {
  bottom: -2%;
  right: 2%;
  animation-delay: 2.1s;
}

/* ===================== BOTTOM 4 CARDS ===================== */
.bottom-features {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mini-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.mini-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(67, 56, 202, 0.3);
  border-color: rgba(245, 158, 11, 0.45);
}
.mini-feature .mf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 16px -6px rgba(18, 20, 43, 0.3);
}
.mini-feature .mf-icon svg {
  width: 21px;
  height: 21px;
  color: #fff;
}
.mini-feature h4 {
  margin: 0 0 3px;
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
}
.mini-feature p {
  margin: 0;
  font-size: 11.5px;
  color: #5b5e7a;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .preview-layout {
    grid-template-columns: 1fr;
  }
  .preview-desc {
    max-width: none;
  }
  .laptop-stage {
    padding: 70px 10px 20px;
  }
  .float-card {
    display: none;
  }
}
@media (max-width: 640px) {
  .bottom-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .preview-heading {
    font-size: 28px;
  }
  .db-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .db-columns {
    grid-template-columns: 1fr;
  }

  /* Smaller bottom cards for mobile */
  .mini-feature {
    padding: 14px 16px;
    gap: 10px;
    border-radius: 14px;
  }
  .mini-feature .mf-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .mini-feature .mf-icon svg {
    width: 16px;
    height: 16px;
  }
  .mini-feature h4 {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .mini-feature p {
    font-size: 10px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .bottom-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .mini-feature {
    padding: 12px 12px;
    gap: 8px;
    border-radius: 12px;
    flex-direction: row;
  }
  .mini-feature .mf-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .mini-feature .mf-icon svg {
    width: 14px;
    height: 14px;
  }
  .mini-feature h4 {
    font-size: 11px;
    margin-bottom: 1px;
    line-height: 1.2;
  }
  .mini-feature p {
    font-size: 9px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 380px) {
  .bottom-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .mini-feature {
    padding: 10px 10px;
    gap: 6px;
    border-radius: 10px;
  }
  .mini-feature .mf-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }
  .mini-feature .mf-icon svg {
    width: 12px;
    height: 12px;
  }
  .mini-feature h4 {
    font-size: 10px;
    margin-bottom: 1px;
  }
  .mini-feature p {
    font-size: 8.5px;
  }
}
/*===========================LEARINING JOURNEY SECTION STYLING===========================*/

.lms_journey_head {
  position: relative;
  overflow: hidden;
  padding: 100px 32px 40px;
  background: #fcfbff;
}
.lms_journey_head::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.16), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}
.lms_jh_inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lms_jh_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(67, 56, 202, 0.08);
  border: 1px solid rgba(67, 56, 202, 0.18);
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lms_jh_badge svg {
  width: 13px;
  height: 13px;
}
.lms_jh_heading {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.22;
  margin: 0 0 14px;
}
.lms_jh_heading .grad {
  background: linear-gradient(100deg, #4338ca 10%, #7c3aed 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lms_jh_desc {
  font-size: 15.5px;
  color: #5b5e7a;
  line-height: 1.6;
  margin: 0;
}

.lms_journey_scroll {
  position: relative;
  height: 600vh;
}
.lms_journey_pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fcfbff;
}
.lms_bg_glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: background 1s ease;
  opacity: 0.9;
}
.lms_bg_glow.step-0 {
  background: radial-gradient(
    circle at 15% 30%,
    rgba(67, 56, 202, 0.16),
    transparent 55%
  );
}
.lms_bg_glow.step-1 {
  background: radial-gradient(
    circle at 85% 25%,
    rgba(124, 58, 237, 0.16),
    transparent 55%
  );
}
.lms_bg_glow.step-2 {
  background: radial-gradient(
    circle at 20% 75%,
    rgba(245, 158, 11, 0.14),
    transparent 55%
  );
}
.lms_bg_glow.step-3 {
  background: radial-gradient(
    circle at 80% 70%,
    rgba(5, 150, 105, 0.14),
    transparent 55%
  );
}
.lms_bg_glow.step-4 {
  background: radial-gradient(
    circle at 25% 25%,
    rgba(219, 39, 119, 0.14),
    transparent 55%
  );
}
.lms_bg_glow.step-5 {
  background: radial-gradient(
    circle at 75% 75%,
    rgba(37, 99, 235, 0.16),
    transparent 55%
  );
}

.lms_dot_field {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(67, 56, 202, 0.09) 1.4px,
    transparent 1.4px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 85% 70% at 50% 45%,
    #000 40%,
    transparent 88%
  );
  mask-image: radial-gradient(
    ellipse 85% 70% at 50% 45%,
    #000 40%,
    transparent 88%
  );
  z-index: 0;
}

.lms_bg_float {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e8e6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  backdrop-filter: blur(6px);
  animation: lms_bgFloat 9s ease-in-out infinite;
  z-index: 0;
}
.lms_bg_float svg {
  width: 24px;
  height: 24px;
  color: #7c3aed;
}
@keyframes lms_bgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.lms_bf1 {
  top: 10%;
  left: 6%;
  animation-delay: 0s;
}
.lms_bf2 {
  top: 20%;
  right: 8%;
  animation-delay: 1.5s;
}
.lms_bf3 {
  bottom: 24%;
  left: 4%;
  animation-delay: 3s;
}
.lms_bf4 {
  bottom: 14%;
  right: 6%;
  animation-delay: 2s;
}
.lms_bf5 {
  top: 50%;
  left: 2%;
  animation-delay: 1s;
}
.lms_bf6 {
  top: 46%;
  right: 3%;
  animation-delay: 2.6s;
}

.lms_journey_layout {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 50px;
  align-items: center;
  padding: 0 32px;
}

.lms_timeline_wrap {
  position: relative;
  padding-left: 36px;
}
.lms_timeline_track {
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: #e8e6f6;
}
.lms_timeline_fill {
  position: absolute;
  left: 9px;
  top: 6px;
  width: 3px;
  border-radius: 3px;
  height: 0%;
  background: linear-gradient(180deg, #4338ca, #7c3aed, #f59e0b);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}

.lms_tl_step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  cursor: default;
  transition: transform 0.3s ease;
}
.lms_tl_step:hover {
  transform: translateX(3px);
}
.lms_tl_circle {
  position: absolute;
  left: -36px;
  top: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #e8e6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #5b5e7a;
  z-index: 2;
  transition: all 0.4s ease;
}
.lms_tl_step.done .lms_tl_circle {
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  border-color: #7c3aed;
  color: #fff;
}
.lms_tl_step.active .lms_tl_circle {
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  border-color: #f59e0b;
  color: #fff;
  box-shadow:
    0 0 0 6px rgba(245, 158, 11, 0.18),
    0 0 24px rgba(124, 58, 237, 0.55);
  animation: lms_circlePulse 1.6s ease-in-out infinite;
}
@keyframes lms_circlePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}
.lms_tl_text {
  transition: all 0.4s ease;
  opacity: 0.45;
}
.lms_tl_step.active .lms_tl_text,
.lms_tl_step.done .lms_tl_text {
  opacity: 1;
}
.lms_tl_title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.lms_tl_sub {
  font-size: 11.5px;
  color: #5b5e7a;
}
.lms_tl_step.active .lms_tl_title {
  color: #7c3aed;
}

.lms_dash_viewer {
  position: relative;
  height: 440px;
  perspective: 1600px;
}
.lms_step_panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e8e6f6;
  border-radius: 22px;
  padding: 24px 28px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 10px 20px -10px rgba(18, 20, 43, 0.15),
    0 40px 70px -30px rgba(67, 56, 202, 0.38);
  opacity: 0;
  transform: translateX(50px) rotateY(0deg) rotateX(0deg);
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.3s ease-out,
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.lms_step_panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 3;
}
.lms_step_panel.prev {
  opacity: 0;
  transform: translateX(-50px);
}

.lms_step_panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--lms_angle),
    #4338ca,
    #f59e0b,
    #7c3aed,
    #4338ca
  );
  -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;
  pointer-events: none;
  z-index: 1;
}
.lms_step_panel.active::before {
  opacity: 0.9;
  animation: lms_jRotate 4s linear infinite;
}
@keyframes lms_jRotate {
  to {
    --lms_angle: 360deg;
  }
}

.lms_sp_head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.lms_sp_icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 18px -6px rgba(18, 20, 43, 0.35);
  transition: transform 0.3s ease;
}
.lms_sp_icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.lms_step_panel.active .lms_sp_icon {
  animation: lms_iconPop 0.5s ease;
}
@keyframes lms_iconPop {
  from {
    transform: scale(0.6) rotate(-8deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
.lms_sp_head h3 {
  font-family: "Sora", sans-serif;
  font-size: 18.5px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.lms_sp_head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #5b5e7a;
}

.lms_sp_row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.lms_sp_card {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 14px;
  padding: 14px 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}
.lms_step_panel.active .lms_sp_card {
  animation: lms_spCardIn 0.5s ease forwards;
}
.lms_step_panel.active .lms_sp_row .lms_sp_card:nth-child(1) {
  animation-delay: 0.1s;
}
.lms_step_panel.active .lms_sp_row .lms_sp_card:nth-child(2) {
  animation-delay: 0.2s;
}
@keyframes lms_spCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lms_sp_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -18px rgba(67, 56, 202, 0.35);
  border-color: rgba(124, 58, 237, 0.3);
}
.lms_sp_card .ct {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5b5e7a;
  margin-bottom: 9px;
}

.lms_chip_row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.lms_chip {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  background: #f1effb;
  color: #4338ca;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}
.lms_chip:hover {
  transform: translateY(-2px);
  background: #4338ca;
  color: #fff;
  box-shadow: 0 8px 16px -8px rgba(67, 56, 202, 0.5);
}
.lms_chip.on {
  background: #4338ca;
  color: #fff;
}
.lms_search_mini {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6f5fc;
  border: 1px solid #e8e6f6;
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 11.5px;
  color: #5b5e7a;
  margin-bottom: 12px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.lms_search_mini:hover {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.lms_search_mini svg {
  width: 14px;
  height: 14px;
}
.lms_course_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.lms_course_item {
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}
.lms_course_item:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 24px -12px rgba(67, 56, 202, 0.4);
}
.lms_course_item .thumb {
  height: 38px;
  position: relative;
  overflow: hidden;
}
.lms_course_item .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.lms_course_item:hover .thumb::after {
  transform: translateX(100%);
}
.lms_course_item .info {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 6px 7px;
  font-size: 9.5px;
  font-weight: 700;
}
.lms_cm1 {
  background: linear-gradient(145deg, #6d5cf0, #4338ca);
}
.lms_cm2 {
  background: linear-gradient(145deg, #34d399, #059669);
}
.lms_cm3 {
  background: linear-gradient(145deg, #f472b6, #db2777);
}
.lms_enroll_btn {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 12px 22px -12px rgba(67, 56, 202, 0.55);
}
.lms_enroll_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.lms_enroll_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(67, 56, 202, 0.65);
}
.lms_enroll_btn:hover::after {
  left: 130%;
}
.lms_mini_avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #7c3aed, #f59e0b);
  transition: transform 0.3s ease;
}
.lms_mini_avatar:hover {
  transform: scale(1.1) rotate(-4deg);
}

.lms_video_player {
  background: #1b1c2e;
  border-radius: 12px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
}
.lms_video_player .play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.lms_video_player:hover .play {
  transform: scale(1.14);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}
.lms_video_player .play svg {
  width: 14px;
  height: 14px;
  color: #4338ca;
}
.lms_video_scrub {
  position: absolute;
  bottom: 9px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}
.lms_video_scrub i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: #f59e0b;
  border-radius: 3px;
}
.lms_step_panel.active .lms_video_scrub i {
  animation: lms_scrubGrow 4s ease-in-out infinite alternate;
}
@keyframes lms_scrubGrow {
  from {
    width: 30%;
  }
  to {
    width: 60%;
  }
}
.lms_note_line {
  height: 7px;
  border-radius: 5px;
  background: #edebfa;
  margin-bottom: 6px;
  transition: background 0.3s ease;
}
.lms_sp_card:hover .lms_note_line {
  background: #e3dffb;
}

.lms_quiz_card {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 600;
}
.lms_quiz_opt {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  padding: 7px 8px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
}
.lms_quiz_opt:hover {
  background: #f6f5fc;
  transform: translateX(3px);
}
.lms_quiz_opt .ob {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #e8e6f6;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.lms_quiz_opt.correct .ob {
  background: #059669;
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}
.lms_lb_row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.lms_lb_row:hover {
  background: #f6f5fc;
  transform: translateX(3px);
}
.lms_lb_rank {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f1effb;
  color: #4338ca;
  font-size: 9.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.lms_lb_row:hover .lms_lb_rank {
  background: #4338ca;
  color: #fff;
}
.lms_lb_row .meta {
  margin-left: auto;
  color: #5b5e7a;
  font-weight: 600;
}

.lms_upload_box {
  border: 1.5px dashed rgba(124, 58, 237, 0.35);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  font-size: 11px;
  color: #5b5e7a;
  font-weight: 600;
  margin-bottom: 10px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}
.lms_upload_box:hover {
  border-color: #7c3aed;
  background: #f8f6ff;
  transform: translateY(-2px);
}
.lms_upload_box svg {
  width: 22px;
  height: 22px;
  color: #7c3aed;
  margin-bottom: 6px;
  transition: transform 0.25s ease;
}
.lms_upload_box:hover svg {
  transform: translateY(-3px);
}
.lms_status_chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 5px 10px;
  border-radius: 100px;
}
.lms_feedback_bubble {
  background: #f5f4fc;
  border-radius: 10px 10px 10px 3px;
  padding: 9px 11px;
  font-size: 11px;
  margin-top: 8px;
  transition: background 0.25s ease;
}
.lms_sp_card:hover .lms_feedback_bubble {
  background: #efebfd;
}

.lms_cert_card {
  background: linear-gradient(135deg, #fff, #f8f6ff);
  border: 1.5px solid #f59e0b;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.lms_cert_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px -18px rgba(245, 158, 11, 0.45);
}
.lms_cert_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.lms_cert_card:hover::after {
  left: 130%;
}
.lms_cert_card svg {
  width: 30px;
  height: 30px;
  color: #f59e0b;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}
.lms_cert_card:hover svg {
  transform: scale(1.15) rotate(-6deg);
}
.lms_cert_card .cn {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.lms_cert_card .cc {
  font-size: 11px;
  color: #5b5e7a;
}
.lms_qr_box {
  width: 64px;
  height: 64px;
  margin: 12px auto 0;
  border-radius: 8px;
  background: repeating-linear-gradient(45deg, #12142b 0 3px, #fff 3px 6px);
  position: relative;
  transition: transform 0.3s ease;
}
.lms_qr_box:hover {
  transform: scale(1.08);
}
.lms_qr_box::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: #fff;
}

.lms_offer_card {
  background: linear-gradient(
    120deg,
    rgba(67, 56, 202, 0.08),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.lms_offer_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -18px rgba(67, 56, 202, 0.35);
  border-color: rgba(124, 58, 237, 0.4);
}
.lms_offer_card .role {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
}
.lms_offer_card .co {
  font-size: 11px;
  color: #5b5e7a;
}
.lms_salary_chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #059669;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 100px;
  margin-top: 8px;
  transition: transform 0.25s ease;
}
.lms_offer_card:hover .lms_salary_chip {
  transform: scale(1.06);
}
.lms_congrats_banner {
  text-align: center;
  margin-top: 6px;
}
.lms_congrats_banner .big {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(100deg, #4338ca, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lms_confetti_layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}
.lms_confetti_piece {
  position: absolute;
  top: -10%;
  width: 8px;
  height: 14px;
  opacity: 0;
  border-radius: 2px;
}

.lms_progress_tracker {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4;
  width: min(560px, 90%);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e8e6f6;
  border-radius: 16px;
  padding: 14px 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -20px rgba(67, 56, 202, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
}
.lms_pt_label {
  font-size: 11px;
  font-weight: 700;
  color: #5b5e7a;
  white-space: nowrap;
}
.lms_pt_bar_track {
  flex: 1;
  height: 8px;
  border-radius: 6px;
  background: #edebfa;
  overflow: hidden;
}
.lms_pt_bar_fill {
  height: 100%;
  width: 0%;
  border-radius: 6px;
  background: linear-gradient(90deg, #4338ca, #7c3aed, #f59e0b);
  transition: width 0.3s ease;
}
.lms_pt_pct {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #4338ca;
  min-width: 38px;
}
.lms_pt_next {
  font-size: 10.5px;
  color: #5b5e7a;
  font-weight: 600;
  white-space: nowrap;
}
.lms_pt_next b {
  color: #12142b;
}

.lms_mobile_journey {
  display: none;
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet */
@media (max-width: 1080px) {
  .lms_journey_head {
    padding: 70px 24px 30px;
  }

  .lms_jh_heading {
    font-size: 32px;
  }

  .lms_jh_desc {
    font-size: 14px;
  }

  .lms_journey_scroll {
    display: none;
  }

  .lms_mobile_journey {
    display: block;
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding: 20px 16px 50px;
  }

  .lms_mj_card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e8e6f6;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px -24px rgba(67, 56, 202, 0.25);
    transition: transform 0.3s ease;
  }

  .lms_mj_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -24px rgba(67, 56, 202, 0.35);
  }

  .lms_mj_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(145deg, #4338ca, #7c3aed);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .lms_mj_card h3 {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    margin: 0 0 6px;
  }

  .lms_mj_card p {
    font-size: 12.5px;
    color: #5b5e7a;
    margin: 0;
    line-height: 1.5;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .lms_journey_head {
    padding: 60px 16px 24px;
  }

  .lms_jh_badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .lms_jh_heading {
    font-size: 28px;
  }

  .lms_jh_desc {
    font-size: 13px;
  }

  .lms_mobile_journey {
    padding: 16px 12px 40px;
  }

  .lms_mj_card {
    padding: 16px 16px;
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .lms_mj_num {
    width: 26px;
    height: 26px;
    font-size: 10px;
    margin-bottom: 8px;
  }

  .lms_mj_card h3 {
    font-size: 14px;
  }

  .lms_mj_card p {
    font-size: 11.5px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .lms_journey_head {
    padding: 50px 12px 20px;
  }

  .lms_jh_badge {
    font-size: 9px;
    padding: 5px 12px;
    gap: 5px;
  }

  .lms_jh_badge svg {
    width: 11px;
    height: 11px;
  }

  .lms_jh_heading {
    font-size: 24px;
  }

  .lms_jh_desc {
    font-size: 12px;
  }

  .lms_mobile_journey {
    padding: 12px 10px 30px;
  }

  .lms_mj_card {
    padding: 14px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .lms_mj_num {
    width: 22px;
    height: 22px;
    font-size: 9px;
    margin-bottom: 6px;
  }

  .lms_mj_card h3 {
    font-size: 13px;
  }

  .lms_mj_card p {
    font-size: 10.5px;
    line-height: 1.4;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .lms_journey_head {
    padding: 40px 8px 16px;
  }

  .lms_jh_heading {
    font-size: 20px;
  }

  .lms_jh_desc {
    font-size: 11px;
  }

  .lms_mj_card {
    padding: 12px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
  }

  .lms_mj_card h3 {
    font-size: 12px;
  }

  .lms_mj_card p {
    font-size: 10px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .lms_journey_head {
    padding: 50px 20px 20px;
  }

  .lms_jh_heading {
    font-size: 26px;
  }

  .lms_mobile_journey {
    max-width: 500px;
    padding: 16px 16px 30px;
  }

  .lms_mj_card {
    padding: 14px 16px;
    margin-bottom: 10px;
  }

  .lms_mj_card h3 {
    font-size: 14px;
  }
}
/*==========================POPULAR COURSE SECTION STYLING=============================*/
.courses-section {
  position: relative;
  overflow: hidden;
  padding: 90px 5vw 100px;
  background: #ffffff;
}
.cs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.cs-blob-1 {
  width: 480px;
  height: 480px;
  background: rgba(16, 156, 181, 0.1);
  top: -160px;
  left: -120px;
}
.cs-blob-2 {
  width: 420px;
  height: 420px;
  background: rgba(124, 58, 237, 0.08);
  bottom: -140px;
  right: -100px;
}
.cs-blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(240, 165, 0, 0.06);
  top: 45%;
  right: 10%;
}

.cs-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- HEADER ---------------- */
.cs-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 36px;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: #0d7f94;
  background: rgba(16, 156, 181, 0.08);
  border: 1px solid rgba(16, 156, 181, 0.22);
}
.cs-badge i {
  font-size: 12px;
}
.cs-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: #11141f;
  line-height: 1.15;
}
.cs-title .accent {
  background: linear-gradient(100deg, #109cb5 0%, #7c3aed 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cs-sub {
  font-size: 15.5px;
  color: #5b6570;
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

/* ---------------- FILTER ROW ---------------- */
.cs-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cs-filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.filter-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  font-weight: 700;
  color: #11141f;
  background: #fff;
  border: 1.5px solid #e7eef1;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.filter-pill:hover {
  border-color: #109cb5;
  transform: translateY(-1px);
}
.filter-pill.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #109cb5, #0d7f94);
  box-shadow: 0 8px 20px -4px rgba(16, 156, 181, 0.35);
}
.cs-viewall {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: #11141f;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid #e7eef1;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.cs-viewall:hover {
  border-color: #109cb5;
  color: #0d7f94;
  transform: translateX(2px);
}
.cs-viewall i {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.cs-viewall:hover i {
  transform: translateX(3px);
}

/* ---------------- SLIDER SHELL + NAV (inside slider area) ---------------- */
.cs-slider-shell {
  position: relative;
  overflow: visible;
}
.cs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e7eef1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 20, 40, 0.1);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-nav:hover {
  background: linear-gradient(135deg, #109cb5, #0d7f94);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(16, 156, 181, 0.35);
}
.cs-nav:hover i {
  color: #fff;
}
.cs-nav i {
  font-size: 16px;
  color: #11141f;
  transition: color 0.2s ease;
}
.cs-nav.prev {
  left: -18px;
}
.cs-nav.next {
  right: -18px;
}
.cs-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.cs-nav.swiper-button-disabled:hover {
  background: #fff;
}
.cs-nav.swiper-button-disabled:hover i {
  color: #11141f;
}
@media (max-width: 640px) {
  .cs-nav {
    display: none;
  }
}

/* Swiper container — cards stay inside */
.courses-swiper {
  padding: 10px 4px 40px;
  overflow: visible;
}
.swiper-slide {
  height: auto;
}

/* ---------------- COURSE CARD ---------------- */
.course-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eef3f5;
  box-shadow: 0 6px 22px rgba(10, 30, 50, 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -14px rgba(10, 40, 70, 0.18);
  border-color: rgba(16, 156, 181, 0.25);
}

.thumb-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.course-card:hover .thumb-wrap img {
  transform: scale(1.08);
}
.thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 10, 20, 0.35) 100%
  );
}

.cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(4px);
}
.cat-badge.web-dev {
  background: rgba(16, 156, 181, 0.92);
}
.cat-badge.ai {
  background: rgba(124, 58, 237, 0.92);
}
.cat-badge.marketing {
  background: rgba(240, 165, 0, 0.92);
}
.cat-badge.design {
  background: rgba(214, 51, 108, 0.92);
}
.cat-badge.business {
  background: rgba(31, 166, 114, 0.92);
}

.ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  z-index: 2;
  background: linear-gradient(135deg, #ffb020, #f0a500);
  color: #3a2400;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 40px;
  transform: rotate(40deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.wishlist-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  overflow: visible;
}
.wishlist-btn i {
  font-size: 14px;
  color: #495057;
  position: relative;
  z-index: 2;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.wishlist-btn.liked i {
  color: #e0473c;
}
.wishlist-btn .burst {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle, rgba(224, 71, 60, 0.5), transparent 70%);
  opacity: 0;
  transform: scale(0.4);
  pointer-events: none;
}
.wishlist-btn.pop .burst {
  animation: heartBurst 0.55s ease-out;
}
.wishlist-btn.pop i {
  animation: heartBounce 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes heartBurst {
  0% {
    opacity: 0.9;
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}
@keyframes heartBounce {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.45);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.card-body {
  padding: 16px 18px 6px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.course-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #11141f;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 41px;
}

.meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 11.5px;
  color: #5b6570;
  font-weight: 600;
}
.meta-row .m-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-row i {
  font-size: 12px;
  color: #109cb5;
  flex-shrink: 0;
}
.stu-avatars {
  display: flex;
  align-items: center;
}
.stu-avatars span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  margin-left: -6px;
  background: linear-gradient(135deg, #109cb5, #7c3aed);
}
.stu-avatars span:first-child {
  margin-left: 0;
}

.row-level-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.level-badge {
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 7px;
  letter-spacing: 0.02em;
}
.level-badge.beginner {
  background: rgba(31, 166, 114, 0.12);
  color: #1fa672;
}
.level-badge.intermediate {
  background: rgba(240, 165, 0, 0.14);
  color: #a56b00;
}
.level-badge.advanced {
  background: rgba(224, 71, 60, 0.12);
  color: #e0473c;
}
.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 800;
  color: #11141f;
}
.rating i {
  font-size: 13px;
  color: #f0a500;
}

.progress-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.progress-row .pr-label {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 700;
  color: #5b6570;
}
.progress-row .pr-label b {
  color: #11141f;
}
.pr-track {
  height: 6px;
  border-radius: 99px;
  background: #eef3f5;
  overflow: hidden;
}
.pr-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, #109cb5, #0d7f94);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 12px;
  margin-top: 2px;
  border-top: 1px dashed #eef1f3;
}
.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.price-now {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #11141f;
}
.price-old {
  font-size: 12px;
  color: #a7b1b6;
  text-decoration: line-through;
}
.btn-enroll {
  padding: 9px 17px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #109cb5, #0d7f94);
  box-shadow: 0 6px 16px rgba(16, 156, 181, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 156, 181, 0.35);
}

.btn-view-details {
  margin: 0 18px 14px;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #11141f;
  background: #f2f8fa;
  border: 1px solid #e2edf0;
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-view-details:hover {
  background: #fff;
  border-color: #109cb5;
  color: #0d7f94;
}

.skill-meter {
  padding: 14px 18px 18px;
  border-top: 1px solid #f1f5f6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fbfdfe;
}
.sm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: #5b6570;
}
.sm-name {
  width: 70px;
  flex-shrink: 0;
  color: #11141f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sm-track {
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: #e9eff1;
  overflow: hidden;
}
.sm-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sm-pct {
  width: 32px;
  text-align: right;
  flex-shrink: 0;
  color: #11141f;
}

/* ---------------- CTA STRIP ---------------- */
.cs-cta {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 30px;
  border-radius: 24px;
  background: linear-gradient(
    120deg,
    rgba(16, 156, 181, 0.06),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid rgba(16, 156, 181, 0.15);
}
.cs-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cs-cta-ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #109cb5, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-cta-ic i {
  font-size: 19px;
  color: #fff;
}
.cs-cta-left p {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #11141f;
}
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #11141f, #003664);
  box-shadow: 0 10px 26px rgba(0, 20, 40, 0.2);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  text-decoration: none;
}
.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 20, 40, 0.28);
}
.btn-explore i {
  font-size: 13px;
}

/* ============================================================= DETAILS PANEL (drawer) ============================================================= */
.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5, 15, 25, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.panel-overlay.open {
  opacity: 1;
  visibility: visible;
}

.details-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  z-index: 81;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0, 20, 40, 0.25);
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.details-panel.open {
  transform: translateX(0);
}

.dp-close {
  position: absolute;
  top: 135px;
  right: 16px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e7eef1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dp-close i {
  font-size: 14px;
}

.dp-content {
  display: none;
  flex-direction: column;
  flex: 1;
}
.dp-content.active {
  display: flex;
}

.dp-hero {
  position: relative;
  aspect-ratio: 16/9;
}
.dp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 10, 20, 0.55) 100%
  );
}
.dp-trailer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}
.dp-trailer .play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.dp-trailer:hover .play-circle {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.28);
}
.dp-trailer i {
  font-size: 18px;
  margin-left: 3px;
}
.dp-cat {
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 999px;
}

.dp-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dp-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #11141f;
  margin: 0;
  line-height: 1.3;
}

.dp-section-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5b6570;
  margin: 0 0 10px;
}
.dp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dp-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #11141f;
}
.dp-check-ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(31, 166, 114, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dp-check-ic i {
  font-size: 9px;
  color: #1fa672;
}

.dp-cert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(
    120deg,
    rgba(240, 165, 0, 0.09),
    rgba(214, 51, 108, 0.06)
  );
  border: 1px solid rgba(240, 165, 0, 0.25);
}
.dp-cert-ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #f0a500, #c98200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dp-cert-ic i {
  font-size: 16px;
  color: #fff;
}
.dp-cert p {
  margin: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: #11141f;
  line-height: 1.4;
}
.dp-cert small {
  color: #5b6570;
  font-weight: 600;
}

.dp-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: auto;
  padding: 16px 24px;
  background: #fff;
  border-top: 1px solid #eef3f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.dp-price {
  display: flex;
  flex-direction: column;
}
.dp-price .now {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #11141f;
}
.dp-price .old {
  font-size: 11.5px;
  color: #a7b1b6;
  text-decoration: line-through;
}
.dp-enroll {
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #109cb5, #0d7f94);
  box-shadow: 0 10px 24px rgba(16, 156, 181, 0.35);
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet */
@media (max-width: 1024px) {
  .courses-section {
    padding: 70px 4vw 80px;
  }

  .cs-title {
    font-size: 32px;
  }

  .cs-sub {
    font-size: 14px;
  }

  .cs-controls {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cs-filters {
    justify-content: center;
  }

  .filter-pill {
    padding: 7px 14px;
    font-size: 12px;
  }

  .cs-viewall {
    font-size: 12.5px;
    padding: 8px 16px;
  }

  .course-card {
    border-radius: 18px;
  }

  .card-body {
    padding: 14px 16px 4px;
    gap: 9px;
  }

  .course-title {
    font-size: 14px;
    min-height: 36px;
  }

  .price-now {
    font-size: 16px;
  }

  .btn-enroll {
    font-size: 11.5px;
    padding: 7px 14px;
  }

  .cs-cta {
    padding: 18px 24px;
    gap: 16px;
  }

  .cs-cta-left p {
    font-size: 14px;
  }

  .btn-explore {
    padding: 11px 22px;
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .courses-section {
    padding: 60px 3.5vw 60px;
  }

  .cs-head {
    gap: 10px;
    margin-bottom: 28px;
  }

  .cs-badge {
    font-size: 10.5px;
    padding: 5px 12px;
  }

  .cs-title {
    font-size: 26px;
  }

  .cs-sub {
    font-size: 13px;
    max-width: 100%;
  }

  .cs-controls {
    gap: 12px;
    margin-bottom: 20px;
  }

  .cs-filters {
    gap: 6px;
  }

  .filter-pill {
    padding: 6px 12px;
    font-size: 11px;
    gap: 4px;
  }

  .cs-viewall {
    font-size: 11.5px;
    padding: 6px 14px;
  }

  .cs-viewall i {
    font-size: 10px;
  }

  .courses-swiper {
    padding: 6px 2px 30px;
  }

  .course-card {
    border-radius: 16px;
  }

  .thumb-wrap {
    aspect-ratio: 16/11;
  }

  .cat-badge {
    font-size: 9px;
    padding: 4px 9px;
    top: 10px;
    left: 10px;
  }

  .ribbon {
    font-size: 8px;
    padding: 3px 30px;
    top: 10px;
    right: -28px;
  }

  .wishlist-btn {
    width: 28px;
    height: 28px;
    bottom: 8px;
    right: 8px;
  }

  .wishlist-btn i {
    font-size: 12px;
  }

  .card-body {
    padding: 12px 14px 4px;
    gap: 8px;
  }

  .course-title {
    font-size: 13px;
    min-height: 32px;
    -webkit-line-clamp: 2;
  }

  .meta-row {
    font-size: 10px;
    gap: 6px 10px;
  }

  .meta-row i {
    font-size: 10px;
  }

  .stu-avatars span {
    width: 14px;
    height: 14px;
  }

  .row-level-rating {
    flex-wrap: wrap;
    gap: 6px;
  }

  .level-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  .rating {
    font-size: 11px;
  }

  .rating i {
    font-size: 11px;
  }

  .progress-row .pr-label {
    font-size: 9.5px;
  }

  .pr-track {
    height: 5px;
  }

  .price-row {
    padding: 6px 0 10px;
  }

  .price-now {
    font-size: 15px;
  }

  .price-old {
    font-size: 10.5px;
  }

  .btn-enroll {
    font-size: 10.5px;
    padding: 6px 12px;
  }

  .btn-view-details {
    font-size: 11px;
    padding: 8px;
    margin: 0 14px 10px;
    border-radius: 10px;
  }

  .skill-meter {
    padding: 10px 14px 14px;
    gap: 6px;
  }

  .sm-row {
    font-size: 9.5px;
    gap: 6px;
  }

  .sm-name {
    width: 56px;
    font-size: 9px;
  }

  .sm-track {
    height: 4px;
  }

  .sm-pct {
    width: 28px;
    font-size: 9px;
  }

  .cs-cta {
    margin-top: 32px;
    padding: 16px 20px;
    border-radius: 18px;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .cs-cta-left {
    gap: 10px;
  }

  .cs-cta-ic {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .cs-cta-ic i {
    font-size: 16px;
  }

  .cs-cta-left p {
    font-size: 13px;
  }

  .btn-explore {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  .btn-explore i {
    font-size: 11px;
  }

  /* Details panel mobile */
  .details-panel {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .dp-body {
    padding: 18px 18px 20px;
    gap: 16px;
  }

  .dp-title {
    font-size: 17px;
  }

  .dp-section-label {
    font-size: 10.5px;
    margin-bottom: 8px;
  }

  .dp-checklist li {
    font-size: 12.5px;
    gap: 8px;
  }

  .dp-cert {
    padding: 12px;
  }

  .dp-cert p {
    font-size: 11.5px;
  }

  .dp-footer {
    padding: 14px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .dp-price {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .dp-price .now {
    font-size: 18px;
  }

  .dp-enroll {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .courses-section {
    padding: 50px 3vw 50px;
  }

  .cs-head {
    gap: 8px;
    margin-bottom: 22px;
  }

  .cs-badge {
    font-size: 9px;
    padding: 4px 10px;
  }

  .cs-title {
    font-size: 22px;
  }

  .cs-sub {
    font-size: 12px;
  }

  .filter-pill {
    font-size: 10px;
    padding: 5px 10px;
  }

  .cs-viewall {
    font-size: 10.5px;
    padding: 5px 12px;
  }

  .course-card {
    border-radius: 14px;
  }

  .thumb-wrap {
    aspect-ratio: 16/12;
  }

  .cat-badge {
    font-size: 8px;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
  }

  .ribbon {
    font-size: 7px;
    padding: 2px 24px;
    top: 8px;
    right: -22px;
  }

  .card-body {
    padding: 10px 12px 4px;
    gap: 6px;
  }

  .course-title {
    font-size: 12px;
    min-height: 28px;
  }

  .meta-row {
    font-size: 9px;
    gap: 4px 8px;
  }

  .meta-row i {
    font-size: 9px;
  }

  .stu-avatars span {
    width: 12px;
    height: 12px;
  }

  .level-badge {
    font-size: 8px;
    padding: 2px 6px;
  }

  .rating {
    font-size: 10px;
  }

  .rating i {
    font-size: 10px;
  }

  .price-now {
    font-size: 14px;
  }

  .price-old {
    font-size: 9.5px;
  }

  .btn-enroll {
    font-size: 9.5px;
    padding: 5px 10px;
  }

  .btn-view-details {
    font-size: 10px;
    padding: 6px;
    margin: 0 12px 8px;
  }

  .skill-meter {
    padding: 8px 12px 12px;
  }

  .sm-row {
    font-size: 8.5px;
  }

  .sm-name {
    width: 48px;
    font-size: 8px;
  }

  .sm-pct {
    width: 24px;
    font-size: 8px;
  }

  .cs-cta {
    padding: 14px 16px;
    margin-top: 24px;
    border-radius: 16px;
  }

  .cs-cta-ic {
    width: 32px;
    height: 32px;
  }

  .cs-cta-ic i {
    font-size: 14px;
  }

  .cs-cta-left p {
    font-size: 12px;
  }

  .btn-explore {
    padding: 8px 16px;
    font-size: 11px;
  }

  .dp-body {
    padding: 14px 14px 16px;
    gap: 12px;
  }

  .dp-title {
    font-size: 15px;
  }

  .dp-checklist li {
    font-size: 11.5px;
  }

  .dp-check-ic {
    width: 18px;
    height: 18px;
  }

  .dp-check-ic i {
    font-size: 8px;
  }

  .dp-cert {
    padding: 10px;
    gap: 10px;
  }

  .dp-cert-ic {
    width: 32px;
    height: 32px;
  }

  .dp-cert-ic i {
    font-size: 13px;
  }

  .dp-cert p {
    font-size: 10.5px;
  }

  .dp-footer {
    padding: 12px 14px;
  }

  .dp-price .now {
    font-size: 16px;
  }

  .dp-enroll {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .courses-section {
    padding: 40px 2.5vw 40px;
  }

  .cs-title {
    font-size: 19px;
  }

  .cs-sub {
    font-size: 11px;
  }

  .filter-pill {
    font-size: 9px;
    padding: 4px 8px;
  }

  .cs-viewall {
    font-size: 9px;
    padding: 4px 10px;
  }

  .course-title {
    font-size: 11px;
    min-height: 24px;
  }

  .price-now {
    font-size: 13px;
  }

  .btn-enroll {
    font-size: 8.5px;
    padding: 4px 8px;
  }

  .cs-cta-left p {
    font-size: 11px;
  }

  .btn-explore {
    font-size: 10px;
    padding: 7px 14px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .courses-section {
    padding: 50px 4vw 50px;
  }

  .cs-head {
    margin-bottom: 20px;
  }

  .cs-title {
    font-size: 24px;
  }

  .cs-controls {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .course-card {
    border-radius: 16px;
  }

  .thumb-wrap {
    aspect-ratio: 16/10;
  }

  .card-body {
    padding: 12px 14px 4px;
  }

  .course-title {
    font-size: 12.5px;
    min-height: 30px;
  }

  .price-now {
    font-size: 14px;
  }

  .cs-cta {
    flex-direction: row;
    padding: 14px 20px;
  }

  .btn-explore {
    width: auto;
    padding: 9px 18px;
    font-size: 12px;
  }

  .cs-cta-left p {
    font-size: 13px;
  }
}
/*===========================AI FEATRUES SECTION STYLING================================*/
.nss_ai_section {
  position: relative;
  overflow: hidden;
  padding: 110px 32px 100px;
  background: #fcfbff;
}
.nss_ai_section::before,
.nss_ai_section::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(95px);
  z-index: 0;
  opacity: 0.55;
}
.nss_ai_section::before {
  top: -180px;
  left: -200px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.24), transparent 70%);
}
.nss_ai_section::after {
  bottom: -220px;
  right: -180px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.22),
    transparent 70%
  );
}
.nss_dot_field {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(67, 56, 202, 0.1) 1.4px,
    transparent 1.4px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  z-index: 0;
}
.nss_glass_orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px -20px rgba(67, 56, 202, 0.25);
  z-index: 0;
}
.nss_go1 {
  width: 110px;
  height: 110px;
  top: 8%;
  left: 4%;
}
.nss_go2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 2%;
}
.nss_go3 {
  width: 140px;
  height: 140px;
  bottom: 6%;
  right: 5%;
}
.nss_go4 {
  width: 56px;
  height: 56px;
  top: 14%;
  right: 8%;
}

.nss_ai_inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.nss_ai_head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.nss_ai_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(67, 56, 202, 0.08);
  border: 1px solid rgba(67, 56, 202, 0.18);
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.nss_ai_badge i {
  font-size: 13px;
}
.nss_ai_heading {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.nss_ai_heading .grad {
  background: linear-gradient(100deg, #4338ca 10%, #7c3aed 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nss_ai_intro {
  font-size: 16px;
  line-height: 1.6;
  color: #5b5e7a;
  margin: 0;
}

/* ---------- Layout ---------- */
.nss_ai_layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: start;
}

/* ===================== LEFT: ORB ===================== */
.nss_orb_stage {
  position: relative;
  padding: 20px 30px 10px;
}

.nss_particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7c3aed;
  opacity: 0.55;
  animation: nss_drift 7s ease-in-out infinite;
}
.nss_p1 {
  top: 6%;
  left: 16%;
  animation-delay: 0s;
}
.nss_p2 {
  top: 22%;
  right: 10%;
  background: #f59e0b;
  animation-delay: 1.4s;
}
.nss_p3 {
  bottom: 30%;
  left: 6%;
  animation-delay: 2.6s;
}
.nss_p4 {
  bottom: 10%;
  right: 22%;
  background: #f59e0b;
  animation-delay: 0.8s;
}
.nss_p5 {
  top: 50%;
  left: 48%;
  animation-delay: 2s;
}
@keyframes nss_drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-22px) translateX(8px);
    opacity: 1;
  }
}

.nss_ai_orb_wrap {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 30px auto 0;
  transition: transform 0.25s ease-out;
}
.nss_orb_ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px dashed rgba(124, 58, 237, 0.32);
  animation: nss_spin 20s linear infinite;
}
.nss_orb_ring2 {
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 158, 11, 0.28);
  animation: nss_spin 30s linear infinite reverse;
}
.nss_orb_dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f59e0b;
  top: -5px;
  left: 50%;
  box-shadow: 0 0 10px 2px rgba(245, 158, 11, 0.6);
}
@keyframes nss_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.nss_ai_orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(
    circle at 35% 28%,
    #b7a5ff,
    #7c3aed 45%,
    #4338ca 85%
  );
  box-shadow:
    0 0 60px 12px rgba(124, 58, 237, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nss_breathe 4.2s ease-in-out infinite;
}
.nss_ai_orb i {
  font-size: 56px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.65));
}
@keyframes nss_breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 60px 12px rgba(124, 58, 237, 0.4),
      inset 0 0 40px rgba(255, 255, 255, 0.28);
  }
  50% {
    transform: scale(1.055);
    box-shadow:
      0 0 84px 20px rgba(124, 58, 237, 0.58),
      inset 0 0 52px rgba(255, 255, 255, 0.34);
  }
}

/* Floating feature chips around orb */
.nss_ai_fc {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e8e6f6;
  box-shadow: 0 14px 28px -14px rgba(18, 20, 43, 0.25);
  backdrop-filter: blur(8px);
  font-size: 11.5px;
  font-weight: 700;
  color: #12142b;
  animation: nss_floatySlow 7s ease-in-out infinite;
  z-index: 3;
}
.nss_ai_fc i {
  font-size: 14px;
}
@keyframes nss_floatySlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}
.nss_fc1 {
  top: 0%;
  left: -4%;
  color: #0d7f94;
  animation-delay: 0.2s;
}
.nss_fc2 {
  top: 2%;
  right: -2%;
  color: #f59e0b;
  animation-delay: 1.8s;
}
.nss_fc3 {
  top: 44%;
  left: -14%;
  color: #4338ca;
  animation-delay: 1s;
}
.nss_fc4 {
  top: 46%;
  right: -14%;
  color: #059669;
  animation-delay: 2.6s;
}
.nss_fc5 {
  bottom: 6%;
  left: 2%;
  color: #0d7f94;
  animation-delay: 1.4s;
}
.nss_fc6 {
  bottom: 4%;
  right: 4%;
  color: #f59e0b;
  animation-delay: 3s;
}

/* Live preview panel */
.nss_orb_preview {
  margin: 44px auto 0;
  max-width: 340px;
  min-height: 132px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e8e6f6;
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -22px rgba(67, 56, 202, 0.3);
}
.nss_preview_view {
  display: none;
}
.nss_preview_view.active {
  display: block;
  animation: nss_fadeUp 0.4s ease;
}
@keyframes nss_fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nss_pv_label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d7f94;
  margin-bottom: 10px;
}
.nss_pv_label i {
  font-size: 13px;
}

.nss_pv_dots {
  display: flex;
  gap: 4px;
}
.nss_pv_dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7c3aed;
  animation: nss_bounce 1s infinite ease-in-out;
}
.nss_pv_dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.nss_pv_dots span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes nss_bounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.nss_pv_quiz {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.nss_pv_opt {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  background: #f1effb;
  color: #4338ca;
  padding: 5px 9px;
  border-radius: 100px;
  margin: 3px 4px 0 0;
  opacity: 0;
  animation: nss_popIn 0.4s ease forwards;
}
.nss_pv_opt:nth-child(1) {
  animation-delay: 0.1s;
}
.nss_pv_opt:nth-child(2) {
  animation-delay: 0.3s;
}
.nss_pv_opt:nth-child(3) {
  animation-delay: 0.5s;
}
@keyframes nss_popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.nss_pv_line {
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(90deg, #7c3aed, #4338ca);
  margin-bottom: 6px;
  animation: nss_growLine 0.8s ease forwards;
  width: 0;
}
@keyframes nss_growLine {
  to {
    width: 100%;
  }
}

.nss_pv_road {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: #12142b;
  flex-wrap: wrap;
}
.nss_pv_road b {
  color: #0d7f94;
}

.nss_pv_bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
}
.nss_pv_bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  height: 0;
  animation: nss_growBar 0.8s ease forwards;
}
@keyframes nss_growBar {
  to {
    height: var(--h);
  }
}

.nss_pv_wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
}
.nss_pv_wave i {
  width: 4px;
  border-radius: 3px;
  background: #7c3aed;
  animation: nss_wave 1s ease-in-out infinite;
}
@keyframes nss_wave {
  0%,
  100% {
    height: 8px;
  }
  50% {
    height: 32px;
  }
}

.nss_pv_lang {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.nss_pv_lang span {
  font-size: 10.5px;
  font-weight: 700;
  background: #f1effb;
  color: #4338ca;
  padding: 5px 10px;
  border-radius: 100px;
}

.nss_pv_idle_icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.nss_pv_idle_icon i {
  font-size: 16px;
  color: #fff;
}
.nss_pv_text {
  font-size: 12px;
  color: #5b5e7a;
  font-weight: 500;
  line-height: 1.5;
}

/* ===================== RIGHT: MASONRY AI CARDS ===================== */
.nss_ai_cards_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 96px;
  gap: 15px;
}

.nss_ai_card {
  position: relative;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(124, 58, 237, 0.14);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  overflow: hidden;
}
.nss_ai_card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--nss_angle),
    #4338ca,
    #f59e0b,
    #7c3aed,
    #4338ca
  );
  -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.3s ease;
  pointer-events: none;
}
.nss_ai_card:hover::before {
  opacity: 1;
  animation: nss_rotateAngle 2.6s linear infinite;
}
@keyframes nss_rotateAngle {
  to {
    --nss_angle: 360deg;
  }
}
.nss_ai_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -20px rgba(67, 56, 202, 0.32);
  background: rgba(255, 255, 255, 0.85);
}

.nss_aic_icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 16px -6px rgba(18, 20, 43, 0.3);
}
.nss_aic_icon i {
  font-size: 18px;
  color: #fff;
}
.nss_ai_card h4 {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 3px;
}
.nss_ai_card p {
  font-size: 11px;
  color: #5b5e7a;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nss_ag1 {
  background: linear-gradient(145deg, #6d5cf0, #4338ca);
}
.nss_ag2 {
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
}
.nss_ag3 {
  background: linear-gradient(145deg, #34d399, #059669);
}
.nss_ag4 {
  background: linear-gradient(145deg, #f472b6, #db2777);
}
.nss_ag5 {
  background: linear-gradient(145deg, #60a5fa, #2563eb);
}
.nss_ag6 {
  background: linear-gradient(145deg, #fb7185, #dc2626);
}
.nss_ag7 {
  background: linear-gradient(145deg, #a78bfa, #7c3aed);
}
.nss_ag8 {
  background: linear-gradient(145deg, #2dd4bf, #0d9488);
}

/* stagger reveal */
.nss_ai_card {
  opacity: 0;
  transform: translateY(14px);
  animation: nss_cardIn 0.55s ease forwards;
}
@keyframes nss_cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nss_ai_card:nth-child(1) {
  animation-delay: 0.05s;
}
.nss_ai_card:nth-child(2) {
  animation-delay: 0.12s;
}
.nss_ai_card:nth-child(3) {
  animation-delay: 0.19s;
}
.nss_ai_card:nth-child(4) {
  animation-delay: 0.26s;
}
.nss_ai_card:nth-child(5) {
  animation-delay: 0.33s;
}
.nss_ai_card:nth-child(6) {
  animation-delay: 0.4s;
}
.nss_ai_card:nth-child(7) {
  animation-delay: 0.47s;
}
.nss_ai_card:nth-child(8) {
  animation-delay: 0.54s;
}

/* bento placement */
.nss_c_tutor {
  grid-column: 1/3;
  grid-row: 1/3;
}
.nss_c_tutor h4 {
  font-size: 16px;
}
.nss_c_tutor .nss_aic_icon {
  width: 46px;
  height: 46px;
}
.nss_c_tutor .nss_aic_icon i {
  font-size: 22px;
}
.nss_c_tutor p {
  -webkit-line-clamp: 3;
  font-size: 12px;
}
.nss_c_quiz {
  grid-column: 3/5;
  grid-row: 1/2;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.nss_c_quiz .nss_aic_icon {
  margin-bottom: 0;
}
.nss_c_notes {
  grid-column: 3/5;
  grid-row: 2/3;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.nss_c_notes .nss_aic_icon {
  margin-bottom: 0;
}
.nss_c_career {
  grid-column: 1/2;
  grid-row: 3/5;
}
.nss_c_analytics {
  grid-column: 2/3;
  grid-row: 3/5;
}
.nss_c_voice {
  grid-column: 3/4;
  grid-row: 3/4;
}
.nss_c_translate {
  grid-column: 4/5;
  grid-row: 3/4;
}
.nss_c_chat {
  grid-column: 3/5;
  grid-row: 4/5;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.nss_c_chat .nss_aic_icon {
  margin-bottom: 0;
}

/* ===================== FEATURES LIST (glass cards) ===================== */
.nss_ai_features_list {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
}
.nss_af_item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.nss_af_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -12px rgba(67, 56, 202, 0.15);
}
.nss_af_emoji {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.nss_af_item h5 {
  margin: 0 0 3px;
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
}
.nss_af_item p {
  margin: 0;
  font-size: 11.5px;
  color: #5b5e7a;
  line-height: 1.4;
}

/* ===================== LIVE AI CHAT DEMO ===================== */
.nss_chat_showcase {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(
    120deg,
    rgba(67, 56, 202, 0.05),
    rgba(124, 58, 237, 0.04)
  );
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 26px;
  padding: 40px;
}
.nss_chat_intro .nss_cs_tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0d7f94;
  margin-bottom: 14px;
}
.nss_chat_intro h3 {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.3;
}
.nss_chat_intro p {
  font-size: 14.5px;
  color: #5b5e7a;
  line-height: 1.65;
  margin: 0;
}

.nss_chat_window {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8e6f6;
  box-shadow: 0 40px 70px -30px rgba(67, 56, 202, 0.35);
  overflow: hidden;
}
.nss_cw_head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #e8e6f6;
}
.nss_cw_avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nss_cw_avatar i {
  font-size: 16px;
  color: #fff;
}
.nss_cw_head .n {
  font-size: 13.5px;
  font-weight: 700;
}
.nss_cw_head .s {
  font-size: 10.5px;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nss_cw_head .s span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
}

.nss_cw_body {
  padding: 18px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nss_cw_msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  animation: nss_msgIn 0.4s ease forwards;
}
@keyframes nss_msgIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nss_cw_msg.student {
  align-self: flex-end;
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.nss_cw_msg.ai {
  align-self: flex-start;
  background: #f5f4fc;
  color: #12142b;
  border-bottom-left-radius: 4px;
}

.nss_cw_typing {
  align-self: flex-start;
  background: #f5f4fc;
  padding: 12px 16px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
}
.nss_cw_typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7c3aed;
  animation: nss_bounce 1s infinite ease-in-out;
}
.nss_cw_typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.nss_cw_typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.nss_cw_actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 18px 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nss_cw_actions.show {
  opacity: 1;
}
.nss_cw_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #4338ca;
  background: #f1effb;
  border: 1px solid rgba(67, 56, 202, 0.15);
  padding: 8px 13px;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.nss_cw_btn:hover {
  background: #4338ca;
  color: #fff;
}
.nss_cw_btn i {
  font-size: 12px;
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet */
@media (max-width: 1080px) {
  .nss_ai_layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nss_ai_cards_grid {
    grid-auto-rows: 90px;
    gap: 12px;
  }

  .nss_chat_showcase {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .nss_ai_features_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Hide floating chips on tablet */
  .nss_ai_fc {
    display: none;
  }

  .nss_orb_stage {
    padding: 10px 20px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nss_ai_section {
    padding: 60px 16px 50px;
  }

  .nss_ai_head {
    margin: 0 auto 40px;
  }

  .nss_ai_heading {
    font-size: 28px;
  }

  .nss_ai_intro {
    font-size: 14px;
  }

  .nss_ai_badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  /* Orb section mobile */
  .nss_orb_stage {
    padding: 10px 0;
  }

  .nss_ai_orb_wrap {
    width: 160px;
    height: 160px;
    margin: 20px auto 0;
  }

  .nss_ai_orb i {
    font-size: 40px;
  }

  .nss_orb_ring {
    inset: -14px;
  }

  .nss_orb_ring2 {
    inset: -24px;
  }

  .nss_orb_dot {
    width: 8px;
    height: 8px;
    top: -4px;
  }

  .nss_orb_preview {
    max-width: 100%;
    min-height: 120px;
    padding: 14px 16px;
    margin: 30px auto 0;
  }

  .nss_pv_label {
    font-size: 9.5px;
  }

  .nss_pv_quiz {
    font-size: 10.5px;
    padding: 8px 10px;
  }

  .nss_pv_opt {
    font-size: 9.5px;
    padding: 4px 8px;
  }

  .nss_pv_road {
    font-size: 9.5px;
  }

  .nss_pv_text {
    font-size: 11px;
  }

  .nss_pv_bars {
    height: 34px;
  }

  .nss_pv_wave {
    height: 28px;
  }

  .nss_pv_wave i {
    width: 3px;
  }

  .nss_pv_lang span {
    font-size: 9.5px;
    padding: 4px 8px;
  }

  .nss_pv_idle_icon {
    width: 28px;
    height: 28px;
  }

  .nss_pv_idle_icon i {
    font-size: 13px;
  }

  /* Hide floating chips on mobile */
  .nss_ai_fc {
    display: none !important;
  }

  /* AI Cards grid mobile */
  .nss_ai_cards_grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
  }

  .nss_ai_card {
    padding: 14px 14px;
    border-radius: 14px;
    min-height: 80px;
  }

  .nss_aic_icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    margin-bottom: 7px;
  }

  .nss_aic_icon i {
    font-size: 15px;
  }

  .nss_ai_card h4 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .nss_ai_card p {
    font-size: 10px;
    -webkit-line-clamp: 2;
  }

  /* Bento placement mobile */
  .nss_c_tutor {
    grid-column: 1/3;
    grid-row: 1/2;
    padding: 16px 16px;
    min-height: 100px;
  }

  .nss_c_tutor h4 {
    font-size: 14px;
  }

  .nss_c_tutor .nss_aic_icon {
    width: 38px;
    height: 38px;
  }

  .nss_c_tutor .nss_aic_icon i {
    font-size: 18px;
  }

  .nss_c_tutor p {
    font-size: 11px;
    -webkit-line-clamp: 2;
  }

  .nss_c_quiz {
    grid-column: 1/2;
    grid-row: 2/3;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    min-height: 70px;
  }

  .nss_c_quiz .nss_aic_icon {
    margin-bottom: 0;
  }

  .nss_c_notes {
    grid-column: 2/3;
    grid-row: 2/3;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    min-height: 70px;
  }

  .nss_c_notes .nss_aic_icon {
    margin-bottom: 0;
  }

  .nss_c_career {
    grid-column: 1/2;
    grid-row: 3/4;
    padding: 14px 14px;
    min-height: 80px;
  }

  .nss_c_analytics {
    grid-column: 2/3;
    grid-row: 3/4;
    padding: 14px 14px;
    min-height: 80px;
  }

  .nss_c_voice {
    grid-column: 1/2;
    grid-row: 4/5;
    padding: 12px 14px;
    min-height: 70px;
  }

  .nss_c_translate {
    grid-column: 2/3;
    grid-row: 4/5;
    padding: 12px 14px;
    min-height: 70px;
  }

  .nss_c_chat {
    grid-column: 1/3;
    grid-row: 5/6;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    min-height: 70px;
  }

  .nss_c_chat .nss_aic_icon {
    margin-bottom: 0;
  }

  /* Features list mobile */
  .nss_ai_features_list {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nss_af_item {
    padding: 14px 16px;
    border-radius: 14px;
    gap: 10px;
  }

  .nss_af_emoji {
    font-size: 17px;
  }

  .nss_af_item h5 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .nss_af_item p {
    font-size: 10.5px;
  }

  /* Chat showcase mobile */
  .nss_chat_showcase {
    margin-top: 50px;
    padding: 20px 18px;
    border-radius: 18px;
    gap: 24px;
  }

  .nss_chat_intro .nss_cs_tag {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .nss_chat_intro h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .nss_chat_intro p {
    font-size: 13px;
  }

  .nss_chat_window {
    border-radius: 16px;
  }

  .nss_cw_head {
    padding: 12px 14px;
  }

  .nss_cw_avatar {
    width: 28px;
    height: 28px;
  }

  .nss_cw_avatar i {
    font-size: 13px;
  }

  .nss_cw_head .n {
    font-size: 12px;
  }

  .nss_cw_head .s {
    font-size: 9.5px;
  }

  .nss_cw_body {
    padding: 14px;
    min-height: 180px;
    gap: 10px;
  }

  .nss_cw_msg {
    font-size: 11.5px;
    padding: 8px 12px;
    max-width: 85%;
  }

  .nss_cw_typing {
    padding: 10px 14px;
  }

  .nss_cw_typing span {
    width: 5px;
    height: 5px;
  }

  .nss_cw_actions {
    padding: 0 14px 14px;
    gap: 6px;
  }

  .nss_cw_btn {
    font-size: 10px;
    padding: 6px 10px;
  }

  .nss_cw_btn i {
    font-size: 10px;
  }

  /* Particles hide on mobile */
  .nss_particle {
    display: none;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .nss_ai_section {
    padding: 50px 12px 40px;
  }

  .nss_ai_heading {
    font-size: 24px;
  }

  .nss_ai_cards_grid {
    gap: 8px;
  }

  .nss_ai_card {
    padding: 10px 12px;
    border-radius: 12px;
    min-height: 65px;
  }

  .nss_aic_icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    margin-bottom: 5px;
  }

  .nss_aic_icon i {
    font-size: 13px;
  }

  .nss_ai_card h4 {
    font-size: 10.5px;
  }

  .nss_ai_card p {
    display: none;
  }

  .nss_c_tutor h4 {
    font-size: 12px;
  }

  .nss_c_tutor .nss_aic_icon {
    width: 20px;
    height: 20px;
  }

  .nss_c_tutor .nss_aic_icon i {
    font-size: 12px;
  }

  .nss_c_tutor p {
    display: none;
  }

  .nss_c_quiz,
  .nss_c_notes,
  .nss_c_chat {
    padding: 10px 12px;
    min-height: 60px;
    gap: 8px;
  }

  .nss_c_career,
  .nss_c_analytics {
    padding: 10px 12px;
    min-height: 65px;
  }

  .nss_c_voice,
  .nss_c_translate {
    padding: 10px 12px;
    min-height: 60px;
  }

  .nss_ai_orb_wrap {
    width: 130px;
    height: 130px;
  }

  .nss_ai_orb i {
    font-size: 32px;
  }

  .nss_orb_ring {
    inset: -10px;
  }

  .nss_orb_ring2 {
    inset: -18px;
  }

  .nss_orb_preview {
    padding: 12px 14px;
    min-height: 100px;
  }

  .nss_ai_features_list {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .nss_af_item {
    padding: 12px 14px;
    gap: 8px;
  }

  .nss_af_emoji {
    font-size: 15px;
  }

  .nss_af_item h5 {
    font-size: 8px;
  }

  .nss_af_item p {
    display: none;
  }

  .nss_chat_showcase {
    padding: 16px 14px;
  }

  .nss_chat_intro h3 {
    font-size: 18px;
  }

  .nss_chat_intro p {
    font-size: 12px;
  }

  .nss_cw_body {
    min-height: 150px;
    padding: 12px;
  }

  .nss_cw_msg {
    font-size: 10.5px;
    padding: 6px 10px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .nss_ai_section {
    padding: 50px 20px;
  }

  .nss_ai_layout {
    gap: 24px;
  }

  .nss_ai_cards_grid {
    grid-auto-rows: 80px;
  }

  .nss_ai_card {
    padding: 12px 14px;
    min-height: 60px;
  }

  .nss_aic_icon {
    width: 20px;
    height: 20px;
  }

  .nss_aic_icon i {
    font-size: 12px;
  }

  .nss_ai_card h4 {
    font-size: 10px;
  }

  .nss_ai_card p {
    display: none !important;
  }

  .nss_orb_preview {
    max-width: 280px;
    min-height: 100px;
    padding: 12px 14px;
  }

  .nss_ai_orb_wrap {
    width: 140px;
    height: 140px;
    margin: 15px auto 0;
  }

  .nss_ai_orb i {
    font-size: 36px;
  }
} /*=============================SUCCESES STORIES SECTION STYLING==========================*/
.nss_section {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 32px 120px;
  overflow: hidden;
}

.nss_header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.nss_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(67, 56, 202, 0.08),
    rgba(124, 58, 237, 0.06)
  );
  border: 1px solid rgba(67, 56, 202, 0.18);
  color: #4338ca;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.nss_badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}
.nss_header h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.nss_header h2 em {
  font-style: normal;
  background: linear-gradient(100deg, #4338ca, #7c3aed 60%, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nss_header p {
  color: #5b5e7a;
  font-size: 16.5px;
  line-height: 1.65;
}

.nss_layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 44px;
  align-items: center;
}

.nss_left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.nss_circle_wrap {
  position: relative;
  width: 280px;
  height: 280px;
}
.nss_circle_ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg, #4338ca, #f59e0b, #7c3aed, #4338ca);
  animation: nss_spin 9s linear infinite;
}
.nss_circle_ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fbfaff;
}
@keyframes nss_spin {
  to {
    transform: rotate(360deg);
  }
}

.nss_circle_photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(67, 56, 202, 0.25);
  border: 6px solid #ffffff;
  z-index: 2;
}
.nss_circle_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nss_pulse_dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(67, 56, 202, 0.35);
  animation: nss_pulse 2.6s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  z-index: 1;
}
@keyframes nss_pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.nss_float_card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px 11px 12px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 12px 34px -12px rgba(18, 20, 43, 0.18);
  font-size: 12.5px;
  z-index: 3;
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  animation: nss_floaty 5s ease-in-out infinite;
  white-space: nowrap;
}
.nss_float_card .ficon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.nss_float_card b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
}
.nss_float_card span {
  color: #5b5e7a;
  font-size: 11.5px;
}
.nss_float_card.active {
  transform: scale(1.08);
  box-shadow: 0 18px 40px -12px rgba(67, 56, 202, 0.35);
  border-color: #4338ca;
}

.nss_fc_job {
  top: 2%;
  left: -10%;
  animation-delay: 0.2s;
}
.nss_fc_job .ficon {
  background: rgba(67, 56, 202, 0.12);
  color: #4338ca;
}
.nss_fc_cert {
  top: 12%;
  right: -16%;
  animation-delay: 1.1s;
}
.nss_fc_cert .ficon {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}
.nss_fc_top {
  bottom: 12%;
  left: -12%;
  animation-delay: 2s;
}
.nss_fc_top .ficon {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.nss_fc_rate {
  bottom: 0%;
  right: -10%;
  animation-delay: 0.6s;
}
.nss_fc_rate .ficon {
  background: rgba(251, 191, 36, 0.18);
  color: #b45309;
}

@keyframes nss_floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.nss_float_card.active {
  animation-play-state: paused;
}

.nss_right {
  position: relative;
  overflow: hidden;
  padding: 0 4px;
}
.nss_stories_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 0 4px;
}
.nss_stories_head h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.nss_swiper_nav {
  display: flex;
  gap: 10px;
}
.nss_snav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e8e6f6;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4338ca;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.nss_snav:hover {
  background: #4338ca;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -8px rgba(67, 56, 202, 0.5);
}
.nss_snav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  background: #ffffff;
  color: #4338ca;
}

.nss_swiper {
  padding: 18px 4px 44px;
  overflow: visible;
}
.nss_swiper .swiper-wrapper {
  overflow: visible;
}

.nss_story_card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e8e6f6;
  box-shadow: 0 12px 34px -12px rgba(18, 20, 43, 0.18);
  padding: 34px 28px 28px;
  min-height: 400px;
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.nss_story_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px -18px rgba(67, 56, 202, 0.3);
}

.nss_company_badge {
  position: absolute;
  top: -24px;
  left: 28px;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e8e6f6;
  box-shadow: 0 10px 24px -8px rgba(18, 20, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  color: #12142b;
  z-index: 3;
}
.nss_ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(120deg, #f59e0b, #fbbf24);
  color: #5b3a00;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  padding: 6px 14px 6px 16px;
  border-radius: 8px 2px 2px 8px;
  box-shadow: 0 8px 18px -6px rgba(245, 158, 11, 0.55);
}
.nss_ribbon::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  border-style: solid;
  border-width: 0 8px 12px 0;
  border-color: transparent #b45309 transparent transparent;
  filter: brightness(0.75);
}

.nss_story_top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 18px;
}
.nss_avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f3f1fc;
}
.nss_student_meta b {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.nss_student_meta .sub {
  font-size: 12.5px;
  color: #5b5e7a;
}
.nss_stars {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.nss_stars .val {
  color: #f59e0b;
  font-weight: 700;
  font-size: 13px;
  font-family: "Space Grotesk", sans-serif;
}
.nss_stars .icons {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
}

.nss_story_card h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.nss_salary_chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(67, 56, 202, 0.08);
  color: #4338ca;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
}
.nss_story_card p.desc {
  color: #5b5e7a;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.nss_read_more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #4338ca;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.nss_read_more svg {
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.nss_read_more:hover svg {
  transform: translateX(5px);
}

.nss_stats_strip {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nss_stat_glass {
  position: relative;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 12px 34px -12px rgba(18, 20, 43, 0.18);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.nss_stat_glass:hover {
  transform: translateY(-5px);
}
.nss_stat_glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(67, 56, 202, 0.1), transparent 55%);
  pointer-events: none;
}
.nss_stat_icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4338ca, #7c3aed);
  color: #fff;
  font-size: 19px;
  margin-bottom: 14px;
  box-shadow: 0 10px 22px -8px rgba(67, 56, 202, 0.55);
}
.nss_stat_glass .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.nss_stat_glass .lbl {
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.nss_stat_glass .intro {
  font-size: 12px;
  color: #5b5e7a;
  line-height: 1.5;
}

/* ===== LOGO MARQUEE - STATIC HTML IMAGES ===== */
.nss_logo_wrap {
  margin-top: 80px;
  text-align: center;
}
.nss_logo_wrap .eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b5e7a;
  margin-bottom: 26px;
}
.nss_mrow {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  margin-bottom: 16px;
}
.nss_mtrack {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  padding: 6px 0;
  animation: nss_scrollL 26s linear infinite;
}
.nss_mrow.r2 .nss_mtrack {
  animation: nss_scrollR 26s linear infinite;
}
.nss_mrow.r3 .nss_mtrack {
  animation: nss_scrollL 34s linear infinite;
}
@keyframes nss_scrollL {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes nss_scrollR {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.nss_logo_chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 56px;
  padding: 0 22px;
  background: #ffffff;
  border: 1px solid #e8e6f6;
  border-radius: 12px;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.nss_logo_chip:hover {
  color: #4338ca;
  border-color: #4338ca;
  transform: translateY(-3px);
  box-shadow: 0 12px 34px -12px rgba(18, 20, 43, 0.18);
}
.nss_logo_chip img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nss_logo_chip .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #5b5e7a;
}

/* ===== WORLD MAP ===== */
.nss_map_wrap {
  margin-top: 90px;
  position: relative;
  background: linear-gradient(180deg, #f3f1fc, #fbfaff);
  border-radius: 32px;
  border: 1px solid #e8e6f6;
  padding: 52px 32px 32px;
  text-align: center;
}
.nss_map_wrap h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.nss_map_wrap > p {
  color: #5b5e7a;
  font-size: 14.5px;
  margin-bottom: 30px;
}

.nss_map_stage {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.nss_map_stage svg {
  width: 100%;
  height: auto;
  display: block;
  background: #f3f1fc;
  border-radius: 20px;
  border: 1px solid #e8e6f6;
}
.nss_map_land {
  fill: #d6d0ec;
  opacity: 0.3;
}
.nss_map_dot {
  fill: #c9c4ee;
}

.nss_pin {
  cursor: pointer;
  transform-origin: center;
}
.nss_pin .core {
  fill: #f59e0b;
  stroke: #fff;
  stroke-width: 2;
  animation: nss_pinpulse 2.2s ease-in-out infinite;
}
.nss_pin .halo {
  fill: none;
  stroke: #f59e0b;
  stroke-width: 2;
  opacity: 0.55;
  animation: nss_halo 2.2s ease-out infinite;
}
@keyframes nss_pinpulse {
  0%,
  100% {
    r: 6;
  }
  50% {
    r: 7.5;
  }
}
@keyframes nss_halo {
  0% {
    r: 6;
    opacity: 0.6;
  }
  100% {
    r: 20;
    opacity: 0;
  }
}

.nss_pin_3d {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 8px 20px rgba(245, 158, 11, 0.5));
}
.nss_pin_3d .shadow {
  fill: rgba(0, 0, 0, 0.15);
  transform: translate(4px, 8px) scale(1.1);
}
.nss_pin_3d .body {
  fill: url(#nss_pinGrad);
  stroke: #fff;
  stroke-width: 2;
}
.nss_pin_3d .highlight {
  fill: rgba(255, 255, 255, 0.35);
}
.nss_pin_3d .dot {
  fill: #fff;
}

.nss_country_label {
  font-size: 32px;
  font-weight: 800;
  fill: #12142b;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.9);
}

.nss_map_tooltip {
  position: absolute;
  transform: translate(-50%, -115%);
  background: #12142b;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 16px 32px -10px rgba(18, 20, 43, 0.5);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}
.nss_map_tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #12142b transparent transparent transparent;
}
.nss_map_tooltip.show {
  opacity: 1;
  transform: translate(-50%, -125%);
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet */
@media (max-width: 1100px) {
  .nss_layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .nss_left {
    min-height: 380px;
  }

  .nss_circle_wrap {
    width: 240px;
    height: 240px;
  }

  .nss_stats_strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .nss_float_card {
    font-size: 11px;
    padding: 8px 12px 8px 8px;
  }

  .nss_float_card .ficon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .nss_float_card b {
    font-size: 12px;
  }

  .nss_float_card span {
    font-size: 10px;
  }

  .nss_fc_job {
    left: -4%;
  }
  .nss_fc_cert {
    right: -4%;
  }
  .nss_fc_top {
    left: -4%;
  }
  .nss_fc_rate {
    right: -2%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nss_section {
    padding: 60px 16px 70px;
  }

  .nss_header {
    margin: 0 auto 48px;
  }

  .nss_header h2 {
    font-size: 28px;
  }

  .nss_header p {
    font-size: 14px;
  }

  .nss_badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .nss_badge::before {
    width: 6px;
    height: 6px;
  }

  .nss_layout {
    gap: 40px;
  }

  .nss_left {
    min-height: 300px;
  }

  .nss_circle_wrap {
    width: 200px;
    height: 200px;
  }

  .nss_circle_ring {
    inset: -10px;
  }

  .nss_circle_photo {
    border: 4px solid #ffffff;
  }

  .nss_pulse_dot {
    border-width: 1.5px;
  }

  /* Hide floating cards on mobile except maybe one */
  .nss_float_card {
    display: none;
  }

  /* Keep only the most important one */
  .nss_fc_job {
    display: flex;
    top: auto;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation: nss_floaty_mobile 4s ease-in-out infinite;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 10px;
  }

  .nss_fc_job .ficon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .nss_fc_job b {
    font-size: 11px;
  }

  .nss_fc_job span {
    font-size: 9px;
  }

  @keyframes nss_floaty_mobile {
    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-6px);
    }
  }

  .nss_right {
    padding: 0;
  }

  .nss_stories_head {
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nss_stories_head h3 {
    font-size: 18px;
  }

  .nss_swiper_nav {
    gap: 6px;
  }

  .nss_snav {
    width: 34px;
    height: 34px;
  }

  .nss_swiper {
    padding: 12px 2px 30px;
  }

  .nss_story_card {
    padding: 24px 16px 20px;
    border-radius: 20px;
    min-height: 340px;
  }

  .nss_company_badge {
    width: 48px;
    height: 48px;
    top: -20px;
    left: 18px;
    font-size: 9px;
    border-radius: 12px;
  }

  .nss_ribbon {
    font-size: 9px;
    padding: 4px 10px 4px 12px;
    top: 12px;
    right: -6px;
  }

  .nss_ribbon::after {
    right: -6px;
    border-width: 0 6px 10px 0;
  }

  .nss_story_top {
    gap: 10px;
    margin: 10px 0 14px;
  }

  .nss_avatar {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .nss_student_meta b {
    font-size: 13px;
  }

  .nss_student_meta .sub {
    font-size: 11px;
  }

  .nss_stars .val {
    font-size: 11px;
  }

  .nss_stars .icons {
    font-size: 10px;
  }

  .nss_story_card h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .nss_salary_chip {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .nss_story_card p.desc {
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .nss_read_more {
    font-size: 12.5px;
  }

  .nss_stats_strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 50px;
  }

  .nss_stat_glass {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .nss_stat_icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
    margin-bottom: 8px;
  }

  .nss_stat_glass .num {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .nss_stat_glass .lbl {
    font-size: 11.5px;
    margin-bottom: 4px;
  }

  .nss_stat_glass .intro {
    font-size: 10.5px;
    display: none;
  }

  .nss_logo_wrap {
    margin-top: 50px;
  }

  .nss_logo_wrap .eyebrow {
    font-size: 10.5px;
    margin-bottom: 18px;
  }

  .nss_mrow {
    margin-bottom: 10px;
  }

  .nss_mtrack {
    gap: 12px;
    padding: 4px 0;
  }

  .nss_logo_chip {
    min-width: 100px;
    height: 44px;
    padding: 0 12px;
    gap: 6px;
    border-radius: 10px;
  }

  .nss_logo_chip img {
    height: 20px;
  }

  .nss_logo_chip .name {
    font-size: 12px;
  }

  /* Map hidden on mobile and tablet */
  .nss_map_wrap {
    display: none;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nss_section {
    padding: 50px 12px 60px;
  }

  .nss_header h2 {
    font-size: 24px;
  }

  .nss_header p {
    font-size: 13px;
  }

  .nss_circle_wrap {
    width: 160px;
    height: 160px;
  }

  .nss_circle_ring {
    inset: -8px;
  }

  .nss_circle_photo {
    border: 3px solid #ffffff;
  }

  .nss_left {
    min-height: 240px;
  }

  .nss_fc_job {
    font-size: 9px;
    padding: 6px 10px;
    bottom: -5%;
  }

  .nss_fc_job .ficon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .nss_fc_job b {
    font-size: 10px;
  }

  .nss_fc_job span {
    font-size: 8px;
  }

  .nss_stories_head h3 {
    font-size: 16px;
  }

  .nss_snav {
    width: 30px;
    height: 30px;
  }

  .nss_story_card {
    padding: 20px 14px 16px;
    border-radius: 16px;
    min-height: 280px;
  }

  .nss_company_badge {
    width: 40px;
    height: 40px;
    top: -18px;
    left: 14px;
    font-size: 8px;
    border-radius: 10px;
  }

  .nss_ribbon {
    font-size: 8px;
    padding: 3px 8px 3px 10px;
    top: 10px;
    right: -4px;
  }

  .nss_ribbon::after {
    right: -4px;
    border-width: 0 4px 8px 0;
  }

  .nss_story_top {
    gap: 8px;
    margin: 8px 0 10px;
  }

  .nss_avatar {
    width: 34px;
    height: 34px;
  }

  .nss_student_meta b {
    font-size: 12px;
  }

  .nss_student_meta .sub {
    font-size: 10px;
  }

  .nss_stars .val {
    font-size: 10px;
  }

  .nss_stars .icons {
    font-size: 9px;
  }

  .nss_story_card h4 {
    font-size: 15px;
  }

  .nss_salary_chip {
    font-size: 10px;
    padding: 3px 8px;
  }

  .nss_story_card p.desc {
    font-size: 11.5px;
  }

  .nss_read_more {
    font-size: 11.5px;
  }

  .nss_stats_strip {
    gap: 8px;
    margin-top: 40px;
  }

  .nss_stat_glass {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .nss_stat_icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-bottom: 6px;
  }

  .nss_stat_glass .num {
    font-size: 17px;
  }

  .nss_stat_glass .lbl {
    font-size: 10px;
  }

  .nss_logo_chip {
    min-width: 80px;
    height: 36px;
    padding: 0 8px;
    gap: 4px;
    border-radius: 8px;
  }

  .nss_logo_chip img {
    height: 16px;
  }

  .nss_logo_chip .name {
    font-size: 10px;
  }

  .nss_mtrack {
    gap: 8px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .nss_section {
    padding: 40px 10px 50px;
  }

  .nss_header h2 {
    font-size: 20px;
  }

  .nss_header p {
    font-size: 12px;
  }

  .nss_circle_wrap {
    width: 130px;
    height: 130px;
  }

  .nss_left {
    min-height: 200px;
  }

  .nss_story_card {
    padding: 16px 10px 14px;
    min-height: 240px;
  }

  .nss_story_card h4 {
    font-size: 13px;
  }

  .nss_story_card p.desc {
    font-size: 10.5px;
  }

  .nss_stats_strip {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .nss_stat_glass {
    padding: 10px 8px;
  }

  .nss_stat_glass .num {
    font-size: 15px;
  }

  .nss_stat_glass .lbl {
    font-size: 9px;
  }

  .nss_logo_chip {
    min-width: 60px;
    height: 30px;
    padding: 0 6px;
  }

  .nss_logo_chip img {
    height: 14px;
  }

  .nss_logo_chip .name {
    font-size: 8px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .nss_section {
    padding: 50px 20px 60px;
  }

  .nss_layout {
    gap: 30px;
  }

  .nss_left {
    min-height: 280px;
  }

  .nss_circle_wrap {
    width: 170px;
    height: 170px;
  }

  .nss_story_card {
    min-height: 280px;
    padding: 20px 18px;
  }

  .nss_stats_strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .nss_stat_glass .intro {
    display: block;
    font-size: 9px;
  }

  .nss_map_wrap {
    display: none;
  }

  .nss_float_card {
    display: none;
  }

  .nss_fc_job {
    display: flex;
  }
}
/*==============================DOWNLOAD APP STYLING====================================*/
.nss_anywhere_section {
  position: relative;
  overflow: hidden;
  padding: 110px 32px 100px;
  background: linear-gradient(160deg, #fcfbff 0%, #f7f5ff 60%, #fcfbff 100%);
}
.nss_anywhere_section::before,
.nss_anywhere_section::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(95px);
  z-index: 0;
  opacity: 0.5;
}
.nss_anywhere_section::before {
  top: -180px;
  right: -200px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.24), transparent 70%);
}
.nss_anywhere_section::after {
  bottom: -200px;
  left: -180px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
}
.nss_dot_field {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(67, 56, 202, 0.1) 1.4px,
    transparent 1.4px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #000 40%,
    transparent 85%
  );
  z-index: 0;
}
.nss_glass_orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px -20px rgba(67, 56, 202, 0.25);
  z-index: 0;
}
.nss_go1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 6%;
}
.nss_go2 {
  width: 60px;
  height: 60px;
  top: 66%;
  right: 3%;
}
.nss_go3 {
  width: 130px;
  height: 130px;
  bottom: 8%;
  left: 5%;
}

.nss_float_shape {
  position: absolute;
  border-radius: 30%;
  opacity: 0.18;
  z-index: 0;
  animation: nss_rotateFloat 16s linear infinite;
}
.nss_fs1 {
  width: 60px;
  height: 60px;
  top: 18%;
  left: 12%;
  background: linear-gradient(135deg, #4338ca, #7c3aed);
  animation-duration: 14s;
}
.nss_fs2 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  right: 14%;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  animation-duration: 20s;
  animation-direction: reverse;
}
@keyframes nss_rotateFloat {
  from {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-16px);
  }
  to {
    transform: rotate(360deg) translateY(0);
  }
}

.nss_aw_inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.nss_aw_layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
  align-items: center;
}

/* ===================== LEFT: SIMPLE IMAGE ===================== */
.nss_phone_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.nss_phone_img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 32px;
  box-shadow:
    0 40px 80px -30px rgba(30, 20, 70, 0.35),
    0 16px 32px -12px rgba(18, 20, 43, 0.15);
  transition:
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.5s ease;
  animation: nss_imgFloat 6s ease-in-out infinite;
}
.nss_phone_img:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow:
    0 60px 100px -30px rgba(30, 20, 70, 0.45),
    0 20px 40px -12px rgba(18, 20, 43, 0.2);
}
@keyframes nss_imgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Floating circular icons around image */
.nss_fi_chip {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e8e6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -14px rgba(18, 20, 43, 0.25);
  backdrop-filter: blur(8px);
  animation: nss_floatySlow 6.5s ease-in-out infinite;
  z-index: 3;
}
.nss_fi_chip svg {
  width: 22px;
  height: 22px;
}
@keyframes nss_floatySlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}
.nss_fi1 {
  top: 2%;
  left: 0%;
  color: #0d7f94;
  animation-delay: 0.2s;
}
.nss_fi2 {
  top: 20%;
  right: -4%;
  color: #f59e0b;
  animation-delay: 1.4s;
}
.nss_fi3 {
  top: 70%;
  left: -6%;
  color: #059669;
  animation-delay: 0.8s;
}
.nss_fi4 {
  bottom: 8%;
  right: 2%;
  color: #4338ca;
  animation-delay: 2s;
}
.nss_fi5 {
  bottom: -2%;
  left: 22%;
  color: #f59e0b;
  animation-delay: 1.1s;
}

/* Floating notification popups */
.nss_notif_pop {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 14px;
  padding: 10px 13px;
  box-shadow: 0 18px 34px -16px rgba(18, 20, 43, 0.28);
  font-size: 11px;
  font-weight: 700;
  color: #12142b;
  max-width: 180px;
  opacity: 0;
  animation: nss_notifCycle 6s ease-in-out infinite;
  z-index: 4;
}
.nss_notif_pop .ni {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nss_notif_pop .ni svg {
  width: 13px;
  height: 13px;
  color: #fff;
}
.nss_np1 {
  top: 6%;
  right: -10%;
  animation-delay: 0s;
}
.nss_np2 {
  bottom: 16%;
  left: -14%;
  animation-delay: 3s;
}
@keyframes nss_notifCycle {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.9);
  }
  10% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  38% {
    opacity: 0;
    transform: translateY(-6px) scale(0.95);
  }
  100% {
    opacity: 0;
  }
}

.nss_phone_stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================== RIGHT ===================== */
.nss_aw_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(67, 56, 202, 0.08);
  border: 1px solid rgba(67, 56, 202, 0.18);
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.nss_aw_badge svg {
  width: 13px;
  height: 13px;
}
.nss_aw_heading {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.nss_aw_heading .grad {
  background: linear-gradient(100deg, #4338ca 10%, #7c3aed 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nss_aw_desc {
  font-size: 15px;
  line-height: 1.65;
  color: #5b5e7a;
  margin: 0 0 30px;
  max-width: 480px;
}

.nss_aw_features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin-bottom: 32px;
}
.nss_aw_feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e8e6f6;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 0;
  transform: translateY(8px);
  animation: nss_featIn 0.5s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.nss_aw_feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(67, 56, 202, 0.25);
  border-color: rgba(124, 58, 237, 0.35);
  background: rgba(255, 255, 255, 0.8);
}
@keyframes nss_featIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nss_aw_features .nss_aw_feature:nth-child(1) {
  animation-delay: 0.05s;
}
.nss_aw_features .nss_aw_feature:nth-child(2) {
  animation-delay: 0.1s;
}
.nss_aw_features .nss_aw_feature:nth-child(3) {
  animation-delay: 0.15s;
}
.nss_aw_features .nss_aw_feature:nth-child(4) {
  animation-delay: 0.2s;
}
.nss_aw_features .nss_aw_feature:nth-child(5) {
  animation-delay: 0.25s;
}
.nss_aw_features .nss_aw_feature:nth-child(6) {
  animation-delay: 0.3s;
}
.nss_aw_features .nss_aw_feature:nth-child(7) {
  animation-delay: 0.35s;
}
.nss_aw_features .nss_aw_feature:nth-child(8) {
  animation-delay: 0.4s;
}
.nss_aw_features .nss_aw_feature:nth-child(9) {
  animation-delay: 0.45s;
}

.nss_dcheck {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #059669;
}
.nss_dcheck path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: nss_drawCheck 0.5s ease forwards;
}
.nss_aw_feature:nth-child(1) .nss_dcheck path {
  animation-delay: 0.3s;
}
.nss_aw_feature:nth-child(2) .nss_dcheck path {
  animation-delay: 0.35s;
}
.nss_aw_feature:nth-child(3) .nss_dcheck path {
  animation-delay: 0.4s;
}
.nss_aw_feature:nth-child(4) .nss_dcheck path {
  animation-delay: 0.45s;
}
.nss_aw_feature:nth-child(5) .nss_dcheck path {
  animation-delay: 0.5s;
}
.nss_aw_feature:nth-child(6) .nss_dcheck path {
  animation-delay: 0.55s;
}
.nss_aw_feature:nth-child(7) .nss_dcheck path {
  animation-delay: 0.6s;
}
.nss_aw_feature:nth-child(8) .nss_dcheck path {
  animation-delay: 0.65s;
}
.nss_aw_feature:nth-child(9) .nss_dcheck path {
  animation-delay: 0.7s;
}
@keyframes nss_drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}
.nss_aw_feature span.lbl {
  font-size: 12px;
  font-weight: 700;
  color: #12142b;
}

.nss_aw_cta_row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nss_store_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  border-radius: 13px;
  padding: 10px 20px 10px 16px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
  box-shadow: 0 14px 26px -12px rgba(18, 20, 43, 0.4);
}
.nss_store_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(18, 20, 43, 0.5);
}
.nss_store_btn img {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nss_store_btn .st-txt {
  line-height: 1.15;
}
.nss_store_btn .st-txt .s1 {
  font-size: 9.5px;
  opacity: 0.75;
}
.nss_store_btn .st-txt .s2 {
  font-size: 14px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

/* ===================== BOTTOM: DEVICE STRIP ===================== */
.nss_device_strip {
  margin-top: 74px;
  text-align: center;
}
.nss_device_strip h4 {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #5b5e7a;
  margin: 0 0 26px;
  letter-spacing: 0.02em;
}
.nss_device_row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nss_device_card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nss_device_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(67, 56, 202, 0.3);
}
.nss_device_icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nss_device_icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.nss_device_card .d-txt {
  text-align: left;
}
.nss_device_card .d-txt .t {
  font-size: 12.5px;
  font-weight: 700;
}
.nss_device_card .d-txt .s {
  font-size: 10px;
  color: #5b5e7a;
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet */
@media (max-width: 1080px) {
  .nss_aw_layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nss_aw_desc {
    max-width: none;
  }

  .nss_fi_chip,
  .nss_notif_pop {
    display: none;
  }

  .nss_phone_img {
    max-width: 320px;
  }

  .nss_aw_features {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 12px;
  }

  .nss_aw_feature {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .nss_aw_feature span.lbl {
    font-size: 11px;
  }

  .nss_dcheck {
    width: 16px;
    height: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nss_anywhere_section {
    padding: 60px 16px 50px;
  }

  .nss_aw_layout {
    gap: 30px;
  }

  .nss_phone_img {
    max-width: 280px;
  }

  .nss_phone_wrap {
    padding: 10px;
  }

  .nss_aw_badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .nss_aw_heading {
    font-size: 28px;
  }

  .nss_aw_desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Features 3x3 grid on mobile with smaller font */
  .nss_aw_features {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 8px;
    margin-bottom: 24px;
  }

  .nss_aw_feature {
    padding: 6px 8px;
    border-radius: 8px;
    gap: 6px;
  }

  .nss_aw_feature span.lbl {
    font-size: 10px;
  }

  .nss_dcheck {
    width: 14px;
    height: 14px;
  }

  /* Store buttons row */
  .nss_aw_cta_row {
    gap: 10px;
    justify-content: flex-start;
  }

  .nss_store_btn {
    padding: 8px 14px 8px 12px;
    border-radius: 10px;
  }

  .nss_store_btn img {
    height: 22px;
  }

  .nss_store_btn .st-txt .s1 {
    font-size: 8px;
  }

  .nss_store_btn .st-txt .s2 {
    font-size: 11px;
  }

  /* Device strip */
  .nss_device_strip {
    margin-top: 44px;
  }

  .nss_device_strip h4 {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .nss_device_row {
    gap: 10px;
  }

  .nss_device_card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 12px 14px;
    gap: 10px;
    border-radius: 12px;
    min-width: 0;
  }

  .nss_device_icon {
    width: 32px;
    height: 32px;
  }

  .nss_device_icon svg {
    width: 15px;
    height: 15px;
  }

  .nss_device_card .d-txt .t {
    font-size: 11px;
  }

  .nss_device_card .d-txt .s {
    font-size: 9px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nss_anywhere_section {
    padding: 50px 12px 40px;
  }

  .nss_aw_layout {
    gap: 24px;
  }

  .nss_phone_img {
    max-width: 220px;
  }

  .nss_aw_heading {
    font-size: 24px;
  }

  .nss_aw_desc {
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Features 3x3 with very small font */
  .nss_aw_features {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 6px;
    margin-bottom: 20px;
  }

  .nss_aw_feature {
    padding: 5px 6px;
    border-radius: 6px;
    gap: 4px;
  }

  .nss_aw_feature span.lbl {
    font-size: 9px;
  }

  .nss_dcheck {
    width: 12px;
    height: 12px;
  }

  .nss_store_btn {
    padding: 6px 10px 6px 8px;
    border-radius: 8px;
    gap: 6px;
  }

  .nss_store_btn img {
    height: 18px;
  }

  .nss_store_btn .st-txt .s1 {
    font-size: 7px;
  }

  .nss_store_btn .st-txt .s2 {
    font-size: 10px;
  }

  .nss_device_strip h4 {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .nss_device_row {
    gap: 8px;
  }

  .nss_device_card {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
    padding: 10px 10px;
    gap: 8px;
    border-radius: 10px;
  }

  .nss_device_icon {
    width: 28px;
    height: 28px;
  }

  .nss_device_icon svg {
    width: 13px;
    height: 13px;
  }

  .nss_device_card .d-txt .t {
    font-size: 10px;
  }

  .nss_device_card .d-txt .s {
    font-size: 8px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .nss_anywhere_section {
    padding: 40px 10px 30px;
  }

  .nss_phone_img {
    max-width: 180px;
  }

  .nss_aw_heading {
    font-size: 20px;
  }

  .nss_aw_desc {
    font-size: 12px;
  }

  .nss_aw_features {
    gap: 3px 4px;
  }

  .nss_aw_feature {
    padding: 4px 5px;
    border-radius: 5px;
    gap: 3px;
  }

  .nss_aw_feature span.lbl {
    font-size: 8px;
  }

  .nss_dcheck {
    width: 10px;
    height: 10px;
  }

  .nss_store_btn {
    padding: 5px 8px 5px 6px;
    gap: 4px;
  }

  .nss_store_btn img {
    height: 15px;
  }

  .nss_store_btn .st-txt .s1 {
    font-size: 6px;
  }

  .nss_store_btn .st-txt .s2 {
    font-size: 8px;
  }

  .nss_device_card {
    padding: 8px 8px;
    gap: 6px;
  }

  .nss_device_icon {
    width: 24px;
    height: 24px;
  }

  .nss_device_icon svg {
    width: 11px;
    height: 11px;
  }

  .nss_device_card .d-txt .t {
    font-size: 9px;
  }

  .nss_device_card .d-txt .s {
    font-size: 7px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .nss_anywhere_section {
    padding: 50px 20px;
  }

  .nss_aw_layout {
    gap: 30px;
  }

  .nss_phone_img {
    max-width: 240px;
  }

  .nss_aw_features {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 10px;
  }

  .nss_aw_feature {
    padding: 6px 8px;
  }

  .nss_aw_feature span.lbl {
    font-size: 10px;
  }

  .nss_device_card {
    flex: 0 1 auto;
    max-width: none;
    padding: 12px 16px;
  }
}
/*=====================================CERTIFICATE STYLING====================================*/

.cert-section {
  position: relative;
  overflow: hidden;
  padding: 100px 5vw 90px;
  background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 55%, #f8fafc 100%);
}

.cert-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}
.cert-glow-1 {
  width: 640px;
  height: 640px;
  background: rgba(124, 58, 237, 0.08);
  top: -220px;
  left: -160px;
}
.cert-glow-2 {
  width: 560px;
  height: 560px;
  background: rgba(16, 156, 181, 0.07);
  bottom: -180px;
  right: -140px;
}
.cert-glow-3 {
  width: 380px;
  height: 380px;
  background: rgba(240, 165, 0, 0.05);
  top: 35%;
  left: 45%;
}

.cert-dotgrid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(17, 20, 31, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 65% at 50% 40%,
    #000 20%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 80% 65% at 50% 40%,
    #000 20%,
    transparent 78%
  );
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(16, 156, 181, 0.25);
  z-index: 0;
  pointer-events: none;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.15;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-160px) scale(0.6);
    opacity: 0;
  }
}

.cert-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.cert-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: center;
}

/* ===== LEFT : 3D CERTIFICATE ===== */
.cert-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  min-height: 460px;
}

.float-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  font-size: 11.5px;
  font-weight: 700;
  color: #11141f;
  letter-spacing: 0.2px;
  animation: chipFloat 5s ease-in-out infinite;
  pointer-events: none;
}
.float-chip .ic-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.chip-medal {
  top: 2%;
  left: -4%;
  animation-delay: 0s;
}
.chip-medal .ic-wrap {
  background: linear-gradient(135deg, #ffe28a, #e6a817);
}
.chip-medal .ic-wrap i {
  color: #5c3d00;
  font-size: 12px;
  animation: medalSpin 6s linear infinite;
}

.chip-verified {
  top: 0%;
  right: -6%;
  animation-delay: 0.7s;
}
.chip-verified .ic-wrap {
  background: rgba(16, 156, 181, 0.9);
}
.chip-verified .ic-wrap i {
  color: #fff;
  font-size: 12px;
}

.chip-secure {
  bottom: 4%;
  left: -8%;
  animation-delay: 1.4s;
}
.chip-secure .ic-wrap {
  background: rgba(31, 166, 114, 0.9);
}
.chip-secure .ic-wrap i {
  color: #fff;
  font-size: 12px;
}

.chip-achieve {
  bottom: 2%;
  right: -4%;
  animation-delay: 2.1s;
}
.chip-achieve .ic-wrap {
  background: rgba(124, 58, 237, 0.9);
}
.chip-achieve .ic-wrap i {
  color: #fff;
  font-size: 12px;
}

@keyframes medalSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .float-chip {
    display: none;
  }
}

.cert-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  background:
    radial-gradient(
      120% 140% at 8% 0%,
      rgba(16, 156, 181, 0.06),
      transparent 55%
    ),
    radial-gradient(
      120% 140% at 100% 100%,
      rgba(124, 58, 237, 0.05),
      transparent 55%
    ),
    #fdfdfb;
  border-radius: 22px;
  padding: 34px 36px 28px;
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: rotateY(-9deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
  overflow: hidden;
}
.cert-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(16, 156, 181, 0.35);
  border-radius: 12px;
  pointer-events: none;
}
.cert-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(240, 165, 0, 0.35);
  border-radius: 9px;
  pointer-events: none;
}

.cert-shine {
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}
.cert-card:hover .cert-shine {
  left: 140%;
}

.cert-seal {
  position: absolute;
  top: -26px;
  right: 26px;
  z-index: 4;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    #ffe28a,
    #e6a817,
    #a9720a,
    #e6a817,
    #ffe28a
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 26px rgba(180, 130, 10, 0.4);
}
.cert-card:hover .cert-seal {
  animation: sealSpin 3s linear infinite;
}
@keyframes sealSpin {
  to {
    transform: rotate(360deg);
  }
}
.cert-seal .seal-inner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdfdfb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cert-seal .seal-inner i {
  color: #a9720a;
  font-size: 18px;
}

.cert-top-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cert-top-row img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.cert-brand-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #003664;
  letter-spacing: 0.3px;
}
.cert-brand-name span {
  color: #0d7f94;
}

.cert-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 26px;
  color: #001f3d;
  margin: 6px 0 2px;
  letter-spacing: 0.5px;
}
.cert-heading-sub {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5b6570;
  font-weight: 700;
  margin-bottom: 18px;
}

.cert-line {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 12.5px;
  color: #5b6570;
  font-weight: 500;
}
.cert-name {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 34px;
  color: #11141f;
  margin: 6px 0 4px;
}
.cert-course {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #0d7f94;
  margin-bottom: 22px;
}

.cert-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 54, 100, 0.2);
}
.cert-sign {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cert-sign .sig {
  font-family: "Dancing Script", cursive;
  font-size: 22px;
  color: #003664;
  font-weight: 700;
}
.cert-sign .sig-line {
  width: 120px;
  height: 1px;
  background: #5b6570;
  opacity: 0.4;
  margin: 2px 0;
}
.cert-sign small {
  font-size: 10px;
  color: #5b6570;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cert-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.cert-qr img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
  background: #fff;
  padding: 3px;
}
.cert-card:hover .cert-qr img {
  box-shadow:
    0 0 0 3px rgba(16, 156, 181, 0.25),
    0 0 26px rgba(16, 156, 181, 0.65);
}
.cert-qr small {
  font-size: 9px;
  color: #5b6570;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cert-id-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 10px;
  color: #5b6570;
  font-weight: 600;
}
.cert-id-row b {
  color: #11141f;
  font-weight: 800;
}

@media (max-width: 480px) {
  .cert-card {
    padding: 24px 20px 20px;
  }
  .cert-name {
    font-size: 26px;
  }
  .cert-heading {
    font-size: 20px;
  }
}

/* ===== RIGHT ===== */
.cert-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cert-right-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: #5b21b6;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
}
.cert-right-badge i {
  color: #e6a817;
}

.cert-heading-main {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: #11141f;
  margin: 0;
  letter-spacing: -0.01em;
}
.cert-heading-main .accent {
  background: linear-gradient(100deg, #109cb5, #7c3aed 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cert-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #5b6570;
  max-width: 480px;
  margin: 0;
}

.cert-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(16, 156, 181, 0.06);
  border-color: rgba(16, 156, 181, 0.3);
}
.feature-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(31, 166, 114, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-card:hover .feature-ic {
  transform: rotate(-8deg) scale(1.08);
}
.feature-ic i {
  color: #1fa672;
  font-size: 14px;
}
.feature-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #11141f;
  line-height: 1.4;
}

.cert-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #109cb5, #0d7f94);
  box-shadow: 0 12px 28px rgba(16, 156, 181, 0.35);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.2s ease;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 156, 181, 0.35);
}
.btn-download:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #11141f;
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  transition: all 0.22s ease;
}
.btn-start:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: #109cb5;
  transform: translateY(-2px);
}

/* ===== VERIFY STRIP ===== */
.verify-strip {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 28px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.verify-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}
.verify-left i.lead-ic {
  color: #109cb5;
  font-size: 18px;
  flex-shrink: 0;
}
.verify-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0 14px;
}
.verify-input-wrap i {
  color: #8a94a3;
  font-size: 13px;
}
#certIdInput {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 4px;
  color: #11141f;
  font-size: 13.5px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
#certIdInput::placeholder {
  color: #8a94a3;
}
.btn-verify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  flex-shrink: 0;
}
.btn-verify:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.45);
}

.verify-result {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: 10px;
}
.verify-result.show {
  display: flex;
}
.verify-result.ok {
  background: rgba(31, 166, 114, 0.1);
  border: 1px solid rgba(31, 166, 114, 0.3);
  color: #0a7a4a;
}
.verify-result.bad {
  background: rgba(224, 71, 60, 0.1);
  border: 1px solid rgba(224, 71, 60, 0.3);
  color: #b91c1c;
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet */
@media (max-width: 980px) {
  .cert-section {
    padding: 70px 4vw 60px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cert-left {
    order: 1;
    min-height: auto;
    padding-top: 10px;
  }

  .cert-right {
    order: 0;
    align-items: center;
    text-align: center;
  }

  .cert-desc {
    margin: 0 auto;
    max-width: 100%;
  }

  .cert-right-badge {
    align-self: center;
  }

  .cert-cta-row {
    justify-content: center;
  }

  .cert-features-grid {
    max-width: 520px;
    gap: 12px;
  }

  .feature-card {
    padding: 14px 16px;
  }

  .cert-card {
    max-width: 480px;
    transform: rotateY(0deg) rotateX(0deg);
    margin: 0 auto;
  }

  .cert-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cert-section {
    padding: 60px 3.5vw 50px;
  }

  .cert-grid {
    gap: 36px;
  }

  .cert-left {
    padding-top: 0;
    min-height: auto;
  }

  .cert-card {
    max-width: 100%;
    padding: 26px 22px 20px;
    border-radius: 18px;
  }

  .cert-card::before {
    inset: 8px;
  }

  .cert-card::after {
    inset: 12px;
  }

  .cert-seal {
    width: 58px;
    height: 58px;
    top: -20px;
    right: 18px;
  }

  .cert-seal .seal-inner {
    width: 44px;
    height: 44px;
  }

  .cert-seal .seal-inner i {
    font-size: 14px;
  }

  .cert-top-row {
    margin-bottom: 14px;
  }

  .cert-top-row img {
    width: 28px;
    height: 28px;
  }

  .cert-brand-name {
    font-size: 13px;
  }

  .cert-heading {
    font-size: 22px;
  }

  .cert-heading-sub {
    font-size: 10px;
    margin-bottom: 14px;
  }

  .cert-line {
    font-size: 11px;
  }

  .cert-name {
    font-size: 28px;
    margin: 4px 0;
  }

  .cert-course {
    font-size: 13.5px;
    margin-bottom: 16px;
  }

  .cert-footer {
    padding-top: 10px;
    gap: 12px;
  }

  .cert-sign .sig {
    font-size: 18px;
  }

  .cert-sign .sig-line {
    width: 80px;
  }

  .cert-sign small {
    font-size: 9px;
  }

  .cert-qr img {
    width: 50px;
    height: 50px;
  }

  .cert-qr small {
    font-size: 8px;
  }

  .cert-id-row {
    font-size: 9px;
    margin-top: 10px;
  }

  .cert-right-badge {
    font-size: 11px;
    padding: 5px 14px;
  }

  .cert-heading-main {
    font-size: 26px;
  }

  .cert-desc {
    font-size: 14px;
  }

  .cert-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .feature-card {
    padding: 12px 14px;
    border-radius: 14px;
    gap: 10px;
  }

  .feature-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .feature-ic i {
    font-size: 12px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .cert-cta-row {
    gap: 10px;
    width: 100%;
  }

  .btn-download,
  .btn-start {
    padding: 12px 20px;
    font-size: 13px;
    flex: 1 1 auto;
    justify-content: center;
  }

  .verify-strip {
    padding: 16px 20px;
    margin-top: 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-radius: 16px;
  }

  .verify-left {
    min-width: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .verify-left i.lead-ic {
    font-size: 16px;
  }

  .verify-input-wrap {
    padding: 0 10px;
  }

  #certIdInput {
    padding: 10px 4px;
    font-size: 12.5px;
  }

  .btn-verify {
    padding: 12px 18px;
    font-size: 12.5px;
    justify-content: center;
    width: 100%;
  }

  .verify-result {
    font-size: 12px;
    padding: 12px 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .cert-section {
    padding: 50px 3vw 40px;
  }

  .cert-grid {
    gap: 28px;
  }

  .cert-card {
    padding: 20px 16px 16px;
    border-radius: 16px;
  }

  .cert-card::before {
    inset: 6px;
  }

  .cert-card::after {
    inset: 9px;
  }

  .cert-seal {
    width: 48px;
    height: 48px;
    top: -16px;
    right: 14px;
  }

  .cert-seal .seal-inner {
    width: 36px;
    height: 36px;
  }

  .cert-seal .seal-inner i {
    font-size: 12px;
  }

  .cert-top-row {
    margin-bottom: 10px;
    gap: 8px;
  }

  .cert-top-row img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .cert-brand-name {
    font-size: 11px;
  }

  .cert-heading {
    font-size: 18px;
  }

  .cert-heading-sub {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .cert-line {
    font-size: 10px;
  }

  .cert-name {
    font-size: 24px;
  }

  .cert-course {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .cert-footer {
    padding-top: 8px;
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .cert-sign {
    align-items: center;
  }

  .cert-sign .sig {
    font-size: 16px;
  }

  .cert-sign .sig-line {
    width: 60px;
  }

  .cert-sign small {
    font-size: 8px;
  }

  .cert-qr img {
    width: 40px;
    height: 40px;
  }

  .cert-qr small {
    font-size: 7px;
  }

  .cert-id-row {
    font-size: 8px;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-top: 8px;
  }

  .cert-heading-main {
    font-size: 22px;
  }

  .cert-desc {
    font-size: 13px;
  }

  .cert-right {
    gap: 14px;
  }

  .cert-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .feature-card {
    padding: 10px 10px;
    border-radius: 12px;
    gap: 8px;
  }

  .feature-ic {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .feature-ic i {
    font-size: 11px;
  }

  .feature-card p {
    font-size: 11px;
  }

  .btn-download,
  .btn-start {
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 999px;
  }

  .btn-download {
    padding: 10px 16px;
  }

  .btn-start {
    padding: 10px 16px;
  }

  .verify-strip {
    padding: 14px 16px;
    margin-top: 30px;
    gap: 10px;
    border-radius: 14px;
  }

  .verify-input-wrap {
    padding: 0 8px;
    border-radius: 10px;
  }

  #certIdInput {
    padding: 8px 4px;
    font-size: 11.5px;
  }

  .btn-verify {
    padding: 10px 14px;
    font-size: 11.5px;
    border-radius: 10px;
  }

  .verify-result {
    font-size: 11px;
    padding: 10px 12px;
    border-radius: 10px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .cert-section {
    padding: 40px 2.5vw 30px;
  }

  .cert-card {
    padding: 16px 12px 14px;
    border-radius: 14px;
  }

  .cert-heading {
    font-size: 16px;
  }

  .cert-name {
    font-size: 20px;
  }

  .cert-course {
    font-size: 11px;
  }

  .cert-heading-main {
    font-size: 20px;
  }

  .cert-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .feature-card {
    padding: 8px 8px;
    gap: 6px;
    border-radius: 10px;
  }

  .feature-ic {
    width: 22px;
    height: 22px;
  }

  .feature-ic i {
    font-size: 9px;
  }

  .feature-card p {
    font-size: 8px;
  }

  .btn-download,
  .btn-start {
    padding: 8px 12px;
    font-size: 11px;
    gap: 6px;
  }

  .cert-seal {
    width: 40px;
    height: 40px;
    top: -14px;
    right: 10px;
  }

  .cert-seal .seal-inner {
    width: 30px;
    height: 30px;
  }

  .cert-seal .seal-inner i {
    font-size: 10px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .cert-section {
    padding: 50px 4vw 40px;
  }

  .cert-grid {
    gap: 30px;
  }

  .cert-card {
    max-width: 400px;
    padding: 22px 18px 18px;
  }

  .cert-seal {
    width: 50px;
    height: 50px;
    top: -18px;
    right: 14px;
  }

  .cert-seal .seal-inner {
    width: 38px;
    height: 38px;
  }

  .cert-features-grid {
    gap: 8px;
  }

  .feature-card {
    padding: 10px 12px;
  }

  .feature-card p {
    font-size: 11px;
  }

  .verify-strip {
    flex-direction: row;
    padding: 14px 18px;
  }

  .btn-verify {
    width: auto;
    flex-shrink: 0;
  }
}
/*===========================PRICING PLANS SECTION==========================*/

.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 110px 32px 100px;
  background: #fcfbff;
}
.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(95px);
  z-index: 0;
  opacity: 0.5;
}
.pricing-section::before {
  top: -200px;
  left: -180px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.24),
    transparent 70%
  );
}
.pricing-section::after {
  bottom: -220px;
  right: -160px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.2), transparent 70%);
}
.float-shape {
  position: absolute;
  opacity: 0.15;
  z-index: 0;
  animation: pShapeFloat 15s ease-in-out infinite;
}
.psh1 {
  width: 70px;
  height: 70px;
  top: 14%;
  left: 8%;
  background: linear-gradient(135deg, #4338ca, #7c3aed);
  border-radius: 28%;
}
.psh2 {
  width: 46px;
  height: 46px;
  bottom: 20%;
  right: 10%;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 50%;
  animation-duration: 11s;
  animation-direction: reverse;
}
@keyframes pShapeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-22px) rotate(20deg);
  }
}

.pricing-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

.pr-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.pr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(67, 56, 202, 0.08);
  border: 1px solid rgba(67, 56, 202, 0.18);
  color: #4338ca;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pr-badge svg {
  width: 13px;
  height: 13px;
}
.pr-heading {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.22;
  margin: 0 0 14px;
}
.pr-heading .grad {
  background: linear-gradient(100deg, #4338ca 10%, #7c3aed 55%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pr-intro {
  font-size: 15.5px;
  color: #5b5e7a;
  line-height: 1.6;
  margin: 0;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.bt-label {
  font-size: 14px;
  font-weight: 700;
  color: #5b5e7a;
  transition: color 0.3s ease;
  cursor: pointer;
}
.bt-label.on {
  color: #12142b;
}
.bt-switch {
  width: 56px;
  height: 30px;
  border-radius: 100px;
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.bt-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.2, 1);
}
.bt-switch.yearly .bt-knob {
  transform: translateX(26px);
}
.save-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(120deg, #f59e0b, #fbbf24);
  color: #12142b;
  padding: 5px 11px;
  border-radius: 100px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.save-badge.show {
  opacity: 1;
  transform: scale(1);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 70px;
}
.plan-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e8e6f6;
  border-radius: 24px;
  padding: 30px 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 46px -26px rgba(18, 20, 43, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
}
.plan-card.pro {
  transform: scale(1.07);
  z-index: 3;
  padding: 38px 32px;
  box-shadow: 0 34px 64px -22px rgba(67, 56, 202, 0.42);
}
.plan-card.pro:hover {
  transform: scale(1.07) translateY(-6px);
}
.plan-card.pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: conic-gradient(
    from var(--pangle),
    #4338ca,
    #f59e0b,
    #7c3aed,
    #4338ca
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: pRotate 4s linear infinite;
  z-index: 0;
}
@keyframes pRotate {
  to {
    --pangle: 360deg;
  }
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.badge-starter {
  background: #f1effb;
  color: #4338ca;
}
.badge-pro {
  background: linear-gradient(120deg, #f59e0b, #fbbf24);
  color: #12142b;
}
.badge-enterprise {
  background: #eef2ff;
  color: #3730a3;
}

.plan-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}
.plan-desc {
  font-size: 12.5px;
  color: #5b5e7a;
  line-height: 1.5;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
  min-height: 34px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.price-amount {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 38px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.price-period {
  font-size: 13px;
  color: #5b5e7a;
  font-weight: 600;
  margin-bottom: 6px;
}
.price-yearly-note {
  font-size: 11.5px;
  color: #059669;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.price-yearly-note.show {
  opacity: 1;
}

.plan-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  box-shadow: 0 14px 28px -12px rgba(67, 56, 202, 0.5);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.plan-card.pro .plan-btn {
  background: linear-gradient(120deg, #f59e0b, #fbbf24);
  color: #12142b;
  box-shadow: 0 14px 28px -12px rgba(245, 158, 11, 0.5);
}
.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(67, 56, 202, 0.6);
}

.plan-divider {
  height: 1px;
  background: #e8e6f6;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.included-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5b5e7a;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.included-grid {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 1;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
}
.included-item svg {
  width: 16px;
  height: 16px;
  color: #059669;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .plan-card.pro {
    transform: scale(1);
    order: -1;
  }
  .plan-card.pro:hover {
    transform: translateY(-6px);
  }
}

.payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: -40px 0 70px;
  position: relative;
  z-index: 2;
}
.pay-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #5b5e7a;
  background: #fff;
  border: 1px solid #e8e6f6;
  padding: 8px 14px;
  border-radius: 10px;
}
.pay-icon.visa {
  color: #1a1f71;
}
.pay-icon.mc {
  color: #eb001b;
}
.pay-icon.upi {
  color: #059669;
}
.pay-icon.pp {
  color: #003087;
}
.money-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 9px 16px;
  border-radius: 100px;
}
.money-back svg {
  width: 16px;
  height: 16px;
}

.lower-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.compare-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e8e6f6;
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px -28px rgba(18, 20, 43, 0.2);
}
.compare-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 20px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.compare-table th {
  text-align: center;
  padding: 10px 6px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
}
.compare-table th:first-child {
  text-align: left;
}
.compare-table th.popular-col {
  background: #f1effb;
  border-radius: 12px 12px 0 0;
  color: #4338ca;
}
.compare-table td {
  text-align: center;
  padding: 10px 6px;
  color: #5b5e7a;
  border-top: 1px solid #e8e6f6;
}
.compare-table td:first-child {
  text-align: left;
  color: #12142b;
  font-weight: 600;
}
.compare-table td.popular-col {
  background: #f8f7fd;
}
.compare-table svg.yes {
  width: 16px;
  height: 16px;
  color: #059669;
}
.compare-table svg.no {
  width: 16px;
  height: 16px;
  color: #d1d5db;
}

.faq-wrap {
  margin-top: 26px;
}
.faq-item {
  border-top: 1px solid #e8e6f6;
  padding: 14px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
.faq-q svg {
  width: 14px;
  height: 14px;
  color: #5b5e7a;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 12.5px;
  color: #5b5e7a;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 120px;
  margin-top: 8px;
}

.ai-reco-card {
  background: linear-gradient(
    160deg,
    rgba(67, 56, 202, 0.06),
    rgba(124, 58, 237, 0.04)
  );
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 22px;
  padding: 28px;
  position: sticky;
  top: 24px;
}
.ai-reco-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 12px;
}
.ai-reco-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 6px;
}
.ai-reco-card p.sub {
  font-size: 12.5px;
  color: #5b5e7a;
  margin: 0 0 20px;
  line-height: 1.5;
}

.reco-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #5b5e7a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.reco-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.reco-chip {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid #e8e6f6;
  color: #5b5e7a;
  cursor: pointer;
  transition: all 0.2s ease;
}
.reco-chip:hover {
  border-color: #7c3aed;
  color: #7c3aed;
}
.reco-chip.sel {
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  color: #fff;
  border-color: transparent;
}

.reco-result {
  background: #fff;
  border: 1px solid #e8e6f6;
  border-radius: 16px;
  padding: 18px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.reco-result.show {
  opacity: 1;
  transform: translateY(0);
}
.reco-result .rr-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.reco-result .rr-top svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}
.reco-result .rr-plan {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.reco-reasons {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reco-reasons div {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #5b5e7a;
  line-height: 1.5;
}
.reco-reasons svg {
  width: 14px;
  height: 14px;
  color: #059669;
  flex-shrink: 0;
  margin-top: 2px;
}

.reco-thinking {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reco-thinking.show {
  opacity: 1;
}
.reco-dots {
  display: flex;
  gap: 5px;
}
.reco-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7c3aed;
  animation: thinkBounce 1.2s ease-in-out infinite;
}
.reco-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.reco-dots span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes thinkBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}
.reco-thinking-text {
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
}

.pricing-cta-strip {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 34px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    rgba(67, 56, 202, 0.07),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid rgba(124, 58, 237, 0.15);
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-left .ci {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-left .ci svg {
  width: 21px;
  height: 21px;
  color: #fff;
}
.cta-left p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.cta-left span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #5b5e7a;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-btn {
  height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.cta-btn.demo {
  border: 1.5px solid #4338ca;
  background: #fff;
  color: #4338ca;
}
.cta-btn.expert {
  border: none;
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(67, 56, 202, 0.5);
}
.cta-btn:hover {
  transform: translateY(-2px);
}
.cta-btn svg {
  width: 15px;
  height: 15px;
}

/* ===================== RESPONSIVE STYLES ===================== */

/* Tablet */
@media (max-width: 1080px) {
  .pricing-section {
    padding: 80px 24px 70px;
  }

  .pr-heading {
    font-size: 34px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto 50px;
  }

  .plan-card.pro {
    transform: scale(1);
    order: -1;
    padding: 32px 28px;
  }

  .plan-card.pro:hover {
    transform: translateY(-6px);
  }

  .plan-card.pro::before {
    display: none;
  }

  .lower-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ai-reco-card {
    position: static;
  }

  .payment-strip {
    margin: -20px 0 50px;
    gap: 14px;
  }

  .pay-icon {
    font-size: 10px;
    padding: 6px 12px;
  }

  .compare-table {
    font-size: 12px;
  }

  .pricing-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
  }

  .cta-btns {
    width: 100%;
  }

  .cta-btn {
    flex: 1;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 16px 50px;
  }

  .pr-head {
    margin: 0 auto 30px;
  }

  .pr-heading {
    font-size: 28px;
  }

  .pr-intro {
    font-size: 14px;
  }

  .pr-badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .billing-toggle {
    gap: 10px;
    margin-bottom: 32px;
  }

  .bt-label {
    font-size: 12px;
  }

  .bt-switch {
    width: 48px;
    height: 26px;
  }

  .bt-knob {
    width: 20px;
    height: 20px;
    top: 3px;
    left: 3px;
  }

  .bt-switch.yearly .bt-knob {
    transform: translateX(22px);
  }

  .save-badge {
    font-size: 9px;
    padding: 4px 8px;
  }

  .plans-grid {
    gap: 18px;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .plan-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .plan-card.pro {
    padding: 28px 22px;
  }

  .plan-badge {
    font-size: 9px;
    padding: 4px 10px;
  }

  .plan-name {
    font-size: 18px;
  }

  .plan-desc {
    font-size: 11.5px;
    min-height: auto;
    margin-bottom: 14px;
  }

  .price-amount {
    font-size: 30px;
  }

  .price-period {
    font-size: 11px;
  }

  .price-yearly-note {
    font-size: 10.5px;
    margin-bottom: 14px;
  }

  .plan-btn {
    height: 42px;
    font-size: 12.5px;
    border-radius: 11px;
    margin-bottom: 16px;
  }

  .included-title {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .included-grid {
    gap: 7px;
  }

  .included-item {
    font-size: 11.5px;
    gap: 6px;
  }

  .included-item svg {
    width: 14px;
    height: 14px;
  }

  .payment-strip {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
  }

  .pay-icon {
    font-size: 9px;
    padding: 5px 10px;
    border-radius: 8px;
  }

  .money-back {
    font-size: 11px;
    padding: 6px 12px;
  }

  .money-back svg {
    width: 14px;
    height: 14px;
  }

  .lower-grid {
    gap: 20px;
  }

  .compare-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .compare-card h3 {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .compare-table {
    font-size: 10.5px;
  }

  .compare-table th {
    padding: 8px 4px;
    font-size: 10.5px;
  }

  .compare-table td {
    padding: 8px 4px;
  }

  .compare-table svg.yes,
  .compare-table svg.no {
    width: 14px;
    height: 14px;
  }

  .faq-wrap {
    margin-top: 18px;
  }

  .faq-item {
    padding: 12px 0;
  }

  .faq-q {
    font-size: 12px;
  }

  .faq-q svg {
    width: 12px;
    height: 12px;
  }

  .faq-a {
    font-size: 11.5px;
  }

  .faq-item.open .faq-a {
    max-height: 100px;
  }

  .ai-reco-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .ai-reco-tag {
    font-size: 10px;
  }

  .ai-reco-card h3 {
    font-size: 17px;
  }

  .ai-reco-card p.sub {
    font-size: 11.5px;
    margin-bottom: 14px;
  }

  .reco-label {
    font-size: 10px;
  }

  .reco-chip {
    font-size: 10.5px;
    padding: 6px 12px;
  }

  .reco-result {
    padding: 14px;
  }

  .reco-result .rr-plan {
    font-size: 14px;
  }

  .reco-reasons div {
    font-size: 11px;
  }

  .pricing-cta-strip {
    padding: 18px 20px;
    border-radius: 16px;
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cta-left {
    gap: 10px;
  }

  .cta-left .ci {
    width: 38px;
    height: 38px;
  }

  .cta-left .ci svg {
    width: 17px;
    height: 17px;
  }

  .cta-left p {
    font-size: 14px;
  }

  .cta-left span {
    font-size: 11px;
  }

  .cta-btns {
    width: 100%;
    gap: 10px;
  }

  .cta-btn {
    height: 40px;
    font-size: 11.5px;
    padding: 0 16px;
    flex: 1;
    justify-content: center;
    border-radius: 10px;
  }

  .cta-btn svg {
    width: 13px;
    height: 13px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .pricing-section {
    padding: 50px 12px 40px;
  }

  .pr-heading {
    font-size: 24px;
  }

  .pr-intro {
    font-size: 13px;
  }

  .pr-badge {
    font-size: 9px;
    padding: 5px 12px;
  }

  .billing-toggle {
    gap: 8px;
    margin-bottom: 24px;
  }

  .bt-label {
    font-size: 11px;
  }

  .bt-switch {
    width: 42px;
    height: 22px;
  }

  .bt-knob {
    width: 16px;
    height: 16px;
    top: 3px;
    left: 3px;
  }

  .bt-switch.yearly .bt-knob {
    transform: translateX(20px);
  }

  .save-badge {
    font-size: 8px;
    padding: 3px 7px;
  }

  .plan-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .plan-card.pro {
    padding: 22px 18px;
  }

  .plan-badge {
    font-size: 8px;
    padding: 3px 8px;
    margin-bottom: 10px;
  }

  .plan-name {
    font-size: 16px;
  }

  .plan-desc {
    font-size: 10.5px;
    margin-bottom: 10px;
  }

  .price-amount {
    font-size: 26px;
  }

  .price-period {
    font-size: 10px;
  }

  .price-yearly-note {
    font-size: 9.5px;
    margin-bottom: 10px;
  }

  .plan-btn {
    height: 38px;
    font-size: 11.5px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .included-title {
    font-size: 9px;
    margin-bottom: 8px;
  }

  .included-grid {
    gap: 5px;
  }

  .included-item {
    font-size: 10.5px;
    gap: 5px;
  }

  .included-item svg {
    width: 12px;
    height: 12px;
  }

  .payment-strip {
    gap: 6px;
    margin-bottom: 30px;
  }

  .pay-icon {
    font-size: 8px;
    padding: 4px 8px;
    border-radius: 6px;
  }

  .money-back {
    font-size: 9.5px;
    padding: 5px 10px;
  }

  .money-back svg {
    width: 12px;
    height: 12px;
  }

  .compare-card {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .compare-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .compare-table {
    font-size: 9px;
  }

  .compare-table th {
    padding: 6px 3px;
    font-size: 9px;
  }

  .compare-table td {
    padding: 6px 3px;
  }

  .compare-table svg.yes,
  .compare-table svg.no {
    width: 12px;
    height: 12px;
  }

  .faq-item {
    padding: 10px 0;
  }

  .faq-q {
    font-size: 11px;
  }

  .faq-a {
    font-size: 10.5px;
  }

  .faq-item.open .faq-a {
    max-height: 80px;
  }

  .ai-reco-card {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .ai-reco-tag {
    font-size: 9px;
  }

  .ai-reco-card h3 {
    font-size: 15px;
  }

  .ai-reco-card p.sub {
    font-size: 10.5px;
  }

  .reco-label {
    font-size: 9px;
  }

  .reco-chip {
    font-size: 9.5px;
    padding: 5px 10px;
  }

  .reco-result {
    padding: 12px;
  }

  .reco-result .rr-plan {
    font-size: 13px;
  }

  .reco-reasons div {
    font-size: 10px;
  }

  .pricing-cta-strip {
    padding: 14px 16px;
    gap: 10px;
    margin-top: 30px;
  }

  .cta-left .ci {
    width: 32px;
    height: 32px;
  }

  .cta-left .ci svg {
    width: 14px;
    height: 14px;
  }

  .cta-left p {
    font-size: 12px;
  }

  .cta-left span {
    font-size: 10px;
  }

  .cta-btn {
    height: 34px;
    font-size: 10.5px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .cta-btn svg {
    width: 11px;
    height: 11px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .pricing-section {
    padding: 40px 8px 30px;
  }

  .pr-heading {
    font-size: 20px;
  }

  .pr-intro {
    font-size: 12px;
  }

  .plan-card {
    padding: 16px 12px;
  }

  .plan-name {
    font-size: 14px;
  }

  .price-amount {
    font-size: 22px;
  }

  .compare-table {
    font-size: 8px;
  }

  .compare-table th,
  .compare-table td {
    padding: 4px 2px;
  }

  .compare-table svg.yes,
  .compare-table svg.no {
    width: 10px;
    height: 10px;
  }

  .cta-btn {
    font-size: 9px;
    padding: 0 10px;
    height: 30px;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .pricing-section {
    padding: 50px 20px 40px;
  }

  .plans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .plan-card.pro {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
  }

  .plan-card {
    padding: 18px 16px;
  }

  .price-amount {
    font-size: 26px;
  }

  .payment-strip {
    gap: 8px;
  }

  .lower-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .ai-reco-card {
    position: sticky;
    top: 16px;
  }

  .pricing-cta-strip {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-btns {
    flex: 1;
    min-width: 200px;
  }
}
/*=========================FAQ SECTION STYLING==============================*/

/*=========================FOOTER SECTION STYLING============================*/

.footer-page-wrap {
  position: relative;
  padding-top: 70px;
}

/* ===================== CTA STRIP (overlapping) ===================== */
.cta-strip {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto -78px;
  padding: 46px 50px;
  border-radius: 28px;
  background: linear-gradient(120deg, #4338ca 0%, #7c3aed 55%, #5b2e9e 100%);
  box-shadow: 0 40px 80px -24px rgba(67, 56, 202, 0.55);
  text-align: center;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 60%;
  height: 220%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -60%;
  right: -10%;
  width: 60%;
  height: 220%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.18),
    transparent 70%
  );
}

.cta-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: ctaGlow 2.4s ease-in-out infinite;
}
.cta-icon-wrap i {
  font-size: 24px;
  color: #fff;
}
@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
}

.cta-strip h2 {
  position: relative;
  z-index: 2;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  margin: 0 0 10px;
}
.cta-strip p {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 26px;
}
.cta-btns {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
}
.cta-btn.primary {
  background: #fff;
  color: #4338ca;
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.35);
}
.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -12px rgba(0, 0, 0, 0.4);
}
.cta-btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.cta-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ===================== FOOTER SHELL ===================== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #15132d 0%, #1c1440 55%, #120f26 100%);
  padding: 150px 32px 0;
  color: rgba(255, 255, 255, 0.75);
}
.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1100px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.dot-grid-dark {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.09) 1.3px,
    transparent 1.3px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 50% 20%,
    #000 40%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 20%,
    #000 40%,
    transparent 90%
  );
}
.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}
.fg1 {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -140px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.35),
    transparent 70%
  );
}
.fg2 {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.3), transparent 70%);
}

.f-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f59e0b;
  opacity: 0.6;
  animation: fDrift 8s ease-in-out infinite;
  z-index: 0;
}
.f-particle.alt {
  background: #7c3aed;
}
@keyframes fDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}
.fp1 {
  top: 12%;
  left: 8%;
}
.fp2 {
  top: 30%;
  left: 22%;
  animation-delay: 1s;
}
.fp3 {
  top: 18%;
  right: 14%;
  animation-delay: 2s;
}
.fp4 {
  top: 50%;
  right: 6%;
  animation-delay: 0.5s;
}
.fp5 {
  bottom: 30%;
  left: 14%;
  animation-delay: 1.6s;
}
.fp6 {
  bottom: 18%;
  right: 26%;
  animation-delay: 2.4s;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- Columns ---------- */
.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.f-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.f-logo-row img {
  width: 50px;
  background: #ffffff;
  padding: 2px;
  height: 50px;
  border-radius: 11px;
}
.f-logo-row .f-brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.f-col p.f-intro {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}
.f-tagline {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 18px;
}

.f-social {
  display: flex;
  gap: 10px;
}
.f-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
}
.f-social a:hover {
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -8px rgba(124, 58, 237, 0.6);
}
.f-social a i {
  font-size: 14px;
}

.f-col h5 {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
}
.f-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.f-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.f-links a i {
  font-size: 9px;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  color: #f59e0b;
}
.f-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.f-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.f-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.f-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.f-contact-item:hover .f-contact-icon {
  background: linear-gradient(145deg, #4338ca, #7c3aed);
  transform: scale(1.08);
}
.f-contact-icon i {
  font-size: 12.5px;
  color: #fff;
}
.f-contact-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}

/* ---------- Newsletter + app row ---------- */
.footer-newsletter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.app-downloads {
  display: flex;
  gap: 12px;
}
.app-downloads a {
  display: block;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.app-downloads a:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}
.app-downloads img {
  height: 46px;
  background: #ffff;
  display: block;
  border-radius: 9px;
}

.newsletter-box {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nb-text h4 {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-size: 15px;
  margin: 0 0 3px;
}
.nb-text p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.nb-form {
  display: flex;
  gap: 8px;
}
.nb-form input {
  height: 46px;
  padding: 0 16px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12.5px;
  width: 220px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.nb-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.nb-form input:focus {
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.1);
}
.nb-form button {
  height: 46px;
  padding: 0 20px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  background: linear-gradient(120deg, #4338ca, #7c3aed);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nb-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(124, 58, 237, 0.6);
}

/* ---------- Bottom strip ---------- */
.footer-bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0 34px;
}
.fb-copy {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
}
.fb-designed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all 0.25s ease;
}
.fb-designed b {
  background: linear-gradient(100deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fb-designed:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.fb-legal {
  display: flex;
  gap: 18px;
}
.fb-legal a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}
.fb-legal a:hover {
  color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-columns .f-col:first-child {
    grid-column: 1/4;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .cta-strip {
    padding: 36px 24px;
    margin: 0 16px -70px;
  }
  .cta-strip h2 {
    font-size: 24px;
  }
  .cta-strip p {
    font-size: 13px;
  }
  .cta-btn {
    font-size: 12.5px;
    padding: 0 20px;
    height: 44px;
  }
  .site-footer {
    padding: 120px 20px 0;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px;
  }
  .footer-columns .f-col:first-child {
    grid-column: 1/3;
  }
  .f-col h5 {
    font-size: 13px;
  }
  .f-links a {
    font-size: 11.5px;
  }
  .f-intro {
    font-size: 11.5px;
  }
  .f-brand-name {
    font-size: 16px;
  }
  .footer-newsletter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nb-form {
    width: 100%;
  }
  .nb-form input {
    flex: 1;
    width: auto;
    font-size: 12px;
  }
  .newsletter-box {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .app-downloads img {
    height: 40px;
  }
  .footer-bottom-strip {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .fb-legal {
    gap: 14px;
  }
  .fb-legal a {
    font-size: 10.5px;
  }
  .fb-copy {
    font-size: 10.5px;
  }
  .fb-designed {
    font-size: 10.5px;
    padding: 6px 14px;
  }
  .f-contact-text {
    font-size: 11px;
  }
  .f-contact-item {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .cta-strip {
    padding: 28px 16px;
    margin: 0 12px -60px;
    border-radius: 20px;
  }
  .cta-strip h2 {
    font-size: 18px;
  }
  .cta-strip p {
    font-size: 12px;
  }
  .cta-icon-wrap {
    width: 50px;
    height: 50px;
  }
  .cta-icon-wrap i {
    font-size: 18px;
  }
  .cta-btn {
    font-size: 11.5px;
    padding: 0 16px;
    height: 40px;
  }
  .site-footer {
    padding: 100px 14px 0;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }
  .footer-columns .f-col:first-child {
    grid-column: 1/3;
  }
  .f-col h5 {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .f-links a {
    font-size: 10.5px;
    gap: 5px;
  }
  .f-links {
    gap: 8px;
  }
  .f-social a {
    width: 30px;
    height: 30px;
  }
  .f-social a i {
    font-size: 12px;
  }
  .f-logo-row img {
    width: 34px;
    height: 34px;
  }
  .f-brand-name {
    font-size: 14px;
  }
  .f-tagline {
    font-size: 10px;
  }
  .app-downloads img {
    height: 34px;
  }
  .nb-form button {
    font-size: 11px;
    padding: 0 14px;
    height: 40px;
  }
  .nb-form input {
    height: 40px;
    font-size: 11px;
    padding: 0 12px;
  }
  .nb-text h4 {
    font-size: 13px;
  }
  .nb-text p {
    font-size: 10.5px;
  }
  .fb-legal {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fb-legal a {
    font-size: 10px;
  }
  .fb-copy {
    font-size: 10px;
  }
  .fb-designed {
    font-size: 10px;
    padding: 5px 12px;
  }
}
