﻿:root {
            --primary-blue: #1877f2;
            --secondary-blue: #4267b2;
            --accent-purple: #8a3ab9;
            --accent-pink: #e1306c;
            --light-bg: #f0f2f5;
            --text-color: #1c1e21;
            --light-text: #65676b;
            --border-color: #dddfe2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(24, 119, 242, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            position: relative;
        }
        
        .tagline {
            font-size: 1.3rem;
            opacity: 0.95;
            font-weight: 300;
            position: relative;
            margin-bottom: 20px;
        }
        
        .platform-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            position: relative;
        }
        
        .platform-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
        }
        
        /* Plans Section */
        .plans-section, .trials-section {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2rem;
            color: var(--secondary-blue);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--accent-purple));
            border-radius: 2px;
        }
        
        /* Plans Container */
        .plans-container, .trials-container {
            display: flex;
            /* flex-wrap: wrap; */
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .plan-card, .trial-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .plan-card:hover, .trial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent-pink);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 1;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .plan-card:nth-child(2) .plan-badge {
            background: #ffd700;
            color: #333;
        }
        
        .plan-header, .trial-header {
            padding: 25px;
            text-align: center;
            color: white;
        }
        
        .starter-plan .plan-header {
            background: linear-gradient(135deg, #11998e, #38ef7d);
        }
        
        .growth-plan .plan-header {
            background: linear-gradient(135deg, var(--accent-purple), var(--primary-blue));
        }
        
        .scale-plan .plan-header {
            background: linear-gradient(135deg, var(--secondary-blue), #1c1e21);
        }
        
        .plan-title, .trial-title {
            font-size: 1.6rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .plan-price, .trial-price {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .plan-period, .trial-period {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .plan-best-for {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 8px 15px;
            border-radius: 20px;
            margin-top: 15px;
            font-size: 0.9rem;
            display: inline-block;
        }
        
        .plan-content, .trial-content {
            padding: 25px;
        }
        
        .plan-section, .trial-section {
            margin-bottom: 25px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-blue);
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
            font-weight: 600;
        }
        
        .features-list {
            list-style-type: none;
        }
        
        .features-list li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
            border-bottom: 1px dashed #eee;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }
        
        .not-included-list li:before {
            content: '✗';
            color: #ff4757;
        }
        
        /* Important Notes */
        .important-notes {
            background-color: #fff8e1;
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            border-left: 6px solid #ff9800;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .important-notes h3 {
            color: #ff9800;
            margin-bottom: 20px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Trial Policy Section */
        .trial-policy-intro {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 6px solid var(--primary-blue);
        }
        
        .trial-policy-intro h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .trial-warning {
            background-color: #ffeaa7;
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
            border-left: 4px solid #fdcb6e;
        }
        
        .trial-warning i {
            color: #e17055;
            margin-right: 10px;
        }
        
        /* Trial Cards */
        .trial-starter .trial-header {
            background: linear-gradient(135deg, #11998e, #38ef7d);
        }
        
        .trial-growth .trial-header {
            background: linear-gradient(135deg, var(--accent-purple), var(--primary-blue));
        }
        
        .trial-scale .trial-header {
            background: linear-gradient(135deg, var(--secondary-blue), #1c1e21);
        }
        
        .trial-terms {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-top: 25px;
            border-left: 4px solid var(--primary-blue);
        }
        
        .trial-terms h4 {
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: 50px;
            color: var(--light-text);
            border-top: 1px solid var(--border-color);
        }
        
        .company-name {
            font-size: 2rem;
            color: var(--secondary-blue);
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .company-tagline {
            font-size: 1.2rem;
            color: var(--accent-purple);
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .contact-info {
            margin-top: 20px;
            font-size: 0.95rem;
        }
        
        /* Controls */
.btn {
            padding: 16px 32px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 200px;
            justify-content: center;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
        }
        
        .btn-secondary {
            background: white;
            color: var(--secondary-blue);
            border: 2px solid var(--secondary-blue);
        }
        
        .btn-secondary:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .plans-container, .trials-container {
                flex-direction: column;
                align-items: center;
            }
            
            .plan-card, .trial-card {
                width: 100%;
                max-width: 400px;
            }
.btn {
                width: 100%;
                max-width: clamp(140px, 22vw, 240px);
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        /* Meta Branding */
        .meta-icon {
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        
        .instagram-icon {
            color: var(--accent-pink);
            font-size: 1.2rem;
        }

.logo-img {
    width: clamp(140px, 22vw, 240px);
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.price-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #05070d, #0b1220 45%, #111827);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.price-footer a {
    color: #7dd3fc;
    font-weight: 600;
    text-decoration: none;
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

