  :root {
      --public-bg: #ffffff;
      --public-surface: rgba(255, 255, 255, 0.95);
      --public-surface-strong: #ffffff;
      --public-border: rgba(128, 0, 128, 0.12);
      --public-border-strong: rgba(128, 0, 128, 0.22);
      --public-text: #16121d;
      --public-muted: #6b6677;
      --public-purple: #800080;
      --public-magenta: #FF00FF;
      --public-gradient: linear-gradient(135deg, #800080, #FF00FF);
      --public-gradient-soft: linear-gradient(135deg, rgba(128, 0, 128, 0.08), rgba(255, 0, 255, 0.08));
      --public-shadow: 0 20px 60px rgba(78, 35, 87, 0.10);
      --public-shadow-sm: 0 4px 20px rgba(78, 35, 87, 0.08);
  }

  body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
      background:
          radial-gradient(circle at top left, rgba(128, 0, 128, 0.06), transparent 30%),
          radial-gradient(circle at top right, rgba(255, 0, 255, 0.06), transparent 25%),
          linear-gradient(180deg, #ffffff 0%, #fff9ff 50%, #ffffff 100%);
      color: var(--public-text);
      scroll-behavior: smooth;
  }

  .public-shell-body {
      min-height: 100vh;
  }

  .public-shell-navbar {
      position: sticky;
      top: 0;
      z-index: 1030;
      padding: 1rem 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--public-border);
      transition: all 0.3s ease;
  }

  .public-shell-navbar .navbar-brand {
      padding: 0;
      margin: 0;
  }

  .brand-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .brand-mark img {
      height: 40px;
      width: auto;
      object-fit: contain;
  }

  .public-shell-navbar .navbar-toggler {
      border: 1px solid var(--public-border);
      padding: 0.5rem;
      border-radius: 8px;
      transition: all 0.2s ease;
  }

  .public-shell-navbar .navbar-toggler:focus {
      box-shadow: 0 0 0 2px rgba(128, 0, 128, 0.2);
      outline: none;
  }

  .public-shell-navbar .navbar-nav .nav-link {
      color: var(--public-muted);
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.5rem 1rem;
      transition: all 0.2s ease;
      border-radius: 8px;
  }

  .public-shell-navbar .navbar-nav .nav-link:hover {
      color: var(--public-purple);
      background: rgba(128, 0, 128, 0.04);
  }

  .public-shell-navbar .navbar-nav .nav-link.active {
      color: var(--public-purple);
      font-weight: 600;
      background: rgba(128, 0, 128, 0.04);
  }

  .btn-otp-primary,
  .btn-otp-ghost {
      border-radius: 10px;
      padding: 0.5rem 1.25rem;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
  }

  .btn-otp-primary {
      color: #ffffff;
      background: var(--public-gradient);
      border: none;
      box-shadow: 0 2px 8px rgba(128, 0, 128, 0.2);
  }

  .btn-otp-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(128, 0, 128, 0.3);
      color: #ffffff;
  }

  .btn-otp-primary:active {
      transform: translateY(0);
  }

  .btn-otp-ghost {
      color: var(--public-text);
      background: transparent;
      border: 1px solid var(--public-border);
  }

  .btn-otp-ghost:hover {
      color: var(--public-purple);
      border-color: var(--public-purple);
      background: rgba(128, 0, 128, 0.02);
  }

  .public-shell-footer {
      margin-top: 4rem;
      padding: 3rem 0 2rem;
      background: #ffffff;
      border-top: 1px solid var(--public-border);
  }

  .footer-link-list {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .footer-link-list li {
      margin-bottom: 0.5rem;
  }

  .footer-link-list a {
      color: var(--public-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      display: inline-block;
  }

  .footer-link-list a:hover {
      color: var(--public-purple);
      transform: translateX(4px);
  }

  .public-shell-footer hr {
      background: linear-gradient(90deg, transparent, var(--public-border-strong), transparent);
      opacity: 0.5;
  }

  .public-shell-footer small a {
      color: var(--public-purple);
      transition: color 0.2s ease;
  }

  .public-shell-footer small a:hover {
      color: var(--public-magenta);
      text-decoration: underline !important;
  }

  @media (min-width: 992px) {
      .public-shell-navbar .container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          flex-wrap: wrap;
      }

      .public-shell-navbar .navbar-brand {
          margin-right: 2rem;
      }

      .public-shell-navbar .navbar-collapse {
          display: flex !important;
          flex: 1;
          align-items: center;
      }

      .public-shell-navbar .navbar-nav {
          flex-direction: row;
      }

       .w-md-25 {
          width: 25% !important;
      }
  }

  @media (max-width: 991.98px) {
      .public-shell-navbar {
          padding: 0.75rem 0;
      }

      .public-shell-navbar .container {
          flex-direction: column;
          align-items: stretch;
      }

      .public-shell-navbar .navbar-brand {
          margin-bottom: 0;
      }

      .public-shell-navbar .navbar-collapse {
          margin-top: 1rem;
          padding-top: 1rem;
          border-top: 1px solid var(--public-border);
      }

      .public-shell-navbar .navbar-nav {
          margin-bottom: 1rem;
      }

      .public-shell-navbar .navbar-nav .nav-link {
          padding: 0.6rem 0;
          text-align: center;
      }

      .public-shell-navbar .d-flex.gap-2 {
          flex-direction: column;
          width: 100%;
      }

      .public-shell-navbar .btn-otp-primary,
      .public-shell-navbar .btn-otp-ghost {
          width: 100%;
          text-align: center;
      }

      .public-shell-footer {
          padding: 2rem 0 1.5rem;
          margin-top: 2rem;
      }

      .public-shell-footer .text-md-start {
          text-align: center !important;
      }

      .public-shell-footer .d-flex {
          justify-content: center;
      }
  }

  @media (max-width: 767.98px) {
      .brand-mark img {
          height: 32px;
      }

      .btn-otp-primary,
      .btn-otp-ghost {
          padding: 0.45rem 1rem;
          font-size: 0.85rem;
      }
  }

  html {
      scroll-padding-top: 80px;
  }

  :root {
      --public-bg: #ffffff;
      --public-surface: rgba(255, 255, 255, 0.82);
      --public-surface-strong: #ffffff;
      --public-border: rgba(128, 0, 128, 0.12);
      --public-border-strong: rgba(128, 0, 128, 0.22);
      --public-text: #16121d;
      --public-muted: #6b6677;
      --public-purple: #800080;
      --public-magenta: #FF00FF;
      --public-gradient: linear-gradient(135deg, #800080, #FF00FF);
      --public-gradient-soft: linear-gradient(135deg, rgba(128, 0, 128, 0.08), rgba(255, 0, 255, 0.08));
      --public-shadow: 0 20px 60px rgba(78, 35, 87, 0.10);
      --public-shadow-sm: 0 10px 30px rgba(78, 35, 87, 0.08);
      --public-transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  }

  body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
      background:
          radial-gradient(circle at top left, rgba(128, 0, 128, 0.08), transparent 28%),
          radial-gradient(circle at top right, rgba(255, 0, 255, 0.08), transparent 24%),
          linear-gradient(180deg, #ffffff 0%, #fff9ff 45%, #ffffff 100%);
      color: var(--public-text);
      scroll-behavior: smooth;
  }

  .public-shell-body {
      min-height: 100vh;
  }

  /* enhanced navbar */
  .public-shell-navbar {
      position: sticky;
      top: 0;
      z-index: 1030;
      padding-top: 1rem;
      padding-bottom: 1rem;
      background: transparent;
      transition: var(--public-transition);
  }

  /* subtle navbar background on scroll */
  .public-shell-navbar.scrolled {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
  }

  .public-shell-navbar.scrolled .nav-frame {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(20px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04), var(--public-shadow-sm);
  }

  .public-shell-navbar .container,
  .public-shell-footer .container {
      max-width: 1280px;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }

  .public-shell-navbar .nav-frame {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 0.75rem 1.5rem;
      border: 1px solid var(--public-border);
      border-radius: 80px;
      background: var(--public-surface);
      backdrop-filter: blur(16px);
      box-shadow: var(--public-shadow-sm);
      transition: var(--public-transition);
  }

  .public-shell-navbar .navbar-brand {
      min-width: 0;
      color: var(--public-text);
      font-weight: 800;
      letter-spacing: -0.02em;
      transition: opacity 0.2s ease;
  }

  .public-shell-navbar .navbar-brand:hover {
      opacity: 0.85;
  }

  .public-shell-navbar .navbar-brand:hover,
  .public-shell-navbar .nav-link:hover,
  .public-shell-footer a:hover {
      color: var(--public-purple);
  }

  .brand-mark {
      border-radius: 1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      color: var(--public-purple);
      transition: transform 0.2s ease;
  }

  .brand-mark:hover {
      transform: scale(1.02);
  }

  .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 0.5rem;
  }

  .public-shell-navbar .navbar-toggler {
      border: 0;
      box-shadow: none;
      color: var(--public-text);
      transition: var(--public-transition);
  }

  .public-shell-navbar .navbar-toggler:focus {
      outline: none;
      box-shadow: 0 0 0 2px rgba(128, 0, 128, 0.2);
  }

  .public-shell-navbar .navbar-collapse {
      justify-content: space-between;
      flex: 1 1 auto;
  }

  .public-shell-navbar .nav-link {
      color: var(--public-muted);
      font-size: 0.96rem;
      font-weight: 600;
      transition: var(--public-transition);
      position: relative;
      padding: 0.5rem 0.75rem;
  }

  .public-shell-navbar .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--public-gradient);
      transition: var(--public-transition);
      transform: translateX(-50%);
      border-radius: 2px;
      opacity: 0;
  }

  .public-shell-navbar .nav-link:hover::after,
  .public-shell-navbar .nav-link.active::after {
      width: 24px;
      opacity: 1;
  }

  .public-shell-navbar .nav-link:hover,
  .public-shell-footer a:hover {
      color: var(--public-purple);
  }

  .public-shell-navbar .nav-link,
  .public-shell-footer a {
      text-decoration: none;
  }

  /* enhanced buttons */
  .btn-otp-primary,
  .btn-otp-ghost {
      border-radius: 40px;
      padding: 0.7rem 1.6rem;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: -0.01em;
      border: 1px solid transparent;
      transition: var(--public-transition);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
  }

  .btn-otp-primary {
      color: #ffffff;
      background: var(--public-gradient);
      box-shadow: 0 8px 20px rgba(128, 0, 128, 0.2);
      position: relative;
      overflow: hidden;
  }

  .btn-otp-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
  }

  .btn-otp-primary:hover::before {
      left: 100%;
  }

  .btn-otp-primary:hover {
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(128, 0, 128, 0.28);
  }

  .btn-otp-primary:active {
      transform: translateY(0);
  }

  .btn-otp-ghost {
      color: var(--public-text);
      background: rgba(255, 255, 255, 0.9);
      border-color: var(--public-border);
      backdrop-filter: blur(4px);
  }

  .btn-otp-ghost:hover {
      color: var(--public-purple);
      border-color: var(--public-purple);
      background: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(128, 0, 128, 0.1);
  }

  /* enhanced footer */
  .public-shell-footer {
      position: relative;
      z-index: 1;
      padding-bottom: 3rem;
      margin-top: 2rem;
  }

  .public-shell-footer-inner {
      padding: 2.5rem;
      border: 1px solid var(--public-border);
      border-radius: 32px;
      background: var(--public-surface-strong);
      box-shadow: var(--public-shadow-sm);
      transition: var(--public-transition);
  }

  .public-shell-footer-inner:hover {
      box-shadow: var(--public-shadow);
  }

  .public-shell-footer .footer-link-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.75rem;
  }

  .public-shell-footer .footer-link-list a {
      transition: var(--public-transition);
      display: inline-block;
      position: relative;
      padding-left: 0;
  }

  .public-shell-footer .footer-link-list a:hover {
      transform: translateX(4px);
      color: var(--public-purple);
  }

  .public-shell-footer .footer-link-list a,
  .public-shell-footer .footer-copy,
  .public-shell-footer .footer-note {
      color: var(--public-muted);
      font-size: 0.9rem;
  }

  .public-shell-divider {
      height: 1px;
      background: linear-gradient(90deg, rgba(128, 0, 128, 0), rgba(128, 0, 128, 0.22), rgba(255, 0, 255, 0));
      margin: 2rem 0;
  }

  .footer-copy {
      font-size: 0.85rem;
      opacity: 0.8;
      transition: opacity 0.2s ease;
  }

  .footer-copy a {
      color: var(--public-purple);
      text-decoration: none;
      font-weight: 500;
  }

  .footer-copy a:hover {
      text-decoration: underline;
  }

  /* enhanced responsive */
  @media (max-width: 991.98px) {
      .public-shell-navbar .nav-frame {
          align-items: stretch;
          padding: 1rem 1.25rem;
          border-radius: 24px;
      }

      .public-shell-navbar .navbar-collapse {
          margin-top: 1rem;
          padding-top: 1rem;
          border-top: 1px solid var(--public-border);
      }

      .public-shell-navbar .nav-link {
          padding-left: 0;
          padding-right: 0;
      }

      .public-shell-navbar .nav-link::after {
          display: none;
      }

      .nav-cta {
          display: flex;
          gap: 0.75rem;
          margin-top: 0.75rem;
      }

      .btn-otp-primary,
      .btn-otp-ghost {
          padding: 0.6rem 1.2rem;
          font-size: 0.85rem;
      }
  }

  @media (max-width: 767.98px) {
      .public-shell-navbar {
          padding-top: 0.75rem;
      }

      .public-shell-footer-inner {
          padding: 1.5rem;
          border-radius: 24px;
      }

      .container {
          padding-left: 1rem;
          padding-right: 1rem;
      }

      .public-shell-navbar .container,
      .public-shell-footer .container {
          padding-left: 1rem;
          padding-right: 1rem;
      }

      .brand-mark img {
          max-width: 120px;
      }
  }

  /* smooth scroll offset for anchor links */
  html {
      scroll-padding-top: 100px;
  }

  /* optional: better focus states */
  a:focus-visible,
  button:focus-visible {
      outline: 2px solid var(--public-purple);
      outline-offset: 2px;
      border-radius: 4px;
  }

  /* optional: loading state for buttons if needed */
  .btn-loading {
      opacity: 0.7;
      pointer-events: none;
      position: relative;
  }

  /* enhanced utility for glassmorphism */
  .glass-card {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(12px);
      border: 1px solid var(--public-border);
      border-radius: 24px;
  }

  :root {
      --landing-purple: #800080;
      --landing-magenta: #FF00FF;
      --landing-gradient: linear-gradient(135deg, #800080, #FF00FF);
      --landing-gradient-soft: linear-gradient(135deg, rgba(128, 0, 128, 0.08), rgba(255, 0, 255, 0.08));
      --landing-gradient-strong: linear-gradient(145deg, rgba(128, 0, 128, 0.96), rgba(255, 0, 255, 0.92));
      --landing-text: #18131f;
      --landing-muted: #696275;
      --landing-border: rgba(128, 0, 128, 0.12);
      --landing-border-strong: rgba(128, 0, 128, 0.2);
      --landing-shadow: 0 24px 70px rgba(99, 34, 99, 0.12);
  }

  .landing-shell {
      position: relative;
      overflow: hidden;
      padding-bottom: 2rem;
  }

  .landing-shell::before,
  .landing-shell::after {
      content: "";
      position: absolute;
      width: 28rem;
      height: 28rem;
      border-radius: 12px;
      filter: blur(80px);
      opacity: 0.45;
      pointer-events: none;
      z-index: 0;
  }

  .landing-shell::before {
      top: 0;
      left: -12rem;
      background: rgba(128, 0, 128, 0.12);
  }

  .landing-shell::after {
      top: 14rem;
      right: -14rem;
      background: rgba(255, 0, 255, 0.12);
  }

  .landing-section {
      position: relative;
      z-index: 1;
  }

  .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2rem;
      align-items: center;
  }

  .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 1rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid var(--landing-border);
      box-shadow: 0 10px 28px rgba(110, 53, 111, 0.08);
      color: var(--landing-purple);
      font-size: 0.92rem;
      font-weight: 700;
  }

  .hero-title {
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      font-weight: 800;
      color: var(--landing-text);
  }

  .gradient-text {
      background: var(--landing-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .hero-copy,
  .section-copy,
  .soft-copy {
      color: var(--landing-muted);
      font-size: 1.05rem;
      line-height: 1.8;
  }

  .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
  }

  .hero-note-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 2.2rem;
  }

  .hero-note {
      padding: 1.3rem 1.2rem;
      border-radius: 1.2rem;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(128, 0, 128, 0.08);
      box-shadow: 0 12px 30px rgba(116, 74, 121, 0.06);
      text-align: left;

      transition: all 0.25s ease;
  }

  .hero-note:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(128, 0, 128, 0.12);
      border-color: rgba(128, 0, 128, 0.18);
  }

  .hero-note-icon {
      width: 42px;
      height: 42px;
      border-radius: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.7rem;

      background: rgba(128, 0, 128, 0.08);
      color: var(--landing-purple);
      font-size: 1.2rem;
  }

  .hero-note strong {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 0.3rem;
      color: var(--landing-text);
  }

  .hero-note span {
      font-size: 0.95rem;
      color: var(--landing-muted);
  }

  @media (max-width: 991.98px) {
      .hero-note-list {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 575.98px) {
      .hero-note-list {
          grid-template-columns: 1fr;
      }

      .hero-note {
          text-align: center;
          padding: 1.4rem;
      }

      .hero-note-icon {
          margin-left: auto;
          margin-right: auto;
      }
  }

  .hero-note strong,
  .stat-card strong,
  .price-card strong {
      display: block;
      font-size: 1.7rem;
      line-height: 1;
      margin-bottom: 0.45rem;
      color: var(--landing-text);
  }

  .glass-panel,
  .feature-card,
  .step-card,
  .showcase-card,
  .faq-item,
  .price-card,
  .cta-panel,
  .stat-card,
  .quote-card {
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid var(--landing-border);
      border-radius: 12px;
      box-shadow: var(--landing-shadow);
  }

  .glass-panel {
      padding: 1.5rem;
  }

  .hero-showcase {
      position: relative;
      padding: 1.6rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 255, 0.92));
  }

  .hero-showcase::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(128, 0, 128, 0.22), rgba(255, 0, 255, 0.08));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
  }

  .hero-showcase>* {
      position: relative;
      z-index: 1;
  }

  .hero-chip,
  .mini-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.8rem;
      border-radius: 12px;
      font-size: 0.8rem;
      font-weight: 700;
  }

  .hero-chip {
      color: var(--landing-purple);
      background: rgba(128, 0, 128, 0.08);
  }

  .mini-chip {
      color: #ffffff;
      background: var(--landing-gradient-strong);
      box-shadow: 0 10px 24px rgba(128, 0, 128, 0.18);
  }

  .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.2rem;
  }

  .stat-item {
      display: flex;
      align-items: center;
      gap: 1rem;

      padding: 1.2rem 1.3rem;
      border-radius: 1.2rem;

      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(128, 0, 128, 0.08);
      box-shadow: 0 12px 30px rgba(116, 74, 121, 0.06);

      transition: all 0.25s ease;
  }

  .stat-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(128, 0, 128, 0.12);
      border-color: rgba(128, 0, 128, 0.18);
  }

  .stat-icon {
      width: 44px;
      height: 44px;
      border-radius: 0.9rem;

      display: flex;
      align-items: center;
      justify-content: center;

      background: rgba(128, 0, 128, 0.08);
      color: var(--landing-purple);

      font-size: 1.2rem;
      flex-shrink: 0;
  }

  .stat-content strong {
      display: block;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--landing-text);
  }

  .stat-content span {
      font-size: 0.9rem;
      color: var(--landing-muted);
  }

  @media (max-width: 991.98px) {
      .stat-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 575.98px) {
      .stat-grid {
          grid-template-columns: 1fr;
      }

      .stat-item {
          justify-content: center;
          text-align: center;
          flex-direction: column;
      }

      .stat-icon {
          margin-bottom: 0.5rem;
      }
  }

  .feature-card,
  .step-card,
  .showcase-card,
  .price-card,
  .quote-card {
      padding: 1.45rem;
      height: 100%;
  }

  .section-title {
      font-size: clamp(2.15rem, 5vw, 3.6rem);
      line-height: 1.04;
      letter-spacing: -0.04em;
      font-weight: 800;
      color: var(--landing-text);
  }

  .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.45rem 0.85rem;
      border-radius: 12px;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--landing-purple);
      background: rgba(128, 0, 128, 0.06);
  }

  .icon-box,
  .step-index,
  .quote-mark {
      width: 3.25rem;
      height: 3.25rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      margin-bottom: 1rem;
      font-size: 1.3rem;
  }

  .icon-box,
  .quote-mark {
      background: var(--landing-gradient-soft);
      color: var(--landing-purple);
  }

  .step-index {
      color: #ffffff;
      background: var(--landing-gradient-strong);
      box-shadow: 0 16px 34px rgba(128, 0, 128, 0.18);
      font-weight: 800;
  }

  .feature-list,
  .showcase-list,
  .price-list,
  .bullet-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.9rem;
  }

  .feature-list li,
  .showcase-list li,
  .price-list li,
  .bullet-list li {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
      color: var(--landing-muted);
  }

  .feature-list i,
  .showcase-list i,
  .price-list i,
  .bullet-list i {
      color: var(--landing-purple);
      margin-top: 0.2rem;
  }

  .platform-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
  }

  .platform-card {
      padding: 1rem 1.1rem;
      border-radius: 1rem;
      border: 1px solid var(--landing-border);
      background: rgba(255, 255, 255, 0.78);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      color: var(--landing-text);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .platform-card i {
      color: var(--landing-magenta);
  }

  .platform-card:hover {
      transform: translateY(-2px);
      border-color: var(--landing-border-strong);
      box-shadow: 0 16px 34px rgba(128, 0, 128, 0.08);
  }

  .faq-item {
      overflow: hidden;
  }

  .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.2rem 1.35rem;
      font-weight: 700;
      color: var(--landing-text);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
  }

  .faq-item summary::-webkit-details-marker {
      display: none;
  }

  .faq-item p {
      margin: 0;
      padding: 0 1.35rem 1.3rem;
      color: var(--landing-muted);
      line-height: 1.75;
  }

  .quote-card blockquote {
      margin: 0;
      color: var(--landing-text);
      font-size: 1.02rem;
      line-height: 1.8;
  }

  .cta-panel {
      padding: 2rem;
      background:
          radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 30%),
          linear-gradient(135deg, rgba(128, 0, 128, 0.10), rgba(255, 0, 255, 0.10));
  }

  .cta-panel .btn-otp-primary,
  .cta-panel .btn-otp-ghost {
      min-width: 11rem;
  }

  .floating-metric {
      position: absolute;
      right: -1rem;
      bottom: 2rem;
      width: 13rem;
      padding: 1rem;
      border-radius: 1.2rem;
      background: #ffffff;
      border: 1px solid var(--landing-border);
      box-shadow: 0 24px 40px rgba(111, 76, 116, 0.12);
  }

  .floating-metric strong {
      font-size: 1.45rem;
  }

  .section-frame {
      padding: 1.5rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.48);
      border: 1px solid rgba(128, 0, 128, 0.08);
  }

  @media (max-width: 1199.98px) {
      .floating-metric {
          position: static;
          width: 100%;
          margin-top: 1rem;
      }
  }

  @media (max-width: 991.98px) {

      .hero-grid,
      .stat-strip,
      .platform-grid,
      .hero-note-list {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-title {
          font-size: clamp(2.8rem, 8vw, 4.2rem);
      }
  }

  @media (max-width: 767.98px) {

      .hero-grid,
      .stat-strip,
      .platform-grid,
      .hero-note-list {
          grid-template-columns: minmax(0, 1fr);
      }

      .hero-actions {
          flex-direction: column;
      }

      .hero-actions .btn {
          width: 100%;
      }

      .glass-panel,
      .feature-card,
      .step-card,
      .showcase-card,
      .faq-item,
      .price-card,
      .cta-panel,
      .stat-card,
      .quote-card {
          border-radius: 1.25rem;
      }
  }

  .platform-card i {
      font-size: 1.1rem;
      color: var(--landing-purple);
  }