/* ==========================================
   The Real Johnson - Handyman Page 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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Header ========== */
.page-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFA500;
    text-decoration: none;
}

.page-header nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFA500;
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(135deg, #FFA500 0%, #ff8c00 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-box {
    text-align: center;
}

.stat-big {
    font-size: 4rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 10px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #FFA500;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-white {
    position: relative;
    background: #fff;
    color: #FFA500;
    font-weight: 700;
}

.btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #222;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* ========== Section Common ========== */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-note {
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    margin-top: 40px;
    padding: 20px;
    background: #fff8f0;
    border-radius: 8px;
}

/* ========== Requirements Grid ========== */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.requirement-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: #FFA500;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.requirement-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: bold;
}

.requirement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
}

.requirement-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== Why Section ========== */
.why-section {
    background: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== Growth Path Section ========== */
.growth-path-section {
    background: #fff;
}

.growth-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.growth-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.growth-number {
    width: 60px;
    height: 60px;
    background: #FFA500;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.growth-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.growth-step p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.growth-step ul {
    text-align: left;
    margin-left: 20px;
}

.growth-step li {
    margin-bottom: 10px;
    color: #444;
}

.growth-arrow {
    font-size: 3rem;
    color: #FFA500;
    font-weight: bold;
}

/* ========== FAQ Section ========== */
.faq-section {
    background: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-note a {
    color: #FFA500;
    text-decoration: none;
    font-weight: 600;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* ========== Footer ========== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer nav {
    display: flex;
    gap: 25px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFA500;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-big {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .growth-arrow {
        display: none;
    }

    .growth-steps {
        flex-direction: column;
    }

    .page-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .page-header nav {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer nav {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons,
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .requirements-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
