/* ============================================
   LESSON ZERO - SERVICES PAGE STYLES
   ============================================ */

/* ============================================
   SERVICES HERO SECTION
   ============================================ */
.services-hero {
    background: var(--blue-deep);
    padding: 10rem 2rem 6rem;
    text-align: center;
    position: relative;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.2s forwards;
}

.services-heading {
    font-family: rockwell, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.services-subheading {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--blue-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--blue-dark);
    padding: 6rem 2rem;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--blue-deep);
    border: 2px solid var(--grid-line);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-bright);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Featured card styling */
.pricing-card.featured {
    border-color: var(--yellow-accent);
    background: linear-gradient(135deg, var(--blue-deep) 0%, rgba(45, 90, 123, 0.3) 100%);
}

.pricing-card.featured:hover {
    border-color: var(--yellow-accent);
}

.featured-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow-accent);
    color: var(--blue-deep);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
}

/* Pricing header */
.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--grid-line);
}

.pricing-tier-name {
    font-family: rockwell, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue-light);
    margin-top: 0.5rem;
}

.price-number {
    font-family: rockwell, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--yellow-accent);
    line-height: 1;
}

.pricing-description {
    font-size: 1rem;
    color: var(--blue-light);
    line-height: 1.5;
}

/* Features section */
.pricing-features {
    flex-grow: 1;
}

.features-heading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow-accent);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 0.95rem;
    color: var(--blue-light);
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow-accent);
    font-weight: 700;
}

/* Ideal for section */
.pricing-ideal {
    background: rgba(74, 144, 184, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
}

.ideal-heading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 0.75rem;
}

.ideal-text {
    font-size: 0.9rem;
    color: var(--blue-light);
    line-height: 1.6;
}

/* Pricing button */
.pricing-button {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--yellow-accent);
    border: 2px solid var(--yellow-accent);
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: var(--yellow-accent);
    color: var(--blue-deep);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-button {
    background: var(--yellow-accent);
    color: var(--blue-deep);
}

.pricing-card.featured .pricing-button:hover {
    background: #fde047;
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.3);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--cream);
    padding: 6rem 2rem;
    color: var(--blue-deep);
}

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

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-header .section-label {
    color: var(--blue-mid);
}

.process-header .section-heading {
    color: var(--blue-deep);
}

.process-header .section-text {
    color: var(--blue-dark);
}

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

.process-step {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: rockwell, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-family: rockwell, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--blue-dark);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--blue-deep);
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    font-family: rockwell, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--blue-light);
    line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .services-hero {
        padding: 8rem 2rem 4rem;
    }

    .pricing-section {
        padding: 4rem 1.5rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding: 4rem 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-section {
        padding: 4rem 1.5rem;
    }

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