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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0F172A;
    color: #E2E8F0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    border-bottom: 1px solid rgba(74, 143, 255, 0.2);
}

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

/* Jr's Headshot - Professional Circular Style */
.headshot-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.headshot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4A8FFF;
    box-shadow: 0 10px 40px rgba(74, 143, 255, 0.3),
                0 0 0 8px rgba(74, 143, 255, 0.1);
    transition: all 0.3s ease;
}

.headshot:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(74, 143, 255, 0.4),
                0 0 0 8px rgba(74, 143, 255, 0.15);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4A8FFF;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: #94A3B8;
    margin-bottom: 35px;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(74, 143, 255, 0.1);
    border: 2px solid #4A8FFF;
    border-radius: 12px;
    color: #4A8FFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #4A8FFF;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 143, 255, 0.3);
}

.contact-btn i {
    font-size: 1.1rem;
}

/* Offer Section */
.offer {
    padding: 80px 20px;
    background: #1E293B;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4A8FFF 0%, #3B82F6 100%);
    color: #FFFFFF;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #94A3B8;
    margin-bottom: 50px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(74, 143, 255, 0.05);
    border: 1px solid rgba(74, 143, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(74, 143, 255, 0.1);
    border-color: #4A8FFF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 143, 255, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A8FFF 0%, #3B82F6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #FFFFFF;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.benefit-card p {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.7;
}

/* Business Card Section */
.business-card {
    padding: 80px 20px;
    background: #0F172A;
}

.card-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(74, 143, 255, 0.05);
    border: 2px solid rgba(74, 143, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.card-content {
    text-align: left;
    margin-bottom: 30px;
}

.card-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(74, 143, 255, 0.1);
    font-size: 1.05rem;
}

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

.card-row i {
    width: 24px;
    color: #4A8FFF;
    font-size: 1.2rem;
}

.card-row a {
    color: #4A8FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-row a:hover {
    color: #60A5FA;
    text-decoration: underline;
}

.save-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4A8FFF 0%, #3B82F6 100%);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.save-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 143, 255, 0.4);
}

/* Lead Form Section */
.lead-form {
    padding: 80px 20px;
    background: #1E293B;
}

.demo-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(74, 143, 255, 0.05);
    border: 1px solid rgba(74, 143, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #E2E8F0;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.7);
    border: 2px solid rgba(74, 143, 255, 0.2);
    border-radius: 10px;
    color: #E2E8F0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4A8FFF;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 0 4px rgba(74, 143, 255, 0.1);
}

.form-group input::placeholder {
    color: #64748B;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #4A8FFF 0%, #3B82F6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 143, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #94A3B8;
    text-align: center;
}

/* Success Section */
.success-section {
    padding: 100px 20px;
    background: #0F172A;
    text-align: center;
}

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

.success-icon {
    font-size: 5rem;
    color: #10B981;
    margin-bottom: 30px;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.success-message {
    font-size: 1.15rem;
    color: #94A3B8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.success-message strong {
    color: #4A8FFF;
}

.next-steps {
    background: rgba(74, 143, 255, 0.05);
    border: 1px solid rgba(74, 143, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.next-steps ol {
    margin-left: 25px;
    color: #94A3B8;
    line-height: 2;
}

.next-steps li {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: #0A0F1E;
    text-align: center;
    color: #64748B;
    border-top: 1px solid rgba(74, 143, 255, 0.1);
}

.footer p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .headshot {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .demo-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .headshot {
        width: 130px;
        height: 130px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card-wrapper {
        padding: 25px;
    }
}