/* Premium Landing Page CSS - Gama7 Company */

/* CSS Variables for Premium Theme */
:root {
    /* Premium Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gold-gradient: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    
    /* Premium Colors */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #00f2fe;
    --gold-color: #ffd89b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 120px 0;
    --card-padding: 40px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* Premium Container */
.container-premium {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Trust Bar Premium */
.trust-bar {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trust-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trust-icon {
    font-size: 16px;
}

/* Header Premium */
.header-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-premium {
    height: 60px;
    width: auto;
}

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin: 0;
}

.company-tagline {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.header-credentials {
    display: flex;
    gap: 32px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-icon {
    font-size: 24px;
    padding: 8px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-text {
    display: flex;
    flex-direction: column;
}

.credential-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
}

.credential-subtitle {
    font-size: 12px;
    color: var(--gray-600);
}

/* Hero Section Premium */
.hero-premium {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 60px 0; /* Reduzindo o padding superior e inferior */
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight-premium {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-number {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px; /* Reduzindo a margem inferior */
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section Premium */
.video-section-premium {
    margin-top: 24px; /* Reduzindo a margem superior */
}

.video-container-premium {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Progress Indicators Premium */
.progress-indicators {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 32px;
}

.progress-ring {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-ring-svg {
    transform: rotate(-90deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 8;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.5s ease;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.5));
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percentage {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.progress-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.engagement-meter {
    flex: 1;
    max-width: 300px;
}

.meter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.meter-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    margin-bottom: 8px;
}

.meter-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
}

.meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Video Player Premium */
.video-player-premium {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: var(--gray-900);
}

.main-video-premium {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Controls Premium */
.video-controls-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(10px);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.video-player-premium:hover .video-controls-premium {
    opacity: 1;
}

.control-btn-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    padding: 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.control-btn-premium:hover {
    background: rgba(0, 242, 254, 0.2);
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.control-btn-premium svg {
    width: 20px;
    height: 20px;
}

.progress-section-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-display-premium {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.progress-bar-premium {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill-premium {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    transition: width 0.1s ease;
    width: 0%;
    position: relative;
}

.progress-fill-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s infinite;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: opacity var(--transition-normal);
    left: 0%;
}

.progress-bar-premium:hover .progress-handle {
    opacity: 1;
}

.volume-section-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.volume-slider {
    width: 80px;
}

.volume-input {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
}

.volume-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

/* Video Overlay Premium */
.video-overlay-premium {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.overlay-content {
    display: flex;
    gap: 16px;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.viewer-icon {
    font-size: 14px;
}

/* Video Stats Premium */
.video-stats-premium {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
}

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

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hidden Content */
.hidden-content {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Proof Section Premium */
.social-proof-premium {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.social-proof-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title-premium {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle-premium {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-premium {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-placeholder {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.rating {
    font-size: 16px;
}

.testimonial-card-premium blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-card-premium blockquote::before {
    content: '"';
    font-size: 48px;
    color: var(--primary-color);
    position: absolute;
    top: -16px;
    left: -8px;
    font-family: var(--font-display);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    background: var(--success-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Section Premium */
.pricing-premium {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.pricing-card-premium {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--card-padding);
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.pricing-card-premium:hover::before {
    transform: scaleX(1);
}

.pricing-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.pricing-card-premium.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--white) 0%, #f8fdff 100%);
}

.pricing-card-premium.featured::before {
    transform: scaleX(1);
    background: var(--accent-gradient);
}

.card-header-premium {
    text-align: center;
    margin-bottom: 32px;
}

.package-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.package-badge.premium {
    background: var(--accent-gradient);
}

.card-header-premium h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.package-description {
    font-size: 16px;
    color: var(--gray-600);
}

.price-section-premium {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.price-original {
    font-size: 18px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    color: var(--gray-600);
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-900);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card-premium.featured .amount {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-installments {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.discount-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--error-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.features-premium {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--gray-700);
}

.feature-icon {
    font-size: 18px;
    color: var(--success-color);
    flex-shrink: 0;
}

.cta-btn-premium {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 18px 24px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.cta-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn-premium:hover::before {
    left: 100%;
}

.cta-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-btn-premium.featured {
    background: var(--accent-gradient);
}

.btn-text {
    font-weight: 700;
}

.btn-icon {
    font-size: 18px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
}

.guarantee-icon {
    font-size: 16px;
}

/* Urgency Section */
.urgency-section {
    background: var(--secondary-gradient);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.urgency-content {
    position: relative;
    z-index: 1;
}

.urgency-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

#spotsLeft {
    font-weight: 800;
    color: var(--gold-color);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: var(--radius-lg);
    min-width: 80px;
}

.timer-item span {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
}

.timer-item label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Section Premium */
.form-section-premium {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.form-container-premium {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 64px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.form-container-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
}

.form-header-premium {
    text-align: center;
    margin-bottom: 48px;
}

.form-header-premium h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.form-header-premium p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.selected-package-display {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
}

.lead-form-premium {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group-premium {
    position: relative;
}

.form-group-premium label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
    width: 100%;
    padding: 16px 48px 16px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 16px;
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--gray-400);
    pointer-events: none;
}

.form-group-premium:has(label) .input-icon {
    top: calc(50% + 16px);
}

.form-group-premium textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-premium {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 20px 32px;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

.submit-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn-premium:hover::before {
    left: 100%;
}

.submit-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-footer-premium {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.security-icon {
    font-size: 16px;
    color: var(--success-color);
}

/* Guarantee Section Premium */
.guarantee-section-premium {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.guarantee-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="150" cy="150" r="80" fill="url(%23b)"/><circle cx="850" cy="200" r="120" fill="url(%23b)"/><circle cx="300" cy="800" r="100" fill="url(%23b)"/></svg>');
    opacity: 0.3;
}

.guarantee-content-premium {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.guarantee-icon-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.shield-icon {
    font-size: 80px;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-content-premium h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.guarantee-content-premium p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.9;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

.guarantee-feature .feature-icon {
    font-size: 20px;
    color: var(--success-color);
}

/* Footer Premium */
.footer-premium {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.company-details p {
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    color: var(--gray-400);
    margin-bottom: 12px;
    transition: color var(--transition-normal);
}

.footer-section li:hover {
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
}

.contact-icon {
    font-size: 18px;
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-500);
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
        --card-padding: 32px;
    }
    
    .progress-indicators {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .engagement-meter {
        max-width: 400px;
    }
    
    .video-stats-premium {
        gap: 24px;
    }
    
    .pricing-grid-premium {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card-premium.featured {
        transform: none;
        margin: 24px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --card-padding: 24px;
    }
    
    .trust-items {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .header-credentials {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .video-controls-premium {
        padding: 16px;
        gap: 12px;
    }
    
    .control-btn-premium {
        width: 40px;
        height: 40px;
    }
    
    .video-stats-premium {
        flex-direction: column;
        gap: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container-premium {
        padding: 32px 24px;
    }
    
    .guarantee-features {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .countdown-timer {
        gap: 16px;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 12px;
    }
    
    .timer-item span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container-premium {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .video-overlay-premium {
        top: 16px;
        left: 16px;
        right: 16px;
    }
    
    .overlay-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .urgency-content h3 {
        font-size: 24px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cta-btn-premium,
    .submit-btn-premium {
        border: 2px solid var(--white);
    }
    
    .pricing-card-premium {
        border-width: 3px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Footer Logo Link Styles */
.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-logo-link h3 {
    margin-top: 12px;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-logo-link:hover h3 {
    color: var(--primary);
}

.footer-logo {
    filter: brightness(1) contrast(1);
    transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
    filter: brightness(1.1) contrast(1.1);
}

