/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.btn-download {
    background: #2563eb;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-number.infinity {
    font-size: 2.5rem;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.lifetime-guarantee {
    margin-top: 30px;
}

.guarantee-badge {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
}

.guarantee-icon {
    font-size: 1.2rem;
}

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

/* Mockup */
.mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
    background: #f3f4f6;
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-content {
    padding: 30px;
}

.feature-preview {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.feature-preview h3 {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-preview p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card.premium {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

.feature-screenshot {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    background: white;
}

.feature-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-screenshot:hover img {
    transform: scale(1.02);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fbbf24;
    color: #1f2937;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Value Proposition */
.value-prop {
    padding: 80px 0;
    background: white;
}

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

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.value-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #374151;
}

/* Lifetime Commitment Section */
.lifetime-commitment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.commitment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.commitment-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.commitment-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.commitment-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.commitment-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.commitment-item p {
    color: #6b7280;
    line-height: 1.6;
}

.price-warning {
    max-width: 600px;
    margin: 0 auto;
}

.warning-badge {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.warning-icon {
    font-size: 2rem;
}

.warning-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.warning-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-card p {
    color: #6b7280;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.pricing-note {
    font-size: 0.9rem;
    color: #ef4444;
    margin-top: 15px;
    font-weight: 500;
}

.lifetime-text {
    color: #2563eb !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.spots-left {
    margin-top: 20px;
    padding: 15px;
    background: #fef3c7;
    border-radius: 10px;
    border: 2px solid #fbbf24;
    text-align: center;
}

.spots-text {
    font-size: 1rem;
    font-weight: 600;
    color: #d97706;
    text-align: center;
    line-height: 1.4;
}

/* Future Section */
.future {
    padding: 80px 0;
    background: white;
}

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

.future-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.future-card:hover {
    transform: translateY(-5px);
}

.future-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.future-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fbbf24;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-image {
        height: 50px;
        max-width: 200px;
    }
    
    .footer-logo-image {
        height: 40px;
        max-width: 180px;
    }
}

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

.feature-card,
.pricing-card,
.future-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Download Page Styles */
.download-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.download-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.download-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.download-header {
    background: #f8fafc;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.download-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.version-badge {
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.version-badge.premium {
    background: #2563eb;
}

.download-content {
    padding: 30px;
}

.download-content p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.download-features {
    list-style: none;
    margin-bottom: 30px;
}

.download-features li {
    padding: 8px 0;
    color: #374151;
    font-size: 1rem;
}

.download-cta {
    text-align: center;
}

.download-btn {
    width: 100%;
    margin-bottom: 15px;
}

.download-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.lifetime-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.2);
}

.lifetime-icon {
    font-size: 1.2rem;
}

.lifetime-text {
    font-size: 1rem;
}

.spots-remaining {
    margin-top: 15px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    border: 1px solid #fbbf24;
    text-align: center;
    font-size: 0.9rem;
    color: #d97706;
}

.spots-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d97706;
    text-align: center;
    line-height: 1.4;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.info-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.install-steps {
    list-style: decimal;
    padding-left: 20px;
}

.install-steps li {
    margin-bottom: 10px;
    color: #374151;
}

.requirements {
    list-style: none;
}

.requirements li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 20px;
}

.requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.support-options {
    list-style: none;
    margin-top: 15px;
}

.support-options li {
    padding: 8px 0;
    color: #374151;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Screenshots Showcase Section */
.screenshots-showcase {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.screenshot-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-item.premium {
    border: 2px solid #fbbf24;
}

.screenshot-container {
    position: relative;
    overflow: hidden;
}

.screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-container img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.screenshot-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

.screenshot-overlay .premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fbbf24;
    color: #1f2937;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive adjustments for screenshots */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .screenshot-overlay {
        position: relative;
        transform: none;
        background: #f8fafc;
        color: #1f2937;
        padding: 20px;
    }
    
    .screenshot-overlay h3 {
        color: #1f2937;
    }
    
    .screenshot-overlay p {
        color: #6b7280;
    }
    
    .feature-screenshot {
        margin: 15px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 

/* Payment Form Styles */
.payment-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.payment-form-section {
    padding: 60px 0;
    background: #f8fafc;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 10px;
}

.price-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
}

.payment-features {
    margin-bottom: 30px;
}

.payment-features h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 15px;
}

.payment-features ul {
    list-style: none;
}

.payment-features li {
    padding: 8px 0;
    color: #64748b;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 12px;
}

.card-element {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
}

.card-errors {
    color: #dc2626;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.btn-primary {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover:not(:disabled) {
    background: #1d4ed8;
}

.btn-primary:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.hidden {
    display: none;
}

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

.payment-security {
    margin-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.payment-security p {
    margin: 5px 0;
}

.payment-info-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-header h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 5px;
}

.info-text p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.spots-remaining {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 12px;
}

.spots-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    margin-bottom: 10px;
}

.spots-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.spots-text {
    font-size: 12px;
    opacity: 0.9;
}

.spots-remaining p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-form-card,
    .payment-info-card {
        padding: 30px 20px;
    }
    
    .payment-hero {
        padding: 100px 0 40px;
    }
    
    .payment-form-section {
        padding: 40px 0;
    }
} 

/* Payment Success Page Styles */
.success-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.success-details {
    padding: 60px 0;
    background: #f8fafc;
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.success-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.success-header {
    text-align: center;
    margin-bottom: 30px;
}

.success-header h2 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 10px;
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #10b981;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 5px;
}

.step-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.feature-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text {
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
}

.success-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.btn-primary {
    background: #10b981;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #059669;
}

.btn-secondary {
    background: transparent;
    color: #10b981;
    text-decoration: none;
    padding: 16px 24px;
    border: 2px solid #10b981;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #10b981;
    color: white;
}

.support-section {
    padding: 60px 0;
    background: white;
}

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

.support-content h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 15px;
}

.support-content > p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 40px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-option {
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.support-option h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 10px;
}

.support-option p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design for Success Page */
@media (max-width: 768px) {
    .success-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .success-card {
        padding: 30px 20px;
    }
    
    .success-hero {
        padding: 100px 0 40px;
    }
    
    .success-details {
        padding: 40px 0;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-icon {
        font-size: 60px;
    }
} 