/* ===============================
   GLOBAL RESET & BASE
================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  color: #1f2937;
  background-color: #ffffff;
  line-height: 1.6;
}

html[lang="hi"] body,
html[lang="hi"] body * {
  font-family: "Noto Sans Devanagari", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="hi"] body {
  line-height: 1.72;
}

html[lang="hi"] h1,
html[lang="hi"] h2,
html[lang="hi"] h3,
html[lang="hi"] .hero-title,
html[lang="hi"] .cta-title {
  line-height: 1.25;
  letter-spacing: 0;
}

html[lang="hi"] .sticky-cta,
html[lang="hi"] .contact-btn,
html[lang="hi"] .audio-btn {
  line-height: 1.35;
}

h1, h2, h3 {
  color: #0f172a;
}

section {
  width: 100%;
}

.section {
  padding: 64px 10%;
  text-align: center;
}

.light {
  background-color: #f5f7ff;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 6%;
  }
}

/* ===============================
   STICKY HEADER CTA
================================ */


/* NAV AREA */
.nav-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 14px;
  color: #1f2937;
  font-weight: 500;
  transition: .2s;
}

.desktop-nav a:hover {
  color: #1E5BFF;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #1f2937;
  transition: .3s;
}

.mobile-nav {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 220px;
  background: white;
  padding: 20px;
  transition: right 0.3s ease;
}

.mobile-nav.active {
  right: 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 260px;
  height: 100%;
  background: white;
  box-shadow: -10px 0 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
  transition: .3s ease;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: #1E5BFF;
}

.mobile-menu.active {
  right: 0;
}

.no-scroll {
  overflow: hidden;
}


/* CTA inside menu */
.menu-cta {
  margin-top: 20px;
  padding: 12px;
  background: #1E5BFF;
  color: white !important;
  border-radius: 8px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(79, 70, 229, 0.12);
  z-index: 9999;
}

.sticky-inner {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT BRAND */

.sticky-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-brand img {
  height: 34px;
  width: auto;
}

.sticky-brand span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.3px;
}

/* RIGHT CTA */

.sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  background: linear-gradient(135deg, #4f46e5, #38bdf8);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;

  text-decoration: none;

  box-shadow:
    0 10px 24px rgba(79,70,229,0.28),
    inset 0 1px 0 rgba(255,255,255,0.3);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(79,70,229,0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.sticky-cta img {
  width: 16px;
  height: 16px;
}

/* ===============================
   STICKY CTA – MINIMAL OUTLINED
================================ */

.sticky-cta.outlined {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 16px;
  border-radius: 10px; /* rounded rectangle */

  background: #ffffff;
  color: #4f46e5; /* toothclick blue */

  border: 1.8px solid #4f46e5;

  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.12);

  transition: all 0.22s ease;
}

.sticky-cta.outlined:hover {
  background: rgba(79, 70, 229, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.18);
}

.sticky-cta.outlined img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.sticky-cta.app-start-cta {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2f49d8, #2736c8);
  color: #ffffff;
  border: 0;
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(47, 73, 216, 0.24);
}

.sticky-cta.app-start-cta:hover {
  background: linear-gradient(135deg, #263fca, #202fb8);
  box-shadow: 0 16px 32px rgba(47, 73, 216, 0.3);
}


/* BODY OFFSET (VERY IMPORTANT) */

body {
  padding-top: 68px;
}

/* MOBILE */

@media (max-width: 768px) {

  .sticky-header {
    height: 60px;
  }

  .sticky-brand img {
    height: 28px;
  }

  .sticky-cta {
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  body {
    padding-top: 60px;
  }
}


/* ===============================
   HERO SECTION
================================ */

/* ===============================
   HERO WITH PRODUCT VISUAL
================================ */

.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 40px 16px 80px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

/* Right visuals */

.hero-visual {
  position: relative;
  height: 420px;
}

.hero-phone {
  position: absolute;
  width: 220px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.25);
}

.phone-main {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
}

.phone-left {
  left: 0;
  top: 60px;
  opacity: 0.85;
}

.phone-right {
  right: 0;
  top: 60px;
  opacity: 0.85;
}

/* Mobile */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    height: 360px;
    margin-top: 20px;
  }

  .hero-phone {
    width: 180px;
  }

  .phone-left { left: 10%; }
  .phone-right { right: 10%; }
}

/* HERO WITH PRODUCT VISUAL */

.hero {
  background: linear-gradient(180deg, #eef2ff, #ffffff);
  padding-bottom: 10px;
}
.hero-trust-line {
  margin-top: 4px;
  font-size: 0.15rem;
  color: #2578e5;        /* soft grey-blue */
  font-weight: 800;
  letter-spacing: 0.2px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #0f172a;
  letter-spacing: -0.5px;
}


.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 10%;
  font-weight: 600;
}

.logo {
  font-size: 1.2rem;
  color: #4f46e5;
}

/* ===============================
   HERO REVIEW QUOTE
================================ */

.hero-review {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #334155;
  max-width: 460px;
  line-height: 1.6;
}

.hero-review span {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #64748b;
}


/* ---------- PLAY STORE IMAGE BUTTON ---------- */

.playstore-btn {
  display: inline-block;
  margin: 12px 0 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playstore-btn img {
  height: 72px;       /* good default size */
  width: auto;
  display: block;
}

.playstore-btn:hover {
  transform: translateY(-2px);
}

.playstore-btn:hover img {
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  border-radius: 8px;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .playstore-btn img {
    height: 66px;
  }
}


/* ---------- BRAND (LOGO + NAME) ---------- */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f46e5;
  letter-spacing: 0.3px;
}


.hero-content {
  text-align: center;
  padding: 20px 10%;
}

.hero-content h1 {
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 22px;
}

.play-btn {
  display: inline-block;
  background: #000;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ===============================
   IMPACT STATS SECTION
================================ */

.impact-stats-section {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  padding: 90px 16px;
  color: white;
}

.impact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.impact-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes dark icons white */
}


.impact-stats-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.impact-stats-container h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.impact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
}

/* GRID */

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */

.impact-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-number {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.impact-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.impact-small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .impact-stats-container h2 {
    font-size: 1.6rem;
  }

  .impact-number {
    font-size: 2.5rem;
  }
}



/* ===============================
   MILESTONES (PREMIUM CHIPS)
================================ */

