/* Bluenergy Landing Page Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px rgba(251,191,36,0.5); }
    50% { text-shadow: 0 0 10px rgba(251,191,36,0.7); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #22d3ee 100%);
    color: white;
    text-align: center;
    padding: 16px 0;
    font-weight: 900;
    font-size: 18px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
    animation: pulse 2s infinite;
    border-bottom: 3px solid #fbbf24;
    position: relative;
    overflow: hidden;
}

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

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

.countdown-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    padding: 12px 24px;
    border-radius: 25px;
    margin-left: 12px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    border: 2px solid white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: countdownPulse 1s infinite alternate;
}

@keyframes countdownPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Header */
.header {
    background: #1e3a8a;
    padding: 20px 0;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #22d3ee 100%);
    color: white;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile-First Trust Badge */
.mobile-trust-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-rating .stars {
    display: flex;
    gap: 2px;
}

.badge-rating .rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 4px;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-main-text {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 0.9;
}

.hero-highlight {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    animation: glow 2s ease-in-out infinite;
    line-height: 0.9;
    margin: 8px 0;
}

.hero-subtitle-main {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-top: 16px;
    opacity: 0.95;
}

/* Mobile Value Props */
.mobile-value-props {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.value-prop-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 140px;
}

.value-prop-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.value-prop-card.featured {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    color: #1e3a8a;
    border: 2px solid #22d3ee;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.prop-icon {
    flex-shrink: 0;
}

.prop-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prop-title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.prop-detail {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Value Props */
.value-props {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Hero Social Proof */
.hero-social-proof {
    margin: 24px 0;
}

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

.stars {
    display: flex;
    gap: 4px;
}

.star {
    color: #fbbf24;
    width: 20px;
    height: 20px;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
}

.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
    padding: 32px 64px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 4px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.cta-button.primary-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 48px;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.cta-subtext {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Mobile CTA Button */
.mobile-cta-button {
    display: block;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    padding: 24px;
    margin: 32px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid white;
    position: relative;
    overflow: hidden;
}

.mobile-cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-arrow {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

.cta-subtext {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Urgency */
.mobile-urgency {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    border: 3px solid #22d3ee;
    border-radius: 20px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.urgency-text {
    font-size: 1.125rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timer-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.timer-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1e3a8a;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    border: 2px solid white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: countdownPulse 1s infinite alternate;
}

/* Mobile Social Proof */
.mobile-social-proof {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 153, 255, 0.7);
}

.cta-bounce {
    animation: bounce 1s infinite;
    display: inline-block;
    margin-left: 12px;
}

.hero-urgency {
    margin-top: 32px;
    font-size: 1.25rem;
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-proof::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.social-proof-content {
    position: relative;
    z-index: 10;
}

.social-proof-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.title-highlight {
    color: #22d3ee;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.social-proof-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 48px;
    font-weight: 500;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item.featured-stat {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px solid #22d3ee;
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

.stat-item.featured-stat:hover {
    box-shadow: 0 12px 35px rgba(34, 211, 238, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #22d3ee;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.stat-detail {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-display .stars {
    display: flex;
    gap: 2px;
}

.rating-display .star {
    color: #fbbf24;
    width: 16px;
    height: 16px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    padding: 0;
    border: none;
    transition: none;
}

.trust-indicators .trust-item:hover {
    transform: none;
    background: none;
    box-shadow: none;
}

.trust-indicators .trust-item i {
    color: #22d3ee;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
    padding: 80px 0;
    position: relative;
}

.benefits::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e5e7eb" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.benefits-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.title-icon {
    font-size: 2.5rem;
    margin-right: 12px;
    vertical-align: middle;
}

.benefits-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #1d4ed8;
    box-shadow: 0 15px 40px rgba(29, 78, 216, 0.15);
}

.benefit-card.featured-benefit {
    border: 3px solid #22d3ee;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

.benefit-card.featured-benefit:hover {
    border-color: #06b6d4;
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.3);
}

.benefit-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #22d3ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(34, 211, 238, 0.3);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
}

.highlight-text {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1em;
}

.benefit-value {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid #22d3ee;
}

.benefits-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 10;
}

.benefits-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 48px;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, white 0%, #f0f9ff 100%);
    padding: 80px 0;
}

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

.pricing-subtitle {
    font-size: 1.25rem;
    color: #dc2626;
    font-weight: bold;
    margin-bottom: 24px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

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

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 3px solid #d1d5db;
    transition: all 0.3s ease;
}

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

.pricing-savings {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}

.pricing-savings.featured-savings {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    font-size: 1rem;
    padding: 8px 16px;
}

.pricing-card:hover {
    transform: scale(1.05);
    border-color: #dc2626;
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.2);
}

.pricing-card.featured {
    border-color: #dc2626;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.1);
    border-color: #dc2626;
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.3);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
    padding: 8px 32px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1d4ed8;
    text-align: center;
    margin-bottom: 12px;
}

.pricing-price {
    text-align: center;
    margin: 20px 0;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: bold;
    color: #dc2626;
    display: block;
}

.pricing-price .period {
    font-size: 1.125rem;
    color: #6b7280;
    margin-left: 4px;
}

.price-breakdown {
    margin-top: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.pricing-period {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.pricing-period.featured-text {
    color: #dc2626;
    font-weight: bold;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item.featured {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px;
    border-radius: 8px;
    margin: 8px 0;
    border: none;
}

.feature-item.featured i {
    color: #dc2626;
}

.pricing-button {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(90deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
    padding: 16px 32px;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 4px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-button span {
    font-size: 1.25rem;
    font-weight: bold;
}

.pricing-button small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.5px;
}

.pricing-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.5);
}

.pricing-button.featured-button {
    padding: 20px 32px;
}

/* Pricing Trust Indicators */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    background: white;
    padding: 64px 0;
    text-align: center;
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    color: #374151;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.urgency-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.urgency-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 32px;
    border-radius: 16px;
    max-width: 800px;
    margin: 40px auto;
    border: 2px solid white;
}

.urgency-box-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.urgency-box-text {
    font-size: 1.25rem;
    margin-top: 16px;
}

.urgency-warning {
    font-size: 1.25rem;
    margin-top: 40px;
}

/* Contact Form */
.contact-form-section {
    background: #f9fafb;
    padding: 80px 0;
}

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

.form-subtitle {
    font-size: 1.25rem;
    color: #dc2626;
    font-weight: bold;
    margin-bottom: 32px;
}

/* Form Progress */
.form-progress {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #1d4ed8;
    color: white;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

.step-header h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.step-header p {
    color: #6b7280;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #374151;
    font-size: 1.125rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 1.125rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #3b82f6;
}

.checkbox-group {
    margin-top: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1.125rem;
}

.checkbox-input {
    width: 20px;
    height: 20px;
}

.privacy-link {
    color: #1e3a8a;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #1d4ed8;
}

.submit-button {
    width: 100%;
    background: linear-gradient(90deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
    padding: 24px;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 153, 255, 0.6);
}

.form-security {
    text-align: center;
    margin-top: 20px;
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Offer Options */
.offer-options {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.offer-option {
    display: block;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.offer-option:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.offer-option.recommended {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.offer-option.recommended:hover {
    border-color: #b91c1c;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2);
}

.radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.offer-option:has(.radio-input:checked) {
    border-color: #1d4ed8;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 4px 6px rgba(29, 78, 216, 0.2);
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-badge {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.option-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1e3a8a;
}

.option-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
}

.option-savings {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 32px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    color: #6b7280;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #e5e7eb;
    color: #374151;
}

.next-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #1d4ed8 0%, #1e3a8a 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(29, 78, 216, 0.3);
}

/* Summary Box */
.summary-box {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-box h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: #6b7280;
    font-weight: 500;
}

.summary-item span:last-child {
    color: #1e3a8a;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 80px 0;
}

.faq-item {
    background: #f9fafb;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    background: #1e3a8a;
    color: white;
    padding: 24px;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #1d4ed8;
}

.faq-answer {
    padding: 24px;
    font-size: 1.125rem;
    line-height: 1.6;
    display: none;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, #1e1b4b 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0 120px 0;
    text-align: center;
    margin-bottom: 100px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
}

.footer-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.footer-urgency {
    font-size: 1.25rem;
    margin-top: 40px;
}

.footer-info {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.footer-email {
    color: #22d3ee;
    text-decoration: underline;
}

.footer-email:hover {
    color: #06b6d4;
}

.text-cyan-400 {
    color: #22d3ee;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #22d3ee 100%);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -8px 32px rgba(30, 58, 138, 0.3);
    animation: pulse 2s infinite;
    border-top: 3px solid #fbbf24;
}

.floating-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    padding: 18px 40px;
    font-size: 1.375rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.floating-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.floating-button:hover::before {
    left: 100%;
}

.floating-button:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.7);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.floating-button:active {
    transform: scale(1.02) translateY(0);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Mobile Hero */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-main-text {
        font-size: 2.5rem;
    }
    
    .hero-highlight {
        font-size: 3rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.25rem;
    }
    
    .mobile-value-props {
        flex-direction: column;
        gap: 12px;
        margin: 24px 0;
    }
    
    .value-prop-card {
        min-width: auto;
        padding: 12px 16px;
    }
    
    .mobile-cta-button {
        padding: 20px;
        margin: 24px 0;
    }
    
    .cta-text {
        font-size: 1.25rem;
    }
    
    .cta-subtext {
        gap: 6px;
    }
    
    .cta-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .mobile-urgency {
        padding: 16px;
        margin: 20px 0;
    }
    
    .urgency-text {
        font-size: 0.875rem;
    }
    
    .timer-value {
        font-size: 1.125rem;
        padding: 3px 8px;
    }
    
    .mobile-social-proof {
        gap: 16px;
        margin-top: 20px;
    }
    
    .proof-item {
        font-size: 0.8rem;
    }
    
    /* Mobile Social Proof */
    .social-proof-title {
        font-size: 2rem;
    }
    
    .social-proof-subtitle {
        font-size: 1.125rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 24px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        gap: 24px;
        margin-top: 24px;
    }
    
    /* Mobile Benefits */
    .benefits-header {
        margin-bottom: 48px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .benefits-subtitle {
        font-size: 1.125rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 1.25rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
    
    /* Mobile Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-trust {
        gap: 24px;
        margin-top: 32px;
    }
    
    /* Mobile Form */
    .contact-form {
        padding: 24px;
    }
    
    .form-progress {
        gap: 20px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .offer-options {
        gap: 12px;
    }
    
    .offer-option {
        padding: 16px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .back-button,
    .next-button {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Footer */
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-subtitle {
        font-size: 1.25rem;
    }
    
    /* Mobile Floating Button */
    .floating-button {
        padding: 16px 32px;
        font-size: 1.25rem;
        max-width: 280px;
        gap: 10px;
    }
    
    .floating-cta {
        padding: 16px 0;
    }
    
    /* Mobile Footer Spacing */
    .footer-cta {
        padding: 60px 0 100px 0;
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 20px 32px;
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    /* Small Mobile Footer Spacing */
    .footer-cta {
        padding: 50px 0 90px 0;
        margin-bottom: 70px;
    }
}
