/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #f1f5f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Typography */
h1, h2 {
    color: #004aad;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #004aad, #2563eb);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-section h1 {
    color: white;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Three Column Layout */
.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.column-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    background: #004aad;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: transform 0.3s ease;
}

.icon {
    width: 24px;
    height: 24px;
    stroke: white;
}

.column-card:hover .icon-circle {
    transform: scale(1.1);
}

.column-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.column-card h3 {
    color: #004aad;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.column-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}


/* QR Section */
.qr-section {
    text-align: center;
}

.qr-instruction {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #333;
}

.scan-badge {
    display: inline-block;
    background: #22c55e;
    color: white;
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.qr-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.qr-image {
    width: 200px;
    height: 200px;
    border: 3px solid #004aad;
    border-radius: 12px;
    padding: 15px;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats-section {
    text-align: center;
    background: #f9fafb;
    border-left: 4px solid #22c55e;
}

.stat-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 400;
}

.big-stat {
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
    margin: 1rem 0;
    display: block;
    text-align: center;
}

/* CTA Section */

.cta-text {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin: 0;
}

.cta-section {
    background: #004aad;
    color: white;
    text-align: center;
    border-radius: 12px;
    margin: 2rem auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 2rem;
}

/* Optin Page Specific Styles */
.optin-headline-section {
    text-align: center;
}

.optin-headline-section h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #004aad;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.subhead {
    font-size: 1.3rem;
    color: #555;
    text-align: center;
    margin-top: 15px;
    font-weight: 400;
}

/* Benefits Section - 2x2 Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #004aad;
}

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

.benefit-card:hover .icon-circle {
    transform: scale(1.1);
}


.benefit-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Form Styles */
.form-section {
    background: white;
    border: 2px solid #004aad;
}

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

.form-input {
    display: block;
    width: 100%;
    margin: 15px 0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    background-color: #e5e7eb;
    color: #6c757d;
    cursor: not-allowed;
    font-family: 'Poppins', sans-serif;
}

.form-input:disabled {
    background-color: #e5e7eb;
    color: #6c757d;
}

.form-button {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    background-color: #6c757d;
    color: white;
    cursor: not-allowed;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-button:disabled {
    background-color: #6c757d;
}

.form-button:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Demo Notice */
.demo-notice-section {
    background: #f9fafb;
    border-left: 4px solid #004aad;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.demo-notice {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 400;
}

/* Footer */
.footer-section {
    background: #004aad;
    color: white;
    text-align: center;
    border-radius: 12px;
    margin: 2rem auto;
}

.footer-text {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .three-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .qr-image {
        width: 150px;
        height: 150px;
    }
    
    .form-input, .form-button {
        padding: 12px;
        font-size: 1rem;
    }
    
    .big-stat {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    
    h1 {
        font-size: 1.8rem;
    }
    
    .qr-image {
        width: 120px;
        height: 120px;
    }
    
    .card {
        padding: 1rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .icon {
        width: 20px;
        height: 20px;
    }
}
