﻿:root {
            --primary-video: #FF0000;      /* YouTube Red */
            --secondary-video: #9146FF;    /* Twitch Purple */
            --accent-video: #00C2FF;       /* TikTok Blue */
            --teal-video: #20C997;         /* Creative Teal */
            --light-bg: #f8f9fa;
            --dark-bg: #0f1419;
            --text-color: #141619;
            --light-text: #657786;
            --border-color: #e1e8ed;
            --card-bg: rgba(255, 255, 255, 0.98);
            --video-bg: #0f1419;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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-video), var(--secondary-video));
            color: white;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(255, 0, 0, 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, #ffcccc);
            -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: #ffcccc;
        }
        
        .sub-tagline {
            font-size: 1.2rem;
            color: #ff9999;
            max-width: 800px;
            margin: 0 auto 25px;
            line-height: 1.8;
        }
        
        .video-platforms {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
            position: relative;
        }
        
        .platform {
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 24px;
            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;
        }
        
        .platform:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* Plans Section */
        .plans-section, .policies-section {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: var(--primary-video);
            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-video), var(--accent-video));
            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(255, 0, 0, 0.1);
        }
        
        .plan-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(255, 0, 0, 0.2);
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--accent-video), #00C2FF);
            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, var(--secondary-video), #9146FF);
            color: white;
        }
        
        .plan-card:nth-child(3) .plan-badge {
            background: linear-gradient(135deg, var(--dark-bg), #141619);
            color: white;
        }
        
        .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, var(--primary-video), #CC0000);
        }
        
        .growth-plan .plan-header {
            background: linear-gradient(135deg, var(--secondary-video), #7B2CBF);
        }
        
        .scale-plan .plan-header {
            background: linear-gradient(135deg, var(--dark-bg), #141619);
        }
        
        .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-video);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 0, 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-video), var(--accent-video));
            -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-video);
            font-size: 1.2rem;
            background: rgba(255, 0, 0, 0.1);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ideal-result {
            background: linear-gradient(135deg, #fff5f5, #f0f9ff);
            border-radius: 15px;
            padding: 25px;
            margin-top: 25px;
            border-left: 5px solid var(--accent-video);
            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(--accent-video);
            display: block;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .video-count {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-video), var(--accent-video));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            margin: 5px 0;
            font-size: 0.9rem;
        }
        
        /* Video Preview */
        .video-preview {
            background: var(--video-bg);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid var(--primary-video);
            position: relative;
            overflow: hidden;
            min-height: 120px;
        }
        
        .video-screen {
            width: 100%;
            height: 60px;
            background: linear-gradient(135deg, #1a1a1a, #333333);
            border-radius: 8px;
            margin: 10px 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .video-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .control-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        /* 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(255, 0, 0, 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 #FF0000;
            background: linear-gradient(135deg, #fff5f5, #ffeaea);
        }
        
        .policy-no-trial h3 {
            color: #FF0000;
        }
        
        .policy-working {
            border-left: 8px solid var(--teal-video);
            background: linear-gradient(135deg, #f0fff4, #e8ffe8);
        }
        
        .policy-working h3 {
            color: var(--teal-video);
        }
        
        .policy-notes {
            border-left: 8px solid var(--secondary-video);
            background: linear-gradient(135deg, #f8f9fa, #f0f4f8);
        }
        
        .policy-notes h3 {
            color: var(--secondary-video);
        }
        
        /* 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(255, 0, 0, 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: #ffbaba;
            font-weight: 500;
            margin-bottom: 25px;
            font-style: italic;
            position: relative;
        }
        
        .contact-info {
            margin-top: 25px;
            font-size: 1.1rem;
            color: #ff9999;
            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-video), var(--secondary-video));
            color: white;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--secondary-video), var(--primary-video));
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary-video);
            border: 3px solid var(--primary-video);
        }
        
        .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;
            }
            
            .video-platforms {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .platform {
                width: 250px;
            }
        }
        
        /* Video Icons */
        .fa-video { color: var(--primary-video); }
        .fa-film { color: var(--secondary-video); }
        .fa-music { color: var(--accent-video); }
        .fa-magic { color: var(--teal-video); }
        .fa-play-circle { color: #FF0000; }
        
        .highlight {
            background: linear-gradient(135deg, var(--primary-video), var(--accent-video));
            -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); }
        }
        
        /* Video Counter */
        .video-counter {
            position: absolute;
            top: -15px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-video), var(--accent-video));
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 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); }
        }
        
        /* Quality Metrics */
        .quality-metric {
            margin: 20px 0;
        }
        
        .metric-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--text-color);
        }
        
        .quality-bar {
            height: 8px;
            background: #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .quality-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 1.5s ease;
        }
        
        .starter-plan .quality-fill { width: 75%; background: var(--primary-video); }
        .growth-plan .quality-fill { width: 85%; background: var(--secondary-video); }
        .scale-plan .quality-fill { width: 98%; background: var(--dark-bg); }
        
        /* Revision Indicator */
        .revision-indicator {
            display: inline-block;
            background: rgba(255, 0, 0, 0.1);
            color: var(--primary-video);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-left: 5px;
        }
        
        /* Video Animation */
        @keyframes playPulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); opacity: 0.7; }
        }

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

