/* ===== AZUBI LANDING PAGE STYLES ===== */

/* Spacing fix for fixed nav + typography */
body {
    padding-top: 60px;
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HERO SECTION ===== */
.azubi-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.azubi-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2.5rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== PAIN POINTS SECTION ===== */
.pain-points {
    background: white;
    padding: 80px 2rem;
}

.pain-points h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem 0;
    color: var(--black);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0 0 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pain-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    transition: all var(--transition);
    text-align: center;
    cursor: pointer;
}

.pain-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--black);
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--gray-100);
    padding: 80px 2rem;
}

.process-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--black);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.process-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--black);
}

.step-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.75rem 0;
}

.step-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-arrow {
    display: none;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr auto 1fr auto 1fr;
    }
    
    .timeline-arrow {
        display: block;
    }
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
    background: white;
    padding: 80px 2rem;
}

.social-proof-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--black);
}

.testimonial-card {
    background: linear-gradient(135deg, #f7f7f7 0%, #fafaf8 100%);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.testimonial-card blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--black);
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-info span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.badge-success {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.testimonial-note a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.testimonial-note a:hover {
    text-decoration: underline;
}

/* ===== OBJECTIONS/FAQ SECTION ===== */
.objections-section {
    background: var(--gray-100);
    padding: 80px 2rem;
}

.objections-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
}

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--black);
}

.faq-item p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ===== WHY FREE SECTION ===== */
.why-free-section {
    background: white;
    padding: 80px 2rem;
}

.why-free-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--black);
}

.why-free-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.why-free-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
}

.why-free-content strong {
    color: var(--black);
}

.highlight-stat {
    background: linear-gradient(135deg, #f7f7f7 0%, #fafaf8 100%);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-stat em {
    font-style: italic;
    color: var(--black);
}

/* ===== QUIZ SECTION ===== */
.quiz-section {
    background: var(--gray-100);
    padding: 80px 2rem;
}

.quiz-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin: 0 0 1rem 0;
    color: var(--black);
}

.quiz-intro {
    text-align: center;
    color: var(--gray-600);
    margin: 0 0 3rem 0;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quiz-question h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: var(--black);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.quiz-option:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.quiz-option input[type="radio"] {
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.quiz-option span {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.quiz-option input[type="radio"]:checked + span {
    color: var(--black);
    font-weight: 600;
}

/* Quiz Result */
.quiz-result {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fffbf0 0%, #faf8f5 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    text-align: center;
}

.result-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--gold);
}

.result-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.result-cta h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--black);
}

.result-cta p {
    color: var(--gray-600);
    margin: 0 0 1.5rem 0;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 2rem;
    text-align: center;
}

.final-cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.final-cta-section > div > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem 0;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-body);
    display: inline-block;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary,
.btn--primary {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-primary:hover,
.btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-secondary,
.btn--secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-large {
    padding: 1rem 2.5rem !important;
    font-size: 1.05rem !important;
    border-radius: 8px !important;
    display: inline-block;
    text-decoration: none !important;
    transition: all var(--transition);
}

/* ===== FOOTER ===== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-body);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }

    .azubi-hero {
        padding: 60px 1.5rem;
        min-height: 50vh;
    }

    .pain-points,
    .process-section,
    .social-proof-section,
    .objections-section,
    .why-free-section,
    .quiz-section,
    .final-cta-section {
        padding: 60px 1.5rem;
    }

    .cards-grid {
        gap: 1.5rem;
    }

    .quiz-container {
        padding: 1.75rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .azubi-hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .pain-card h3 {
        font-size: 1.2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        width: 100%;
        gap: 1rem;
        flex-wrap: wrap;
    }
}