.milestones {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.milestones span {
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.15);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #1e293b;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  backdrop-filter: blur(2px);
  animation: fadeUp 0.5s ease forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.milestones span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.15);
  background: rgba(79, 70, 229, 0.1);
}

.milestones span:nth-child(1) { animation-delay: 0.05s; }
.milestones span:nth-child(2) { animation-delay: 0.12s; }
.milestones span:nth-child(3) { animation-delay: 0.18s; }
.milestones span:nth-child(4) { animation-delay: 0.24s; }

.milestones span i {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;   /* pure dark mono */
  margin-right: 4px;
}

.email {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
}

.email:hover {
  text-decoration: underline;
}



.stories-section {
  background: #ffffff;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.stories-sub {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 50px;
}

.stories-grid {
  max-width: 1050px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.story-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 22px 30px;

  border: 1px solid rgba(79,70,229,0.15);
  box-shadow:
    0 12px 30px rgba(15,23,42,0.06),
    0 4px 10px rgba(79,70,229,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid rgba(79,70,229,0.2);
}

.story-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #0f172a;
}

.story-card span {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 16px;
}

/* AUDIO BUTTON */

.audio-btn {
  margin-top: auto;
  background: #ffffff;
  border: 1.8px solid #4f46e5;
  color: #4f46e5;

  border-radius: 10px;
  padding: 10px 16px;

  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;

  transition: all 0.25s ease;
}

.audio-btn:hover {
  background: rgba(79,70,229,0.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(79,70,229,0.18);
}

/* MOBILE */

@media (max-width: 900px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* ===============================
   HOW IT WORKS
================================ */

.steps {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 44px 26px 56px;   /* more vertical height */
  border: 1px solid rgba(79, 70, 229, 0.18);

  /* deeper, softer shadow */
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    0 6px 16px rgba(79, 70, 229, 0.12);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.step-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.12),
    0 10px 24px rgba(79, 70, 229, 0.18);
}



/* Step title (INSTALL, FREE TRIAL, SUBSCRIBE) */
.step-card h3 {
  color: #4f46e5;
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.step-card p {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.65;
  max-width: 90%;
  margin: 0 auto;
}


/* STEP badge */
.step-card span {
  position: absolute;
  bottom: 20px;
  right: 22px;

  background: rgba(79, 70, 229, 0.10);
  border: 1px solid rgba(79, 70, 229, 0.25);
  color: #4f46e5;

  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* ===============================
   IMPACT / ACTIVE LIBRARIES
================================ */

.trusted-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.impact-section {
  background: linear-gradient(180deg, #f8faff, #ffffff);
}

.impact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
}

.impact-text {
  flex: 1;
}

.impact-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #0f172a;
}

.impact-text p {
  font-size: 1.05rem;
  color: #475569;
  max-width: 520px;
  line-height: 1.6;
}

.impact-image {
  flex: 1;
  text-align: right;
}

.impact-image img {
  max-width: 360px;
  width: 100%;
}

/* ===============================
   FEATURES SECTION (IMAGE CARDS)
================================ */

.features-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 26px;
}

/* ===============================
   BIG SCREEN LAYOUT (4 per row)
================================ */

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 14px 22px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.feature-card img {
  width: 100%;
  max-width: 110px;
  margin-bottom: 14px;
}

.feature-card p {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f2937;
}


/* ===============================
   TRUSTED LIBRARIES AUTO SCROLL
================================ */
.libraries-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.libraries-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px;
}

.libraries-container.auto-scroll {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: scrollLibraries 85s linear infinite;
}

@keyframes scrollLibraries {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* pause on hover (desktop) */
.libraries-scroll-wrapper:hover .libraries-container {
  animation-play-state: paused;
}

/* allow touch scroll on mobile */
@media (max-width: 768px) {
  .libraries-scroll-wrapper {
    overflow-x: auto;
  }
.libraries-scroll-wrapper {
    overflow-x: hidden;   /* hide scrollbar */
  }

}


.libraries-container {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 4px 14px;
  scroll-snap-type: x mandatory;
}

.libraries-container::-webkit-scrollbar {
  height: 6px;
}

.libraries-container::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 10px;
}

/* ===============================
   TRUSTED LIBRARIES CAPSULE CARDS
================================ */

.lib-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 12px 18px 12px 12px;
  min-width: 270px;
  min-height: 96px;

  background: #ffffff;
  border-radius: 22px;

  border: 1.5px solid rgba(79, 70, 229, 0.35);

  box-shadow:
    0 6px 14px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(79, 70, 229, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.lib-card {
  text-decoration: none;
  color: inherit;
}

.lib-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.08),
    0 4px 10px rgba(79, 70, 229, 0.12);
}

.lib-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(79, 70, 229, 0.14);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  overflow: hidden;
}

.lib-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lib-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.lib-text strong {
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 600;
}

.lib-text span {
  font-size: 0.78rem;
  color: #64748b;
}

.lib-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.lib-card span {
  font-size: 0.82rem;
  color: #475569;
}

.lib-card {
  animation: fadeUp 0.5s ease forwards;
}

.lib-card:nth-child(1) { animation-delay: 0.05s; }
.lib-card:nth-child(2) { animation-delay: 0.12s; }
.lib-card:nth-child(3) { animation-delay: 0.18s; }
.lib-card:nth-child(4) { animation-delay: 0.24s; }
.lib-card:nth-child(5) { animation-delay: 0.30s; }

@media (max-width: 768px) {
  .libraries-container.auto-scroll {
    gap: 14px;
    animation-duration: 95s;
  }

  .lib-card {
    min-width: 235px;
    min-height: 86px;
    padding: 10px 14px 10px 10px;
    border-radius: 20px;
  }

  .lib-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }
}

