
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-dark {
    display: none;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #e20808;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #e20808;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-btn {
    background: #e20808;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(226, 8, 8, 0.3);
}

.header-btn:hover {
    background: #c00606;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 8, 8, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 140px 0 100px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::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"><stop offset="0" stop-color="%23fd5"/><stop offset="1" stop-color="%23fc0" stop-opacity="0"/></radialGradient></defs><g opacity=".1"><circle cx="200" cy="200" r="200" fill="url(%23a)"/><circle cx="800" cy="800" r="200" fill="url(%23a)"/></g></svg>') no-repeat;
    background-size: cover;
    opacity: 0.05;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(226, 8, 8, 0.1);
    color: #e20808;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(226, 8, 8, 0.2);
}

.trust-badge i {
    color: #ffc107;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight {
    color: #e20808;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e20808, #ff6b6b);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.benefit i {
    color: #28a745;
    font-size: 1.1rem;
}

.hero-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(226, 8, 8, 0.1);
    position: relative;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #e20808, #ff6b6b);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.guarantee-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #e20808;
    box-shadow: 0 0 0 3px rgba(226, 8, 8, 0.1);
    transform: translateY(-2px);
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(226, 8, 8, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #c00606, #a00505);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(226, 8, 8, 0.4);
}

.social-proof {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.social-proof small {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.disclaimer {
    margin-top: 1rem;
    text-align: center;
}

.disclaimer small {
    color: #28a745;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
}

.urgency-timer {
    margin-top: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.75rem;
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.urgency-timer small {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

#countdown {
    font-weight: 800;
    color: #ffc107;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

/* Live Notifications */
.live-notifications {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    z-index: 999;
    max-width: 350px;
    transform: translateX(-400px) scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.live-notifications.show {
    transform: translateX(0) scale(1);
    opacity: 1;
    animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
               glow 2s ease-in-out infinite alternate;
}

.live-notifications.hide {
    transform: translateX(-400px) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.notification-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    animation: textFadeIn 0.8s ease 0.2s both;
}

.live-notifications::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #28a745, #20c997, #17a2b8, #20c997, #28a745);
    background-size: 300% 300%;
    border-radius: 17px;
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 0.8;
}

.live-notifications::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.8);
}

@keyframes bounceIn {
    0% {
        transform: translateX(-400px) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translateX(10px) scale(1.05);
        opacity: 0.8;
    }
    70% {
        transform: translateX(-5px) scale(0.98);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    }
    100% {
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5), 0 5px 15px rgba(40, 167, 69, 0.3);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.8);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Social Proof Banner */
.social-proof-banner {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    padding: 3rem 0;
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.proof-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.proof-item span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    justify-items: center;
}

/* Center odd items in grids for better symmetry */
.steps:has(.step:nth-child(5):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.steps:has(.step:nth-child(6):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* When there are 5 items, center the last one */
.steps .step:nth-child(5):last-child {
    grid-column: span 2;
    max-width: 250px;
    justify-self: center;
}

/* When there are 6 items, center last 2 */
.steps .step:nth-child(5):nth-last-child(2),
.steps .step:nth-child(6):last-child {
    justify-self: center;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #e20808;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    border: 3px solid rgba(226, 8, 8, 0.1);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    transform: translateY(-5px);
}

.step h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Center odd items for better symmetry */
.features .feature:nth-child(4):last-child {
    grid-column: span 2;
    max-width: 300px;
    justify-self: center;
}

.feature {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 8, 8, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(226, 8, 8, 0.1), rgba(226, 8, 8, 0.05));
    color: #e20808;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.feature h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: #fff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e20808, #c00606);
    opacity: 0;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: #e20808;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: #e20808;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(226, 8, 8, 0.15);
}

.pricing-card.featured::before {
    opacity: 1;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.plan-badge.recommended {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.pricing-card h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-original {
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e20808;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.price-note {
    color: #28a745;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li i {
    color: #28a745;
    font-size: 1rem;
}

.plan-button {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-button:hover {
    background: linear-gradient(135deg, #c00606, #a00505);
    transform: translateY(-2px);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.pricing-guarantee p {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 8, 8, 0.05);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.client-info strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    font-weight: 600;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #fff;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #c00606, #a00505);
}

.faq-item p {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
    display: none;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #e20808 0%, #c00606 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::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"><stop offset="0" stop-color="%23fff"/><stop offset="1" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><g opacity=".1"><circle cx="200" cy="200" r="200" fill="url(%23a)"/><circle cx="800" cy="800" r="200" fill="url(%23a)"/></g></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-form {
    max-width: 400px;
    margin: 0 auto;
}

.final-form input {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.2);
    color: #333;
}

.final-form input:focus {
    background: #fff;
    border-color: rgba(255,255,255,0.8);
}

.final-form .cta-button {
    background: #333;
    color: white;
}

.final-form .cta-button:hover {
    background: #222;
    transform: translateY(-3px);
}

.final-disclaimer {
    margin-top: 3rem;
    position: relative;
}

.final-disclaimer small {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e20808;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Thank You Page Styles */
.thank-you-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.thank-you-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.next-steps {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.steps-list {
    display: grid;
    gap: 2rem;
}

.steps-list .step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.steps-list .step-number {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.contact-info {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-item i {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.additional-services {
    margin-bottom: 3rem;
}

.additional-services h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card i {
    color: #e20808;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #e20808;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #c00606;
}

/* Trademark Page Styles */
.trademark-hero {
    background: linear-gradient(135deg, #e20808 0%, #c00606 100%);
    color: white;
}

.trademark-hero .trust-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trademark-hero .hero-text h1 {
    color: white;
}

.trademark-hero .highlight {
    color: #ffc107;
}

.trademark-hero .highlight::after {
    background: linear-gradient(90deg, #ffc107, #ffeb3b);
}

.trademark-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.trademark-hero .benefit {
    color: rgba(255, 255, 255, 0.9);
}

.trademark-hero .benefit i {
    color: #ffc107;
}

.why-trademark {
    padding: 100px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.trademark-steps .step-icon {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
}

.trademark-steps .step:hover .step-icon {
    background: linear-gradient(135deg, #c00606, #e20808);
}

.trademark-pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.trademark-classes {
    padding: 100px 0;
    background: #fff;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Center odd items for better symmetry */
.classes-grid .class-card:nth-child(6):last-child {
    grid-column: span 2;
    max-width: 200px;
    justify-self: center;
}

.class-card {
    background: linear-gradient(135deg, #e20808, #c00606);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(226, 8, 8, 0.3);
}

.class-card::after {
    content: 'Click to Register';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.class-card:hover::after {
    bottom: 0;
}

.class-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffc107;
}

.class-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.class-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal Styles for Class Card CTAs */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    max-width: 520px;
    width: 100%;
    position: relative;
    animation: slideUpBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 8, 8, 0.1);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e20808, #c00606, #ff6b6b);
    background-size: 200% 200%;
    animation: gradientFlow 3s ease-in-out infinite;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(226, 8, 8, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #e20808;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.modal-close:hover {
    background: #e20808;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(226, 8, 8, 0.3);
}

.modal h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.modal h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e20808, #ff6b6b);
    border-radius: 2px;
}

.modal p {
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
}

.modal .contact-form {
    margin-bottom: 0;
}

.modal .contact-form input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(226, 8, 8, 0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
}

.modal .contact-form input:focus {
    background: #fff;
    border-color: #e20808;
    box-shadow: 0 0 0 4px rgba(226, 8, 8, 0.1);
    transform: translateY(-2px);
}

.modal .cta-button {
    background: linear-gradient(135deg, #e20808, #c00606);
    box-shadow: 0 10px 30px rgba(226, 8, 8, 0.3);
    font-size: 1.1rem;
    padding: 1.3rem 2rem;
    position: relative;
    overflow: hidden;
}

.modal .cta-button::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 ease;
}

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

.modal .cta-button:hover {
    background: linear-gradient(135deg, #c00606, #a00505);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(226, 8, 8, 0.4);
}

@keyframes fadeIn {
    0% { 
        opacity: 0; 
        backdrop-filter: blur(0px);
    }
    100% { 
        opacity: 1; 
        backdrop-filter: blur(10px);
    }
}

@keyframes slideUpBounce {
    0% { 
        transform: translateY(60px) scale(0.8); 
        opacity: 0; 
    }
    50% { 
        transform: translateY(-10px) scale(1.02); 
        opacity: 0.8; 
    }
    100% { 
        transform: translateY(0) scale(1); 
        opacity: 1; 
    }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Exit Intent Modal Styles */
.exit-intent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
    padding: 20px;
}

.exit-intent-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    position: relative;
    animation: slideUpBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 8, 8, 0.1);
    overflow: hidden;
}

.exit-intent-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #e20808, #c00606, #ff6b6b, #ffc107);
    background-size: 300% 300%;
    animation: gradientFlow 4s ease-in-out infinite;
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(226, 8, 8, 0.1);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #e20808;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.exit-intent-close:hover {
    background: #e20808;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(226, 8, 8, 0.4);
}

.exit-intent-content h3 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.exit-intent-content h3::after {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.exit-intent-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.exit-intent-content p strong {
    color: #e20808;
    font-weight: 700;
    font-size: 1.3rem;
}

.exit-intent-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.exit-intent-form input {
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(226, 8, 8, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-align: center;
}

.exit-intent-form input:focus {
    outline: none;
    border-color: #e20808;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(226, 8, 8, 0.1);
    transform: translateY(-2px);
}

.exit-intent-form .cta-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 1.3rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.exit-intent-form .cta-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.5s ease;
}

.exit-intent-form .cta-button:hover::before {
    left: 100%;
}

.exit-intent-form .cta-button:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header .container {
        padding: 0.75rem 20px;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-form {
        padding: 2rem;
    }
    
    .social-proof-banner .proof-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .thank-you-hero h1 {
        font-size: 2.2rem;
    }
    
    .steps-list .step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .live-notifications {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
        padding: 0.75rem 1rem;
        transform: translateY(200px) scale(0.9);
        opacity: 0;
    }
    
    .live-notifications.show {
        transform: translateY(0) scale(1);
        opacity: 1;
        animation: slideUpMobile 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                   glow 2s ease-in-out infinite alternate;
    }
    
    .live-notifications.hide {
        transform: translateY(200px) scale(0.9);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }

    @keyframes slideUpMobile {
        0% {
            transform: translateY(200px) scale(0.8);
            opacity: 0;
        }
        60% {
            transform: translateY(-10px) scale(1.02);
            opacity: 0.8;
        }
        100% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }
    
    .notification-text {
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .social-proof-banner .proof-items {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .thank-you-hero h1 {
        font-size: 1.8rem;
    }
    
    .next-steps,
    .contact-info {
        padding: 2rem;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Modal Styles */
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        max-width: 100%;
    }
    
    .modal h3 {
        font-size: 1.6rem;
    }
    
    .modal p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .modal .contact-form input {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .modal .cta-button {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }
    
    .exit-intent-content {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        max-width: 100%;
    }
    
    .exit-intent-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .exit-intent-content h3::after {
        right: -20px;
        font-size: 1.5rem;
    }
    
    .exit-intent-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .exit-intent-content p strong {
        font-size: 1.2rem;
    }
    
    .exit-intent-form input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .exit-intent-form .cta-button {
        padding: 1.1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .logo-light {
        display: none;
    }
    
    .logo-dark {
        display: block;
    }
}
