
        .btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: var(--space-xs);
          font-family: var(--font-sans);
          font-weight: var(--font-weight-semibold);
          border-radius: var(--radius-md);
          border: none;
          cursor: pointer;
          transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
          text-decoration: none;
        }

        .btn:hover:not(:disabled) {
          transform: translateY(-2px);
        }

        .btn:active:not(:disabled) {
          transform: translateY(0);
        }

        .btn:disabled {
          opacity: 0.5;
          cursor: not-allowed;
        }

        /* Variants */
        .btn-primary {
          background: var(--gradient-primary);
          color: white;
        }

        .btn-primary:hover:not(:disabled) {
          box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
          background: var(--color-bg-tertiary);
          color: var(--color-text-primary);
        }

        .btn-secondary:hover:not(:disabled) {
          background: var(--color-bg-secondary);
          box-shadow: var(--shadow-md);
        }

        .btn-outline {
          background: transparent;
          color: var(--color-accent-primary);
          border: var(--border-width-thick) solid var(--color-accent-primary);
        }

        .btn-outline:hover:not(:disabled) {
          background: var(--color-accent-primary);
          color: white;
        }

        .btn-ghost {
          background: transparent;
          color: var(--color-text-secondary);
        }

        .btn-ghost:hover:not(:disabled) {
          background: var(--color-bg-secondary);
          color: var(--color-text-primary);
        }

        /* Sizes */
        .btn-sm {
          padding: var(--space-xs) var(--space-md);
          font-size: var(--font-size-sm);
        }

        .btn-md {
          padding: var(--space-sm) var(--space-lg);
          font-size: var(--font-size-base);
        }

        .btn-lg {
          padding: var(--space-md) var(--space-xl);
          font-size: var(--font-size-lg);
        }
      


        .glass-nav {
          margin: 20px 20px 0;
          padding: 16px 32px;
          border-radius: 16px;
          position: sticky;
          top: 20px;
          z-index: 100;
        }

        .nav-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 32px;
        }

        .nav-logo {
          text-decoration: none;
        }

        .logo-text {
          font-size: 24px;
          font-weight: 800;
          background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .nav-links {
          display: flex;
          align-items: center;
          gap: 32px;
          flex: 1;
          justify-content: center;
        }

        .nav-link {
          color: rgba(255, 255, 255, 0.8);
          text-decoration: none;
          font-size: 15px;
          font-weight: 500;
          transition: color 0.2s;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .nav-link:hover,
        .nav-link.active {
          color: #fff;
        }

        .nav-cta {
          flex-shrink: 0;
        }

        /* Hamburger — hidden on desktop */
        .nav-hamburger {
          display: none;
          flex-direction: column;
          gap: 5px;
          padding: 8px;
          cursor: pointer;
          background: none;
          border: none;
        }

        .hamburger-line {
          display: block;
          width: 24px;
          height: 2px;
          background: rgba(255, 255, 255, 0.9);
          border-radius: 2px;
          transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger-line.open:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-line.open:nth-child(2) {
          opacity: 0;
        }

        .hamburger-line.open:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile dropdown — hidden on desktop */
        .nav-mobile-dropdown {
          display: none;
        }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
          .glass-nav {
            margin: 10px 10px 0;
            padding: 12px 16px;
          }

          .nav-links {
            display: none;
          }

          .nav-cta {
            display: none;
          }

          .nav-hamburger {
            display: flex;
          }

          .nav-mobile-dropdown {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
          }

          .nav-mobile-link {
            display: block;
            padding: 10px 12px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
          }

          .nav-mobile-link:hover,
          .nav-mobile-link.active {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
          }

          .nav-mobile-cta {
            margin-top: 8px;
            text-decoration: none;
          }
        }
      


        /* MATCHING HOME PAGE STYLING EXACTLY - CLEAN AND HOLY */

        /* Cosmic Page Layout */
        .cosmic-page {
          position: relative;
          min-height: 100vh;
          overflow-x: hidden;
        }

        .content-layer {
          position: relative;
          z-index: 10;
          padding: 0;
        }

        /* Glassmorphism Effect - EXACT MATCH */
        .glass {
          background: rgba(255, 255, 255, 0.03);
          backdrop-filter: blur(20px);
          border: 1px solid rgba(255, 255, 255, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* Glass Navigation - EXACT MATCH */
        /* Hero Section - MATCHING HOME PAGE */
        .v1-hero {
          margin: 20px;
          padding: 80px 0;
          border-radius: 24px;
          text-align: center;
        }

        .v1-badge {
          display: inline-block;
          padding: 8px 24px;
          background: rgba(16, 185, 129, 0.2);
          border: 1px solid #10b981;
          border-radius: 24px;
          color: #10b981;
          font-size: 13px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 1.5px;
          margin-bottom: 24px;
        }

        .hero-title {
          font-size: 56px;
          font-weight: 800;
          color: #fff;
          margin-bottom: 16px;
          text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
        }

        .hero-subtitle {
          font-size: 24px;
          color: rgba(255, 255, 255, 0.8);
          margin-bottom: 12px;
        }

        .hero-description {
          font-size: 18px;
          color: rgba(255, 255, 255, 0.6);
          max-width: 700px;
          margin: 0 auto 48px;
          line-height: 1.6;
        }

        .counter-section {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 20px;
          margin-bottom: 48px;
        }

        .counter-box {
          padding: 32px 64px;
          border-radius: 16px;
        }

        .counter-number {
          font-size: 64px;
          font-weight: 800;
          background: linear-gradient(135deg, #8b5cf6, #06b6d4);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          line-height: 1;
          margin-bottom: 8px;
        }

        .counter-label {
          font-size: 16px;
          color: rgba(255, 255, 255, 0.7);
          font-weight: 600;
        }

        .counter-status {
          display: flex;
          align-items: center;
          gap: 8px;
          color: #10b981;
          font-size: 15px;
          font-weight: 600;
        }

        .status-dot {
          width: 8px;
          height: 8px;
          background: #10b981;
          border-radius: 50%;
          animation: pulse 2s infinite;
        }

        @keyframes pulse {
          0%, 100% { opacity: 1; }
          50% { opacity: 0.5; }
        }

        .hero-cta {
          display: flex;
          gap: 16px;
          justify-content: center;
        }

        /* Benefits Section - MATCHING HOME PAGE SECTIONS */
        .benefits-section {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .benefits-container {
          max-width: 1200px;
          margin: 0 auto;
          text-align: center;
        }

        .section-title {
          font-size: 40px;
          font-weight: 800;
          color: #fff;
          margin-bottom: 16px;
          text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
        }

        .section-subtitle {
          font-size: 20px;
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 48px;
        }

        .benefits-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
        }

        /* Benefit Cards - EXACT HOME PAGE CARD STYLE */
        .benefit-card {
          padding: 32px 24px;
          border-radius: 16px;
          text-align: center;
          transition: all 0.3s;
        }

        .benefit-card:hover {
          transform: translateY(-4px);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .benefit-icon {
          font-size: 48px;
          margin-bottom: 16px;
        }

        .benefit-title {
          font-size: 20px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 12px;
        }

        .benefit-description {
          font-size: 15px;
          color: rgba(255, 255, 255, 0.8);
          line-height: 1.6;
        }

        /* Pricing Section */
        .v1-pricing-section {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .pricing-container {
          max-width: 1200px;
          margin: 0 auto;
          text-align: center;
        }

        .pricing-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
          margin-top: 48px;
        }

        .pricing-card {
          padding: 32px 24px;
          border-radius: 16px;
          text-align: center;
          position: relative;
          transition: all 0.3s;
        }

        .pricing-card:hover {
          transform: translateY(-4px);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .pricing-card.popular {
          border: 2px solid #8b5cf6;
        }

        .popular-badge {
          position: absolute;
          top: -12px;
          left: 50%;
          transform: translateX(-50%);
          background: #8b5cf6;
          color: #fff;
          padding: 4px 16px;
          border-radius: 12px;
          font-size: 11px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .plan-name {
          font-size: 20px;
          font-weight: 700;
          color: #fff;
          margin-bottom: 12px;
        }

        .plan-price {
          font-size: 40px;
          font-weight: 800;
          background: linear-gradient(135deg, #8b5cf6, #06b6d4);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          margin-bottom: 12px;
        }

        .plan-description {
          font-size: 15px;
          color: rgba(255, 255, 255, 0.7);
          margin-bottom: 24px;
        }

        .plan-features {
          list-style: none;
          padding: 0;
          margin: 0 0 32px 0;
          text-align: left;
        }

        .plan-features li {
          padding: 8px 0 8px 24px;
          position: relative;
          color: rgba(255, 255, 255, 0.8);
          font-size: 15px;
          line-height: 1.5;
        }

        .plan-features li::before {
          content: '✓';
          position: absolute;
          left: 0;
          color: #10b981;
          font-weight: 700;
        }

        /* Urgency CTA */
        .urgency-cta {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
          text-align: center;
        }

        .cta-subtitle {
          font-size: 20px;
          color: #fff;
          margin-bottom: 48px;
        }

        .urgency-stats {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 32px;
          margin: 48px 0;
        }

        .stat-item {
          text-align: center;
        }

        .stat-value {
          font-size: 48px;
          font-weight: 800;
          background: linear-gradient(135deg, #8b5cf6, #06b6d4);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          line-height: 1;
          margin-bottom: 8px;
        }

        .stat-label {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.6);
          font-weight: 600;
        }

        .stat-divider {
          font-size: 32px;
          color: rgba(255, 255, 255, 0.3);
        }

        .cta-buttons {
          display: flex;
          gap: 16px;
          justify-content: center;
        }

        /* Footer - MATCHING HOME PAGE */
        .footer {
          margin: 40px 20px;
          padding: 60px 48px;
          border-radius: 24px;
        }

        .footer-card {
          max-width: 1200px;
          margin: 0 auto;
        }

        .footer-content {
          display: grid;
          grid-template-columns: repeat(5, 1fr);
          gap: 48px;
          margin-bottom: 48px;
        }

        .footer-section h3 {
          font-size: 24px;
          font-weight: 800;
          margin-bottom: 8px;
          background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .footer-tagline {
          font-size: 14px;
          color: rgba(255, 255, 255, 0.6);
        }

        .footer-section h4 {
          font-size: 16px;
          font-weight: 700;
          margin-bottom: 16px;
          color: #fff;
        }

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

        .footer-links li {
          margin-bottom: 12px;
        }

        .footer-links a {
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          font-size: 15px;
          transition: color 0.2s;
        }

        .footer-links a:hover {
          color: #8b5cf6;
        }

        .footer-bottom {
          text-align: center;
          padding-top: 32px;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          color: rgba(255, 255, 255, 0.5);
          font-size: 14px;
        }

        @media (max-width: 968px) {
          .benefits-grid,
          .pricing-grid {
            grid-template-columns: 1fr;
          }

          .urgency-stats {
            flex-direction: column;
            gap: 24px;
          }

          .stat-divider {
            display: none;
          }
        }

        @media (max-width: 768px) {
          .hero-title {
            font-size: 40px;
          }

          .counter-number {
            font-size: 48px;
          }

          .hero-cta,
          .cta-buttons {
            flex-direction: column;
          }

          .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
          }
        }
      