* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: #f8fafc;
            color: #1e293b;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.5;
            overflow-x: hidden;
        }

        ::selection {
            background-color: #00a651;
            color: #ffffff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

        .container { width: 100%; max-width: 1152px; margin: 0 auto; padding: 0 16px; }
        .container-sm { max-width: 768px; margin: 0 auto; }
        .container-md { max-width: 896px; margin: 0 auto; }
        .container-lg { max-width: 1024px; margin: 0 auto; }
        
        .text-center { text-align: center; }
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-end { justify-content: flex-end; }
        .flex-col { flex-direction: column; }
        
        .text-orange { color: #f47f24; }
        .text-red { color: #e3242b; }
        .text-slate-900 { color: #0f172a; }
        .text-slate-700 { color: #334155; }
        
        .hero {
            padding: 32px 0 20px;
            background-color: #fdfdfd;
            background-image: linear-gradient(to bottom, #ffffff, #f8fafc);
        }

        .hero-title {
            font-size: 32px;
            font-weight: bold;
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .hero-desc {
            font-size: 16px;
            color: #334155;
            max-width: 680px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .btn-hero-primary {
            background-color: #e3242b;
            color: #ffffff;
            font-size: 16px;
            font-weight: bold;
            padding: 12px 32px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(227, 36, 43, 0.3);
            transition: all 0.3s;
            border: 1px solid #e3242b;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-hero-primary:hover {
            background-color: #cc2026;
            border-color: #cc2026;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(227, 36, 43, 0.4);
        }

        .btn-hero-upgrade {
            background-color: #00a651;
            color: #ffffff;
            font-size: 16px;
            font-weight: bold;
            padding: 12px 32px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
            transition: all 0.3s;
            border: 1px solid #00a651;
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
        }

        .btn-hero-upgrade:hover {
            background-color: #008f46;
            border-color: #008f46;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 166, 81, 0.4);
        }

        .stats {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto;
            border-top: 1px solid #e2e8f0;
            padding-top: 16px;
        }

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

        .stat-val {
            font-size: 20px;
            font-weight: bold;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            color: #475569;
        }

        .stat-divider {
            width: 1px;
            height: 32px;
            background-color: #e2e8f0;
        }

        .section { padding: 32px 0; }
        .bg-slate-50 { background-color: #f8fafc; }
        .bg-white { background-color: #ffffff; }
        
        .section-title {
            font-size: 28px;
            font-weight: bold;
            color: #f47f24;
            text-align: center;
            margin-bottom: 24px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .pricing-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
            position: relative;
            transition: all 0.3s;
            cursor: pointer;
        }

        .pricing-card.overflow-hidden { overflow: hidden; }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.active {
            border: 2px solid #00a651;
            box-shadow: 0 0 15px rgba(0, 166, 81, 0.2);
            transform: translateY(-4px);
            padding: 15px;
        }

        .badge-popular {
            position: absolute;
            top: -12px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
        }

        .badge-popular span {
            background-color: #00a651;
            color: #ffffff;
            font-size: 11px;
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        .badge-gift {
            position: absolute;
            top: 16px;
            right: -24px;
            background-color: #ef4444;
            color: #ffffff;
            font-size: 11px;
            font-weight: bold;
            padding: 4px 32px;
            transform: rotate(45deg);
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        .card-header { text-align: center; margin-bottom: 12px; padding-top: 4px; }
        .card-title { font-size: 18px; font-weight: bold; color: #0f172a; }
        .card-price { font-size: 24px; font-weight: bold; color: #0f172a; margin-top: 8px; }
        .card-saving { font-size: 14px; font-weight: bold; color: #e3242b; margin-top: 4px; }

        .card-features {
            list-style: none;
            flex-grow: 1;
            margin-bottom: 16px;
        }

        .card-features li {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #334155;
            margin-bottom: 8px;
        }

        .card-features svg {
            width: 14px;
            height: 14px;
            color: #00a651;
            margin-right: 6px;
            flex-shrink: 0;
        }

        .card-btn {
            width: 100%;
            font-size: 15px;
            font-weight: bold;
            padding: 10px 12px;
            border-radius: 6px;
            border: none;
            transition: all 0.3s;
            cursor: pointer;
            margin-top: auto;
            background-color: #f1f5f9;
            color: #334155;
            display: block;
            text-align: center;
            text-decoration: none;
            box-sizing: border-box;
        }

        .pricing-card:hover .card-btn {
            background-color: #00a651; 
            color: #ffffff;
        }

        .pricing-card.active .card-btn {
            background-color: #00a651;
            color: #ffffff;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.active .card-btn:hover { 
            background-color: #008f46; 
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .feature-box {
            background-color: #f8fafc;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid #f1f5f9;
            display: flex;
            transition: box-shadow 0.3s;
        }

        .feature-box:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }

        .feature-icon-wrap {
            flex-shrink: 0;
            margin-right: 16px;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg { width: 22px; height: 22px; }
        
        .icon-green { background-color: #dcfce7; color: #00a651; }
        .icon-blue { background-color: #dbeafe; color: #3b82f6; }
        .icon-red { background-color: #fee2e2; color: #e3242b; }
        .icon-purple { background-color: #f3e8ff; color: #a855f7; }

        .feature-info h3 { font-size: 16px; font-weight: bold; color: #0f172a; margin-bottom: 4px; }
        .feature-info p { font-size: 14px; color: #334155; line-height: 1.6; }

        .faq-section { padding: 16px 0 32px; }
        
        .contact-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 16px;
        }

        .btn-contact {
            background-color: #00a651;
            color: #ffffff;
            padding: 8px 32px;
            border-radius: 999px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            margin-bottom: 24px;
        }

        .btn-contact:hover {
            background-color: #008f46;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .btn-contact-title { font-size: 16px; font-weight: bold; }
        .btn-contact-desc { font-size: 12px; font-weight: normal; opacity: 0.9; margin-top: 2px; }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        details {
            background-color: #ffffff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        details[open] { outline: 1px solid rgba(0, 166, 81, 0.2); }
        
        summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            font-size: 15px;
            font-weight: bold;
            color: #0f172a;
            cursor: pointer;
            list-style: none;
            transition: background-color 0.3s;
        }

        summary::-webkit-details-marker { display: none; }
        summary:hover { background-color: #f8fafc; }

        .faq-icon {
            transition: transform 0.3s;
            display: flex;
            color: #64748b;
        }

        details[open] summary .faq-icon { transform: rotate(180deg); color: #00a651; }

        .faq-content {
            padding: 8px 16px 16px;
            font-size: 14px;
            color: #334155;
            border-top: 1px solid #f1f5f9;
            line-height: 1.6;
        }

        .faq-content ul, .faq-content ol { padding-left: 20px; margin-top: 8px; }
        .faq-content li { margin-bottom: 6px; }
        .faq-content a { color: #f47f24; }
        .faq-content a:hover { text-decoration: underline; }
        .font-semibold { font-weight: bold; color: #0f172a; }
        .block { display: block; }
        .mb-1 { margin-bottom: 6px; }
        .mt-2 { margin-top: 8px; }
        .space-y-4 > div { margin-bottom: 16px; }
        .space-y-4 > div:last-child { margin-bottom: 0; }

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

        @media (max-width: 768px) {
            .hero-title { font-size: 26px; }
            .hero-desc { padding: 0 12px; }
            .hero-actions { flex-direction: column; padding: 0 24px; gap: 12px; }
            .btn-hero-primary, .btn-hero-upgrade { width: 100%; text-align: center; }
            .stats { flex-direction: column; gap: 16px; padding-top: 16px; }
            .stat-divider { display: none; }
            .features-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .hero { padding: 24px 0 16px; }
            .hero-title { font-size: 22px; }
            .hero-desc { font-size: 15px; margin-bottom: 16px; padding: 0; }
            
            .hero-actions { padding: 0 16px; margin-bottom: 24px; gap: 12px; }
            .btn-hero-primary, .btn-hero-upgrade { padding: 10px 0; font-size: 15px; }
            
            .stats { gap: 12px; padding-top: 12px; }
            .stat-val { font-size: 18px; }
            
            .section { padding: 24px 0; }
            .section-title { font-size: 22px; margin-bottom: 16px; }
            
            .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
            .pricing-card { padding: 16px; }
            .pricing-card.active { padding: 15px; } 
            .badge-gift { right: -30px; } 
            
            .features-grid { gap: 12px; }
            .feature-box { padding: 12px; }
            .feature-icon-wrap { margin-right: 12px; }
            .feature-info h3 { font-size: 15px; }
            
            .faq-section { padding: 16px 0 24px; }
            .btn-contact { padding: 8px 24px; width: 100%; max-width: 280px; }
            summary { padding: 12px; font-size: 14px; }
            .faq-content { padding: 8px 12px 12px; font-size: 13px; }
        }