.toothclick-blue {
  font-size: 2.4rem;              /* strong but not huge */
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 8px;

  /* Gradient text */
  background: linear-gradient(135deg, #4f46e5, #5cf3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Soft premium glow */
  text-shadow:
    0 6px 18px rgba(79, 70, 229, 0.25),
    0 2px 6px rgba(56, 189, 248, 0.15);
}

@media (max-width: 768px) {
  .toothclick-blue {
    font-size: 1.9rem;
  }
}


/* ================= PRICING SECTION ================= */

.pricing-section {
  padding:110px 20px 100px;
  background:linear-gradient(180deg,#f8fbff,#ffffff);
  text-align:center;
}

.pricing-container {
  max-width:900px;
  margin:auto;
}

/* Heading */

.pricing-heading {
  font-size:36px;
  margin-bottom:18px;
  font-weight:700;
}

.pricing-trial {
  font-size:15px;
  color:#64748b;
  margin-bottom:50px;
}

.pricing-trial strong {
  color:#1E5BFF;
}

/* Card */

.pricing-card {
  background:#ffffff;
  padding:45px 55px;
  border-radius:28px;
  box-shadow:0 30px 70px rgba(30,91,255,0.08);
  margin-bottom:40px;
}

/* Pill */

.plan-pill {
  display:inline-flex;
  align-items:left;   

  gap:8px;
  padding:8px 20px;
  border-radius:50px;
  background:#eafbf4;
  color:#15803d;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}

.pricing-card-horizontal{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:28px 40px;
  background:white;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
  flex-wrap:wrap; /* makes responsive */
}

/* pill */
.plan-pill{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  background:#e6f7f1;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  color:#15803d;
}

/* title */
.plan-title{
  font-size:28px;
  font-weight:700;
  margin:0;
}

/* price */
.pricing-amount-box{
  display:flex;
  align-items:flex-end;
  gap:6px;
}

.currency{
  font-size:20px;
  font-weight:600;
}

.amount{
  font-size:40px;
  font-weight:700;
}

.duration{
  font-size:14px;
  color:#6b7280;
  margin-bottom:6px;
}

.plan-icon {
  font-size:14px;
}

/* Main layout */

.pricing-main {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.pricing-text h1 {
  font-size:32px;
  margin:0 0 6px 0;
}

/* Price */

.pricing-amount-box {
  display:flex;
  align-items:flex-end;
  gap:4px;
}

.currency {
  font-size:22px;
  font-weight:600;
}

.amount {
  font-size:56px;
  font-weight:700;
  line-height:1;
}

.duration {
  font-size:16px;
  color:#64748b;
  margin-bottom:8px;
}

/* Ideology section */

.pricing-ideology-inner {
  margin-top:10px;
}

.ideology-line {
  font-size:16px;
  font-weight:600;
  margin-bottom:8px;
  color:#1f2937;
}

.ideology-link {
  font-size:14px;
  text-decoration:none;
  color:#1E5BFF;
  font-weight:600;
  transition:.2s;
}

.ideology-link:hover {
  opacity:.8;
}

/* Responsive */

@media(max-width:768px){

  .pricing-card {
    padding:40px 30px;
  }

  .pricing-main {
    flex-direction:column;
    align-items:center;
  }

  .amount {
    font-size:48px;
  }
/* MOBILE FIX */
@media (max-width: 768px){

  .pricing-card-horizontal{
    flex-direction:column;
    text-align:center;
    gap:18px;
  }

  .pricing-amount-box{
    justify-content:center;
    align-items:center;
  }

  .plan-title{
    text-align:center;
  }

}
.pricing-ideology-inner{
  margin-top:40px; /* More breathing space */
  text-align:center;
}

.ideology-line{
  font-size:16px;
  color:#6b7280; /* soft gray */
  font-weight:500;
  margin-bottom:8px;
}

.ideology-sub{
  font-size:14px;
  color:#9ca3af; /* lighter gray */
}
.ideology-line{
  color:#5f6b7a;
  letter-spacing:0.2px;
}

}



/* FAQ SECTION */

.faq-section{
  padding:80px 20px;
  background:#f8fafc;
  text-align:center;
}

.faq-header h2{
  font-size:34px;
  font-weight:700;
  color:#0f172a;
}

.faq-header p{
  margin-top:10px;
  color:#64748b;
  font-size:16px;
}

.faq-container{
  max-width:700px;
  margin:40px auto 0;
}

.faq-item{
  background:#ffffff;
  border-radius:18px;
  margin-bottom:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:22px 24px;
  border:none;
  background:none;
  font-size:17px;
  font-weight:600;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-icon{
  font-size:18px;
  color:#64748b;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.35s ease;
  padding:0 24px;
  text-align:left;
  color:#475569;
}

.faq-item.active .faq-answer{
  max-height:200px;
  padding:0 24px 20px;
}


/* New Pricing CSS */

.pricing {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.pricing-header h2 {
  font-size: 34px;
  margin: 10px 0;
}

.pricing-header p {
  color: #64748b;
}

.pricing-pill {
  display: inline-block;
  background: #e0f2fe;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}


/* CARDS */

.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #6366f1;
  transform: scale(1.05);
}


/* BADGE */

/* PRICE */

.price {
  font-size: 32px;
  margin: 20px 0;
}

.currency {
  font-size: 18px;
}

.duration {
  font-size: 14px;
  color: #64748b;
}

.strike {
  text-decoration: line-through;
  color: #94a3b8;
}


/* BUTTONS */

.btn-primary {
  background: #6366f1;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
}

.btn-outline {
  border: 1px solid #6366f1;
  background: transparent;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
}


/* FEATURES */

.features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

/* .features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
} */


/* MOBILE */

@media(max-width:768px){
  .pricing-cards{
    flex-direction: column;
    align-items: center;
  }

  .pricing-card.featured{
    transform: none;
  }
}


/* ===============================
   TECHNOLOGY TRUST SECTION (SEO)
================================ */

.tech-section {
  text-align: center;
  padding: 90px 16px;
  background: #ffffff;
}

.tech-section h2 {
  font-size: 1.9rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.tech-sub {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.tech-grid {
  max-width: 900px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tech-item img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.tech-item span {
  font-size: 0.85rem;
  color: #334155;
}

/* Mobile */

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tech-section h2 {
    font-size: 1.5rem;
  }

  .tech-sub {
    font-size: 0.88rem;
  }
}


/* ===============================
   FINAL CTA
================================ */


.final-cta {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  padding: 90px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.cta-section {
  padding: 110px 16px;
  text-align: center;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.cta-content {
  max-width: 760px;
  margin: auto;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-line {
  font-size: 1.05rem;
  color: #e6effa;
  margin-bottom: 26px;
}

.cta-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #f4f8ff;
}

/* Mobile */
@media (max-width: 768px) {

  .cta-title {
    font-size: 1.7rem;
      color: #ffffff;

    line-height: 1.3;
  }

  .cta-line {
      color: #e6effa;

    font-size: 0.95rem;
  }
}

/* ---- Mobile CTA tuning ---- */

@media (max-width: 768px) {

  .final-cta {
    padding: 70px 6%;
  }

 

  .cta-problem {
    font-size: 1.45rem;
  }

  .cta-solution {
    font-size: 0.95rem;
  }
}


/* ======================================================
   CONTACT SECTION
====================================================== */

.contact-section {
  background: #f8fbff;
  text-align: center;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-sub {
  color: #64748b;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 18px;
}

.contact-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background: #4f46e5;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.contact-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,70,229,0.08);
  border-radius: 14px;
}

.contact-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-btn:hover {
  background: #4338ca;
}

.contact-btn.outline {
  background: transparent;
  color: #4f46e5;
  border: 1.5px solid #4f46e5;
}

.contact-btn.outline:hover {
  background: rgba(79,70,229,0.06);
}

/* Mobile */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   COMPLIANCE & TRUST
================================ */

.compliance-section {
  text-align: center;
  padding: 80px 16px;
  background: #ffffff;
}

.compliance-sub {
  max-width: 600px;
  margin: 10px auto 40px;
  font-size: 0.9rem;
  color: #64748b;
}

.compliance-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.compliance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.compliance-item img {
  width: 36px;
  height: 36px;
  opacity: 0.85;
}

.compliance-item span {
  font-size: 0.85rem;
  color: #334155;
}

/* Mobile */

@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   FOOTER
================================ */

/* ===============================
   FOOTER
================================ */

.site-footer {
  padding: 36px 16px 30px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.footer-links {
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-links a {
  color: #4f46e5;
  text-decoration: none;
  margin: 0 6px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #cbd5e1;
}

.footer-copy {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

  .top-bar {
    padding: 14px 6%;
    font-size: 0.9rem;
  }

 .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-content {
    padding: 32px 6%;
  }
.hero-trust-line {
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .brand-logo {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-size: 1.05rem;
}


  .milestones {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .milestones span {
    flex: 1 1 45%;
    text-align: center;
  }
  .impact-container {
    flex-direction: column;
    text-align: center;
  }

  .impact-image {
    text-align: center;
    margin-top: 20px;
  }

  .impact-text h2 {
    font-size: 1.6rem;
  }

  .impact-text p {
    font-size: 0.95rem;
    margin: auto;
  }
}

/* ================= TRUSTED SECTION ================= */

.trusted-section {
  position: relative;
  padding: 120px 20px 110px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

/* Background Map Layer */
.trusted-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;

  background: url("assets/map_india.png") no-repeat center;
  background-size: contain;

  transform: translate(-50%, -50%);
  opacity: 0.2; /* 80% transparent look */
  pointer-events: none;
  z-index: 0;
}

/* Content Above Background */
.trusted-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

/* Header */

.trusted-header {
  margin-bottom: 60px;
}

.trusted-chip {
  display: inline-block;
  padding: 8px 18px;
  background: #e6f7f1;
  color: #15803d;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.trusted-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.trusted-header p {
  font-size: 16px;
  color: #64748b;
}

/* Mascot */

.trusted-mascot {
  margin-bottom: 10px;
}

.trusted-mascot img {
  max-width: 300px;
  width: 100%;
}

/* Stats */

.trusted-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: rgba(185, 204, 246, 0.95);
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(25, 31, 46, 0.06);
  backdrop-filter: blur(10px);
}

.stat-box {
  flex: 1;
  text-align: center;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 14px;
  color: #090b0d;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .trusted-section {
    padding: 80px 20px;
  }

  .trusted-bg {
    width: 500px;
    height: 500px;
    opacity: 0.15;
  }

  /* Hide mascot on mobile */
  .trusted-mascot {
    display: none;
  }

  .trusted-header h2 {
    font-size: 24px;
  }

  .trusted-stats {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .stat-box h3 {
    font-size: 28px;
  }
}

.trusted-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  background: rgba(255,255,255,0.95);
  padding: 35px 50px;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(15,23,42,0.06);
  backdrop-filter: blur(4px);
}

.stat-box {
  flex: 1;
  text-align: center;
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(44, 82, 234, 0.705);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 14px;
  color: #64748b;
}
.stat-box:hover .stat-icon {
  background: rgba(21, 184, 81, 0.68);
  transform: translateY(-3px);
  transition: 0.3s ease;
}

/* ===============================
   MOBILE MENU HEADER ACTIONS
================================ */

@media (max-width: 900px) {
  .sticky-header {
    height: 60px;
  }

  .sticky-inner {
    padding: 0 14px;
  }

  .sticky-brand {
    min-width: 0;
  }

  .sticky-brand span {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
  }

  .nav-area {
    gap: 12px;
    flex: 0 0 auto;
  }

  .nav-area > .language-switch,
  .nav-area > .sticky-cta.outlined {
    display: none;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  .mobile-menu-language {
    justify-content: center;
    width: 100%;
  }
.mobile-menu .menu-cta {
    margin-top: 0;
  }

  .hamburger {
    flex: 0 0 auto;
  }
}

@media (max-width: 380px) {
  .sticky-brand span {
    max-width: 112px;
  }
}

/* ===============================
   ROTATING TRUST PILL
================================ */

.trust-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;

  padding: 8px 18px;
  border-radius: 999px;

  background: #e6f7ef;
  color: #15803d;

  font-size: 14px;
  font-weight: 600;

  border: 1px solid rgba(21,128,61,0.2);

  transition: opacity 0.4s ease;
}

.pill-icon {
  font-size: 14px;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* ===============================
   PRICING SECTION REFRESH
================================ */

.pricing {
  position: relative;
  overflow: hidden;
  padding: 104px 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(79, 70, 229, 0.12), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
  text-align: center;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 34px 20px auto;
  max-width: 960px;
  height: 1px;
  margin: auto;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.22), transparent);
}

.pricing-header {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.pricing-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.pricing-header h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.6px;
  color: #0f172a;
}

.pricing-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

.pricing-cards {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px;
  overflow: hidden;
  text-align: left;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(56, 189, 248, 0.1));
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.1);
}

.pricing-card-head {
  position: relative;
  z-index: 1;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 850;
  letter-spacing: -0.2px;
  color: #0f172a;
}

.plan-desc {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 0.95rem;
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, 0.16);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1px;
}

.price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 22px 0 14px;
  padding: 22px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.price .currency {
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #4f46e5;
}

.price .amount {
  font-size: 4.1rem;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -2px;
  color: #0f172a;
}

.price .duration {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card-yearly,
.pricing-card-starter {
  border-color: rgba(79, 70, 229, 0.14);
}

.pricing-note {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-cta.sticky-cta.outlined {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 50px;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #38bdf8);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(79, 70, 229, 0.24);
}

.pricing-cta.sticky-cta.outlined:hover {
  background: linear-gradient(135deg, #4338ca, #0ea5e9);
}

.pricing-cta.sticky-cta.outlined img {
  filter: none;
}

@media (max-width: 768px) {
  .pricing-cards {
    width: min(100%, 520px);
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .pricing {
    padding: 78px 16px;
  }

  .pricing-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .pricing-card-head {
    padding-right: 0;
    padding-top: 34px;
  }

  .badge {
    left: 20px;
    right: auto;
    top: 20px;
  }

  .price .amount {
    font-size: 3.4rem;
  }
}


/* ===============================
   TRUSTED GROWTH SECTION REFRESH
================================ */

.trusted-section {
  padding: 100px 20px 96px;
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 70, 229, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 62%, #f8fafc 100%);
}

.trusted-section::before {
  content: "";
  position: absolute;
  inset: 28px 20px auto;
  height: 1px;
  max-width: 1080px;
  margin: auto;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.22), transparent);
}

.trusted-container {
  max-width: 1120px;
}

.trusted-header {
  max-width: 720px;
  margin: 0 auto 34px;
}

.trusted-header .pill-icon {
  display: none;
}

.trusted-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #eef2ff;
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.trusted-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.trusted-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.trusted-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.trusted-mascot {
  display: none;
}

.trusted-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 34px auto 42px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.stat-box {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 24px;
  padding: 26px 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.stat-box::after {
  content: "";
  position: absolute;
  inset: auto -20px -40px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.07);
}

.stat-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f46e5, #38bdf8);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.2);
}

.stat-box:hover .stat-icon {
  background: linear-gradient(135deg, #4f46e5, #22c55e);
}

.stat-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.stat-box h3 {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.stat-box span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 650;
}

.libraries-fullwidth {
  margin-top: 10px;
}

.libraries-scroll-wrapper {
  padding: 18px 0 26px;
}

.libraries-scroll-wrapper::before,
.libraries-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(90px, 12vw);
  z-index: 2;
  pointer-events: none;
}

.libraries-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc, transparent);
}

.libraries-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc, transparent);
}

@media (max-width: 768px) {
  .trusted-section {
    padding: 74px 16px 76px;
  }

  .trusted-header {
    margin-bottom: 24px;
  }

  .trusted-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 26px auto 34px;
  }

  .stat-box {
    padding: 22px 18px;
  }
}

/* ==========================
HUMAN BENEFITS SECTION
========================== */

.human-section{

padding:110px 8%;
background:#ffffff;

}


.section-head{

text-align:center;
max-width:700px;
margin:auto;
margin-bottom:90px;

}

.human-chip{

display:inline-flex;

padding:10px 18px;

border-radius:999px;

background:#e8f7ee;

color:#15803d;

font-weight:600;

font-size:14px;

margin-bottom:22px;

}

.section-head h2{

font-size:42px;

font-weight:800;

line-height:1.2;

margin-bottom:18px;

color:#111827;

}

.section-head p{

font-size:18px;

color:#64748b;

}



/* ROW */

.human-row{

display:flex;

align-items:center;

justify-content:center;

gap:80px;

margin-bottom:120px;

}


.human-row.reverse{

flex-direction:row-reverse;

}



/* IMAGE */

.human-image{

flex:1;

display:flex;

justify-content:center;

}

.human-image img{

max-width:320px;

width:100%;

}



/* TEXT */

.human-content{

flex:1;

max-width:460px;

}

.human-content h3{

font-size:32px;

margin-bottom:18px;

color:#111827;

}

.human-content p{

font-size:18px;

line-height:1.8;

color:#475569;

}



/* MOBILE */

@media(max-width:768px){

.section-head{

margin-bottom:50px;

}

.section-head h2{

font-size:32px;

}

.section-head p{

font-size:16px;

}


.human-row,
.human-row.reverse{

flex-direction:column;

gap:35px;

text-align:center;

margin-bottom:80px;

}


.human-content h3{

font-size:26px;

}

.human-content p{

font-size:16px;

line-height:1.7;

}


.human-image img{

max-width:220px;

}

}





.starter-access-line strong {
  color: #4f46e5;
  font-size: 0.96rem;
}

/* ===============================
   SM HERO UPGRADE 2026
================================ */
.hero-upgraded {
  background:
    radial-gradient(circle at 82% 8%, rgba(99, 102, 241, 0.12), transparent 34%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  padding: 54px 20px 74px;
  overflow: hidden;
}

.hero-inner-upgraded {
  max-width: 1180px;
  padding: 18px 0 28px;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
}

.hero-copy-upgraded {
  text-align: left;
  padding: 0;
}

.hero-copy-upgraded .trust-pill {
  background: #eef1ff;
  color: #4f46e5;
  border: 1px solid #e2e7ff;
  border-radius: 999px;
  padding: 10px 18px;
  margin-bottom: 28px;
  box-shadow: none;
}

.hero-copy-upgraded .pill-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #4f46e5;
  background: #ffffff;
  font-weight: 900;
}

.hero-copy-upgraded .hero-title {
  max-width: 620px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0b1638;
  margin-bottom: 20px;
}

.hero-copy-upgraded .hero-title::first-letter {
  letter-spacing: -0.04em;
}

.hero-copy-upgraded .hero-title,
.hero-copy-upgraded .hero-title * {
  font-weight: 850;
}

.hero-copy-upgraded .hero-title {
  text-wrap: balance;
}

.hero-copy-upgraded .hero-title::selection,
.hero-copy-upgraded .hero-title span {
  color: #4f46e5;
}

.hero-copy-upgraded p {
  max-width: 520px;
  color: #5f6b85;
  font-size: 1.25rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.hero-copy-upgraded .playstore-btn {
  margin-top: 0;
}

.hero-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2f49d8, #2736c8);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(47, 73, 216, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(47, 73, 216, 0.34);
}

.hero-primary-cta .cta-arrow {
  font-size: 1.25rem;
  line-height: 1;
}

.hero-stats-panel {
  height: auto;
  display: grid;
  gap: 18px;
  padding-left: 40px;
  border-left: 1px dashed #d8def3;
}

.hero-stat-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid #eef1f8;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 48px rgba(42, 52, 91, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stat-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eef1ff;
  overflow: hidden;
  color: #4f46e5;
  font-weight: 900;
}

.hero-stat-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.stat-green .hero-stat-icon { background: #eafaf1; color: #1fa974; }
.stat-orange .hero-stat-icon { background: #fff3e2; color: #f08a00; }
.stat-purple .hero-stat-icon { background: #f0ecff; color: #6c63ff; }
.stat-text-icon { font-size: 1.35rem; }

.hero-stat-card span {
  display: block;
  color: #0b1638;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-stat-card strong {
  display: block;
  color: #4f46e5;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-green strong { color: #1fa974; }
.stat-orange strong { color: #f08a00; }
.stat-purple strong { color: #6c63ff; }

.hero-stat-card small {
  display: block;
  margin-top: 7px;
  color: #6b7280;
  font-size: 0.92rem;
}

.hero-feature-strip {
  max-width: 1120px;
  margin: 4px auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 22px 26px;
  border: 1px solid #eef1f8;
  border-radius: 26px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 50px rgba(42, 52, 91, 0.07);
}

.hero-feature-strip div {
  padding: 4px 26px;
  border-right: 1px solid #e7ebf6;
}

.hero-feature-strip div:last-child { border-right: 0; }
.hero-feature-strip span {
  display: block;
  color: #0b1638;
  font-weight: 800;
  font-size: 1rem;
}
.hero-feature-strip small {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 0.95rem;
}

.app-carousel-section {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.app-carousel-section h2 {
  color: #0b1638;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  margin-bottom: 34px;
  letter-spacing: -0.03em;
}

.app-carousel {
  position: relative;
  padding: 0 56px 48px;
}

.app-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 300px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 30px 12px 34px;
  scrollbar-width: none;
}
.app-carousel-track::-webkit-scrollbar { display: none; }

.app-screen-card {
  scroll-snap-align: center;
  border-radius: 28px;
  padding: 12px 12px 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #eef1f8;
  box-shadow: 0 22px 58px rgba(34, 44, 84, 0.1);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-screen-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(34, 44, 84, 0.14);
}

.app-screen-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  display: block;
}

.app-screen-card span {
  display: block;
  padding-top: 14px;
  color: #4f46e5;
  font-weight: 850;
}

.carousel-nav {
  position: absolute;
  top: 42%;
  width: 42px;
  height: 42px;
  border: 1px solid #e7ebf6;
  border-radius: 50%;
  background: #ffffff;
  color: #4f46e5;
  box-shadow: 0 12px 28px rgba(35, 45, 88, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.app-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -10px;
}

.app-carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #d7dceb;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.app-carousel-dots button.active {
  width: 26px;
  background: #5b5ff0;
}

.hero-review-upgraded {
  max-width: 940px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid #eef1f8;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 50px rgba(42, 52, 91, 0.07);
  text-align: left;
}
.hero-review-upgraded .quote-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eef1ff;
  color: #4f46e5;
  font-size: 2rem;
  font-weight: 900;
}
.hero-review-upgraded p {
  margin: 0 0 6px;
  color: #0b1638;
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 700;
}
.hero-review-upgraded small { color: #8a94aa; }

@media (max-width: 980px) {
  .hero-inner-upgraded {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-copy-upgraded { text-align: center; }
  .hero-copy-upgraded p,
  .hero-copy-upgraded .hero-title { margin-left: auto; margin-right: auto; }
  .hero-stats-panel {
    width: min(100%, 560px);
    margin: 0 auto;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .hero-upgraded { padding: 34px 16px 56px; }
  .hero-inner-upgraded { padding-bottom: 18px; }
  .hero-copy-upgraded .hero-title { font-size: 2.4rem; }
  .hero-copy-upgraded p { font-size: 1.05rem; }
  .hero-stat-card {
    grid-template-columns: 62px 1fr;
    min-height: 94px;
    border-radius: 20px;
    padding: 14px;
  }
  .hero-stat-icon { width: 56px; height: 56px; border-radius: 17px; }
  .hero-stat-icon img { width: 34px; height: 34px; }
  .hero-stat-card strong { font-size: 1.55rem; }
  .hero-feature-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    margin-bottom: 42px;
  }
  .hero-feature-strip div {
    border-right: 0;
    border-bottom: 1px solid #e7ebf6;
    padding: 0 0 14px;
  }
  .hero-feature-strip div:last-child { border-bottom: 0; padding-bottom: 0; }
  .app-carousel { padding: 0 0 42px; }
  .app-carousel-track {
    grid-auto-columns: minmax(210px, 76vw);
    gap: 18px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .app-screen-card img { height: 420px; }
  .carousel-nav { display: none; }
  .hero-review-upgraded {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
  }
  .hero-review-upgraded .quote-mark { margin: 0 auto; }
}
/* ===============================
   SM HERO HORIZONTAL ACTION PATCH 2026
================================ */
.hero-horizontal-panel {
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-left: 40px;
  border-left: 1px dashed #d8def3;
}

.hero-action-tile {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid #eef1f8;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 48px rgba(42, 52, 91, 0.08);
  backdrop-filter: blur(14px);
}

.hero-action-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eef1ff;
  overflow: hidden;
}

.hero-action-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 12px;
}

.action-member .hero-action-icon { background: #eafaf1; }
.action-growth .hero-action-icon { background: #f0ecff; }

.hero-action-tile strong {
  display: block;
  color: #0b1638;
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hero-action-tile span {
  display: block;
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-feature-strip,
.hero-review-upgraded {
  display: none !important;
}

@media (min-width: 1120px) {
  .hero-horizontal-panel {
    grid-template-columns: 1fr 1fr;
  }
  .hero-horizontal-panel .action-growth {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .hero-horizontal-panel {
    width: min(100%, 680px);
    margin: 0 auto;
    padding-left: 0;
    border-left: 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-action-tile {
    grid-template-columns: 54px 1fr;
    padding: 15px;
    border-radius: 20px;
  }
  .hero-action-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .hero-action-icon img {
    width: 30px;
    height: 30px;
  }
}
/* ================= SM CAROUSEL BEZEL POLISH 2026 ================= */
.app-carousel-section {
  overflow: hidden;
}

.app-carousel-section h2 {
  margin-bottom: 22px;
}

.app-carousel {
  padding: 0 48px 40px;
}

.app-carousel-track {
  grid-auto-columns: minmax(176px, 230px);
  gap: 18px;
  padding: 20px 10px 28px;
  align-items: center;
}

.app-screen-card {
  position: relative;
  aspect-ratio: 9 / 18.7;
  padding: 10px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,250,255,0.92));
  border: 1px solid rgba(214, 221, 239, 0.95);
  box-shadow: 0 20px 50px rgba(30, 42, 88, 0.1);
  overflow: hidden;
}

.app-screen-card::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.13);
  transform: translateX(-50%);
  z-index: 1;
}

.app-screen-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 246, 0.9);
  pointer-events: none;
}

.app-screen-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 62px rgba(30, 42, 88, 0.14);
}

.app-screen-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  background: #f8faff;
}

.app-screen-card span {
  display: none !important;
}

.carousel-nav {
  top: 44%;
}

.app-carousel-dots {
  margin-top: -2px;
}

@media (max-width: 720px) {
  .app-carousel { padding: 0 0 34px; }
  .app-carousel-track {
    grid-auto-columns: minmax(150px, 68vw);
    gap: 14px;
    padding: 16px 14px 24px;
  }
  .app-screen-card {
    max-height: 520px;
    border-radius: 28px;
  }
}
/* ================= SM SPACING + MOBILE CAROUSEL FOCUS 2026 ================= */
/* Tighten the handoff from feature-style sections into success stories. */
.human-section + .stories-section,
#features + .stories-section,
.section.light + .stories-section {
  margin-top: 0 !important;
  padding-top: 52px !important;
}

.human-section {
  padding-bottom: 42px !important;
}

@media (max-width: 720px) {
  .human-section + .stories-section,
  #features + .stories-section,
  .section.light + .stories-section {
    padding-top: 34px !important;
  }

  .human-section {
    padding-bottom: 28px !important;
  }

  .app-carousel-section {
    max-width: 100%;
    margin-top: 4px;
  }

  .app-carousel-section h2 {
    max-width: 300px;
    margin: 0 auto 14px;
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .app-carousel {
    padding: 0 0 32px !important;
  }

  .app-carousel-track {
    grid-auto-columns: minmax(260px, 82vw) !important;
    gap: 12px !important;
    padding: 14px 24px 24px !important;
    scroll-padding-inline: 24px;
  }

  .app-screen-card {
    max-height: none !important;
    padding: 8px;
    border-radius: 30px;
    box-shadow: 0 18px 46px rgba(30, 42, 88, 0.12);
  }

  .app-screen-card::after {
    inset: 8px;
    border-radius: 24px;
  }

  .app-screen-card img {
    border-radius: 24px;
  }

  .app-carousel-dots {
    margin-top: -4px;
  }
}

@media (max-width: 390px) {
  .app-carousel-track {
    grid-auto-columns: minmax(250px, 84vw) !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    scroll-padding-inline: 18px;
  }
}
/* ================= SM CAROUSEL FLAT SCREENSHOT PATCH 2026 ================= */
.app-screen-card {
  aspect-ratio: 9 / 18.7 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.app-screen-card::before,
.app-screen-card::after {
  display: none !important;
  content: none !important;
}

.app-screen-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: none !important;
}

.app-screen-card img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 9 / 18.7 !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  display: block !important;
}

@media (max-width: 720px) {
  .app-screen-card {
    border-radius: 20px !important;
  }

  .app-screen-card img {
    border-radius: 18px !important;
  }
}
/* ================= SM HERO FACT ICON POLISH 2026 ================= */
.hero-horizontal-panel {
  gap: 14px !important;
}

.hero-action-tile {
  position: relative;
  overflow: hidden;
  border-color: rgba(226, 232, 246, 0.92) !important;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(248,250,255,0.9)) !important;
}

.hero-action-tile::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.045);
  pointer-events: none;
}

.hero-action-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 20px !important;
  background: #f8faff !important;
  border: 1px solid rgba(226, 232, 246, 0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 10px 24px rgba(30, 42, 88, 0.06);
}

.hero-action-icon img {
  width: 42px !important;
  height: 42px !important;
  border-radius: 0 !important;
}

.action-seat .hero-action-icon { background: #f4f8ff !important; }
.action-member .hero-action-icon { background: #f3fbf6 !important; }
.action-growth .hero-action-icon { background: #fffbef !important; }

.action-seat::after { background: rgba(66, 133, 244, 0.07); }
.action-member::after { background: rgba(52, 168, 83, 0.075); }
.action-growth::after { background: rgba(251, 188, 4, 0.08); }

.hero-action-tile strong {
  font-weight: 850 !important;
  letter-spacing: -0.02em;
}

.hero-action-tile span {
  color: #667085 !important;
}

@media (max-width: 720px) {
  .hero-action-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 18px !important;
  }

  .hero-action-icon img {
    width: 36px !important;
    height: 36px !important;
  }
}

/* ================= SM HOME HERO SHOWCASE 2026 ================= */
.sticky-header {
  height: 76px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

body {
  padding-top: 76px;
}

.sticky-inner {
  max-width: 1320px;
  padding: 0 44px;
}

.sticky-brand img {
  height: 42px;
}

.sticky-brand span {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #090f2b;
}

.desktop-nav {
  gap: 34px;
}

.desktop-nav a {
  color: #080d26;
  font-weight: 750;
  font-size: 0.96rem;
}

.language-switch {
  min-height: 44px;
  padding: 4px;
  gap: 6px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 22px rgba(47, 73, 216, 0.08);
}

.lang-btn {
  min-width: 38px;
  height: 36px;
  border-radius: 999px;
  font-weight: 850;
}

.sticky-cta.app-start-cta {
  min-width: 148px;
  min-height: 52px;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #4738f2 0%, #283bd4 100%);
  box-shadow: 0 14px 30px rgba(48, 55, 207, 0.26);
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  padding: 66px 56px 76px;
  background:
    linear-gradient(115deg, transparent 0 64%, rgba(231, 235, 255, 0.78) 64% 100%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 58%, #ffffff 100%);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 38%;
  height: 44%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(46, 213, 115, 0.08));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  min-height: 690px;
  padding: 0;
  grid-template-columns: minmax(440px, 0.9fr) minmax(620px, 1.25fr);
  gap: 48px;
  align-items: center;
}

.hero-showcase-copy {
  padding: 0;
  text-align: left;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px !important;
  padding: 12px 18px !important;
  border-radius: 999px;
  color: #312bdc !important;
  background: #f0efff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-rating-pill .pill-icon {
  width: 24px !important;
  height: 24px !important;
  color: #4338ca !important;
  background: #ffffff !important;
  box-shadow: 0 6px 14px rgba(67, 56, 202, 0.12);
}

.hero-rating-pill .pill-text {
  font-weight: 850;
  font-size: 0.94rem;
}

.hero-showcase-copy .hero-title {
  max-width: 610px;
  margin: 0 0 22px;
  font-size: clamp(3.4rem, 5.4vw, 5.7rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.045em;
  color: #070d2a;
  text-wrap: balance;
}

.hero-showcase-copy .hero-title span {
  color: #4039e6;
  text-shadow: 0 16px 32px rgba(64, 57, 230, 0.18);
}

.hero-showcase-copy p {
  max-width: 560px;
  margin: 0;
  color: #56617d;
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.hero-primary-cta,
.hero-demo-cta {
  min-height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
}

.hero-primary-cta {
  min-width: 220px;
  padding: 0 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #4a36f2, #2c3bd8);
  box-shadow: 0 18px 34px rgba(55, 62, 220, 0.28);
}

.hero-demo-cta {
  min-width: 240px;
  padding: 0 26px;
  color: #2f2bdc;
  background: #ffffff;
  border: 2px solid #332ee8;
}

.demo-play {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #342ee8;
  font-size: 0.78rem;
  padding-left: 2px;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 660px;
  margin-top: 56px;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.hero-mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f0efff;
}

.hero-mini-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.mini-members .hero-mini-icon { background: #effaf0; }
.mini-growth .hero-mini-icon { background: #fff8dc; }

.hero-mini-card strong {
  display: block;
  color: #090f2b;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-mini-card span {
  display: block;
  margin-top: 6px;
  color: #5f6b85;
  font-size: 0.9rem;
  line-height: 1.38;
}

.hero-trusted-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
  color: #111936;
  font-size: 1.02rem;
  line-height: 1.4;
}

.hero-trusted-line strong {
  color: #312bdc;
  font-weight: 950;
}

.trusted-shield {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: #21b77a;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-product-showcase {
  position: relative;
  height: 620px;
  min-width: 0;
}

.hero-dots {
  position: absolute;
  top: 22px;
  right: 0;
  width: 128px;
  height: 100px;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(66, 61, 232, 0.22) 2px, transparent 2.5px);
  background-size: 18px 18px;
}

.laptop-frame {
  position: absolute;
  right: 24px;
  top: 86px;
  width: min(760px, 100%);
  filter: drop-shadow(0 28px 50px rgba(15, 23, 42, 0.2));
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 14px;
  border-radius: 22px 22px 12px 12px;
  background: linear-gradient(180deg, #05070f, #111827);
  border: 1px solid rgba(15, 23, 42, 0.4);
  overflow: hidden;
}

.laptop-screen::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
  z-index: 2;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  background: #ffffff;
}

.laptop-base {
  width: 86%;
  height: 22px;
  margin: 0 auto;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(180deg, #d8dce5, #949baa 55%, #6d7480);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.phone-frame {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 190px;
  aspect-ratio: 9 / 18.5;
  padding: 10px;
  border-radius: 34px;
  background: #05070f;
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.24);
  z-index: 3;
}

.phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 58px;
  height: 15px;
  border-radius: 0 0 12px 12px;
  background: #05070f;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 25px;
  background: #ffffff;
}

@media (max-width: 1160px) {
  .sticky-inner { padding: 0 24px; }
  .hero-showcase {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero-showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
  }
  .hero-showcase-copy {
    text-align: center;
  }
  .hero-showcase-copy .hero-title,
  .hero-showcase-copy p,
  .hero-mini-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-row,
  .hero-trusted-line {
    justify-content: center;
  }
  .hero-product-showcase {
    width: min(100%, 820px);
    margin: 0 auto;
    height: 560px;
  }
  .laptop-frame {
    left: 0;
    right: auto;
    width: min(760px, calc(100% - 72px));
  }
}

@media (max-width: 768px) {
  .sticky-header { height: 66px; }
  body { padding-top: 66px; }
  .sticky-inner { padding: 0 16px; }
  .sticky-brand img { height: 34px; }
  .sticky-brand span { font-size: 1.22rem; }
  .sticky-cta.app-start-cta { display: none; }

  .hero-showcase {
    min-height: auto;
    padding: 42px 18px 48px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  }
  .hero-showcase::before { display: none; }
  .hero-rating-pill { margin-bottom: 24px !important; }
  .hero-showcase-copy .hero-title {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }
  .hero-showcase-copy p {
    font-size: 1.05rem;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-primary-cta,
  .hero-demo-cta {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }
  .hero-mini-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }
  .hero-mini-card {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.92);
  }
  .hero-trusted-line {
    margin-top: 28px;
    align-items: flex-start;
    text-align: left;
  }
  .hero-product-showcase {
    height: 390px;
    margin-top: 18px;
  }
  .hero-dots { display: none; }
  .laptop-frame {
    top: 26px;
    width: 100%;
  }
  .laptop-screen {
    padding: 8px;
    border-radius: 16px 16px 10px 10px;
  }
  .laptop-base { height: 14px; }
  .phone-frame {
    width: 124px;
    right: 8px;
    bottom: 8px;
    padding: 7px;
    border-radius: 24px;
  }
  .phone-frame img { border-radius: 18px; }
  .phone-notch {
    top: 9px;
    width: 42px;
    height: 10px;
  }
}

@media (max-width: 430px) {
  .hero-showcase { padding-left: 14px; padding-right: 14px; }
  .hero-product-showcase { height: 340px; }
  .phone-frame { width: 108px; }
}
