﻿:root {
            --primary-social: #1DA1F2;  /* Twitter blue */
            --secondary-social: #E1306C; /* Instagram pink */
            --accent-social: #4267B2;    /* Facebook blue */
            --whatsapp-green: #25D366;
            --youtube-red: #FF0000;
            --light-bg: #f8f9fa;
            --dark-bg: #0f172a;
            --text-color: #1c1e21;
            --light-text: #65676b;
            --border-color: #dddfe2;
            --card-bg: rgba(255, 255, 255, 0.98);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        header {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, var(--primary-social), var(--secondary-social));
            color: white;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(29, 161, 242, 0.25);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        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.08' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            position: relative;
            background: linear-gradient(135deg, #fff, #a5d8ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .tagline {
            font-size: 1.4rem;
            opacity: 0.95;
            font-weight: 300;
            position: relative;
            margin-bottom: 10px;
            color: #e0f2ff;
        }
        
        .sub-tagline {
            font-size: 1.2rem;
            color: #bae6fd;
            max-width: 800px;
            margin: 0 auto 25px;
            line-height: 1.8;
        }
        
        .social-platforms {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
            position: relative;
        }
        
        .social-platform {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-platform:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.3);
        }
        
        .social-platform.facebook { background: rgba(66, 103, 178, 0.3); }
        .social-platform.instagram { background: rgba(225, 48, 108, 0.3); }
        .social-platform.twitter { background: rgba(29, 161, 242, 0.3); }
        .social-platform.linkedin { background: rgba(0, 119, 181, 0.3); }
        .social-platform.youtube { background: rgba(255, 0, 0, 0.3); }
        .social-platform.whatsapp { background: rgba(37, 211, 102, 0.3); }
        
        /* Plans Section */
        .plans-section, .policies-section {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: var(--primary-social);
            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-social), var(--secondary-social));
            border-radius: 2px;
        }
        
        /* Plans Container */
        .plans-container {
            display: flex;
            /* flex-wrap: wrap; */
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .plan-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(29, 161, 242, 0.1);
        }
        
        .plan-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(29, 161, 242, 0.2);
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--secondary-social), #fd1d1d);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 0.7rem;
            font-weight: bold;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .plan-card:nth-child(2) .plan-badge {
            background: linear-gradient(135deg, #ffd700, #ff9500);
            color: #333;
        }
        
        .plan-card:nth-child(3) .plan-badge {
            background: linear-gradient(135deg, var(--accent-social), var(--primary-social));
        }
        
        .plan-header {
            padding: 35px 25px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .plan-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
        }
        
        .starter-plan .plan-header {
            background: linear-gradient(135deg, #1DA1F2, #1C9CEA);
        }
        
        .growth-plan .plan-header {
            background: linear-gradient(135deg, #E1306C, #C13584);
        }
        
        .scale-plan .plan-header {
            background: linear-gradient(135deg, #0f172a, #1e293b);
        }
        
        .plan-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 800;
            position: relative;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .plan-price {
            font-size: 2.1rem;
            font-weight: 900;
            margin-bottom: 5px;
            position: relative;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .plan-price::before {
            content: '₹';
            font-size: 2rem;
            vertical-align: super;
            margin-right: 2px;
        }
        
        .plan-period {
            font-size: 1.2rem;
            opacity: 0.9;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .plan-best-for {
            background-color: rgba(255, 255, 255, 0.3);
            padding: 12px 20px;
            border-radius: 12px;
            margin-top: 15px;
            font-size: 1rem;
            display: inline-block;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .plan-content {
            padding: 35px 30px;
        }
        
        .plan-section {
            margin-bottom: 25px;
        }
        
        .section-subtitle {
            font-size: 1.4rem;
            color: var(--primary-social);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(29, 161, 242, 0.2);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .section-subtitle i {
            font-size: 1.2rem;
            background: linear-gradient(135deg, var(--primary-social), var(--secondary-social));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .features-list {
            list-style-type: none;
        }
        
        .features-list li {
            padding: 14px 0;
            position: relative;
            padding-left: 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 1.05rem;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            color: var(--primary-social);
            font-size: 1.2rem;
            background: rgba(29, 161, 242, 0.1);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ideal-result {
            background: linear-gradient(135deg, #f0f9ff, #e0f7ff);
            border-radius: 15px;
            padding: 25px;
            margin-top: 25px;
            border-left: 5px solid var(--primary-social);
            position: relative;
            overflow: hidden;
        }
        
        .ideal-result::before {
            content: '🎯';
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            opacity: 0.1;
        }
        
        .ideal-result strong {
            color: var(--primary-social);
            display: block;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .post-count {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-social), var(--secondary-social));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            margin: 5px 0;
        }
        
        /* Policies Section */
        .policy-section {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(29, 161, 242, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .policy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
        }
        
        .policy-section h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .policy-no-trial {
            border-left: 8px solid #e53e3e;
            background: linear-gradient(135deg, #fff5f5, #ffeaea);
        }
        
        .policy-no-trial h3 {
            color: #e53e3e;
        }
        
        .policy-working {
            border-left: 8px solid #25D366;
            background: linear-gradient(135deg, #f0fff4, #e8ffe8);
        }
        
        .policy-working h3 {
            color: #25D366;
        }
        
        .policy-notes {
            border-left: 8px solid var(--accent-social);
            background: linear-gradient(135deg, #f8f9fa, #f0f4f8);
        }
        
        .policy-notes h3 {
            color: var(--accent-social);
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 50px 20px;
            margin-top: 50px;
            color: white;
            background: linear-gradient(135deg, #05070d, #0b1220 45%, #111827);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(66, 103, 178, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .footer::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");
        }
        
        .company-name {
            font-size: 2.8rem;
            color: white;
            font-weight: 900;
            margin-bottom: 15px;
            position: relative;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .company-tagline {
            font-size: 1.4rem;
            color: #9ac5fd;
            font-weight: 500;
            margin-bottom: 25px;
            font-style: italic;
            position: relative;
        }
        
        .contact-info {
            margin-top: 25px;
            font-size: 1.1rem;
            color: #bfdbfe;
            position: relative;
        }
        
        .contact-info a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        /* Controls */
.btn {
            padding: 18px 36px;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 220px;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-social), var(--secondary-social));
            color: white;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--secondary-social), var(--primary-social));
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(29, 161, 242, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary-social);
            border: 3px solid var(--primary-social);
        }
        
        .btn-secondary:hover {
            background: #f8f9fa;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .plans-container {
                flex-direction: column;
                align-items: center;
            }
            
            .plan-card {
                width: 100%;
                max-width: 400px;
            }
.btn {
                width: 100%;
                max-width: 320px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 1.9rem;
            }
            
            .social-platforms {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .social-platform {
                width: 200px;
            }
        }
        
        /* Social Media Icons */
        .fa-facebook { color: var(--accent-social); }
        .fa-instagram { color: var(--secondary-social); }
        .fa-twitter { color: var(--primary-social); }
        .fa-linkedin { color: #0077b5; }
        .fa-youtube { color: var(--youtube-red); }
        .fa-whatsapp { color: var(--whatsapp-green); }
        
        .highlight {
            background: linear-gradient(135deg, blue, Orange);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .star-icon {
            color: #ffd700;
            animation: pulse 2s infinite;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        /* Social Media Posts Counter */
        .post-counter {
            position: absolute;
            top: -15px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-social), var(--secondary-social));
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
            z-index: 2;
        }
        
        /* Floating elements */
        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            z-index: 0;
        }
        
        .fi1 { top: 20%; left: 10%; animation: float 25s infinite linear; }
        .fi2 { bottom: 25%; right: 8%; animation: float 30s infinite linear reverse; }
        .fi3 { top: 40%; right: 15%; animation: float 20s infinite linear; }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(40px, 40px) rotate(360deg); }
        }

.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;
}

