* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scrollbar-gutter: stable;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #ffffff;
            color: #1a1a1a;
            line-height: 1.6;
        }
        /* Compact Hero Section */
        .hero-section {
            background-color: #f9fafb;
            padding: 1.5rem 0;
            text-align: center;
            border-bottom: 1px solid #e5e7eb;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-title {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            max-width: 700px;
            margin: 0 auto;
            color: #4a5568;
        }

        /* Pricing Section */
        .pricing-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.25rem;
            margin-top: 1rem;
        }

        /* Pricing Card - More Rounded Edges */
        .pricing-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            border-color: #000000;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            border-color: #3b82f6;
            border-width: 3px;
            box-shadow: 0 8px 24px rgba(59,130,246,0.15);
        }

        /* Most Popular Badge - Bright Blue */
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(59,130,246,0.4);
        }

        .plan-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .plan-price {
            font-size: 2.25rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 0.25rem;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 500;
            color: #6b7280;
        }

        .plan-description {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.75rem;
            min-height: 0;
        }

        /* Discount Badge - Vibrant Green/Yellow Options */
        .plan-discount {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(16,185,129,0.3);
        }

        .pricing-card:nth-child(1) .plan-discount {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            box-shadow: 0 4px 12px rgba(245,158,11,0.3);
        }

        .pricing-card:nth-child(2) .plan-discount {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            box-shadow: 0 4px 12px rgba(16,185,129,0.3);
        }

        .pricing-card:nth-child(3) .plan-discount {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            box-shadow: 0 4px 12px rgba(139,92,246,0.3);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 1rem;
        }

        .plan-features li {
            padding: 0.35rem 0;
            font-size: 0.875rem;
            color: #4a5568;
            display: flex;
            align-items: start;
            gap: 0.5rem;
        }

        .plan-features li i {
            color: #10b981;
            margin-top: 0.25rem;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .select-plan-btn {
            width: 100%;
            background: #000000;
            color: white;
            padding: 0.65rem;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .select-plan-btn:hover {
            background: #2d3748;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .pricing-card.featured .select-plan-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }

        .pricing-card.featured .select-plan-btn:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        }

        .select-plan-btn.loading {
            opacity: 0.75;
            cursor: not-allowed;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .select-plan-btn.loading::before {
            content: "";
            width: 1rem;
            height: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-top-color: #fff;
            border-radius: 50%;
            animation: btn-spin 0.7s linear infinite;
            flex-shrink: 0;
        }

        @keyframes btn-spin {
            to { transform: rotate(360deg); }
        }

        /* Footer */
        .footer {
            background-color: #1a1a1a;
            color: #9ca3af;
            padding: 2rem 0 1.25rem;
            margin-top: 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .footer-section h4 {
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 1rem;
            text-align: center;
            font-size: 13px;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #1a1a1a;
            padding: 0.5rem;
        }

        /* Responsive Design - Tablet */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 1.5rem;
            }

            .pricing-section {
                padding: 2.5rem 1.5rem;
            }

            .pricing-grid {
                gap: 1.5rem;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-menu a {
                font-size: 13px;
            }
        }

        /* Responsive Design - Mobile */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }

            .logo img {
                height: 32px;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .hero-subtitle {
                font-size: 0.875rem;
            }

            .hero-container {
                padding: 0 1rem;
            }

            .pricing-section {
                padding: 2rem 1rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }

            .plan-price {
                font-size: 2.5rem;
            }

            .plan-name {
                font-size: 1.375rem;
            }

            .plan-discount {
                font-size: 1rem;
            }

            .footer-container {
                padding: 0 1rem;
            }

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

            .nav-menu {
                display: none;
            }

            .cta-buttons {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        /* Responsive Design - Small Mobile */
        @media (max-width: 480px) {
            .header-container {
                padding: 0 0.75rem;
            }

            .hero-title {
                font-size: 1.25rem;
            }

            .hero-subtitle {
                font-size: 0.813rem;
            }

            .pricing-card {
                padding: 1.5rem 1rem;
            }

            .plan-price {
                font-size: 2rem;
            }

            .plan-features li {
                font-size: 0.875rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .popular-badge {
                font-size: 10px;
                padding: 0.35rem 1rem;
            }
        }

        .coupon-box {
          margin-bottom: 1.5rem;
          padding: 0.75rem;
          background: #f9fafb;
          border: 1px dashed #d1d5db;
          border-radius: 10px;
          text-align: center;
        }

        .coupon-label {
          font-size: 0.85rem;
          color: #6b7280;
          margin-right: 6px;
        }

        .coupon-code {
          background: #111827;
          color: #ffffff;
          border: none;
          padding: 0.4rem 0.75rem;
          border-radius: 6px;
          font-weight: 700;
          font-size: 0.9rem;
          cursor: pointer;
        }

        .coupon-code:hover {
          background: #1f2937;
        }

        .coupon-hint {
          display: block;
          margin-top: 6px;
          font-size: 0.75rem;
          color: #6b7280;
        }

        .trial-highlight {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 3px 10px;

  font-size: 0.78rem;
  font-weight: 600;

  color: #166534;              /* deep green text */
  background: #dcfce7;         /* soft green background */
  border-radius: 999px;        /* pill shape */

  line-height: 1.4;
}
