/* ========================================
   LANDING PAGE OPTIMIZATIONS
   Breathing room luxury + Perfect grids
   ======================================== */

/* ========================================
   CREDIBILITY SECTION - 3 CARDS GRID
   ======================================== */
.credibility-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 968px) {
    .credibility-grid-three {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   PROBLEM SECTION - 6 CARDS (3x2 GRID)
   ======================================== */
.problem-cards-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 968px) {
    .problem-cards-six {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 568px) {
    .problem-cards-six {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SOLUTION GRID - 4 ITEMS IN ONE ROW
   ======================================== */
.solution-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .solution-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 568px) {
    .solution-grid-four {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   QUICK SYSTEM SECTION
   ======================================== */
.quick-system {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 50%, var(--bg-white) 100%);
}

.quick-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.quick-phase {
    background: var(--bg-white);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all var(--transition-base);
    position: relative;
}

.quick-phase:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.quick-phase.highlight-phase {
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--bg-white) 100%);
    border-color: var(--primary-light);
}

.phase-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.quick-phase h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quick-phase p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.phase-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-badge.revenue {
    background: #f39c12;
}

.system-cta {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--tertiary);
    border-radius: 20px;
}

.system-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .quick-phases {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   QUICK PRICING SECTION
   ======================================== */
.quick-pricing {
    padding: 6rem 0;
    background: var(--tertiary);
}

.quick-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.quick-tier {
    background: var(--bg-white);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
}

.quick-tier:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.quick-tier.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.quick-tier.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quick-tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-tier h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quick-tier-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.quick-tier-price span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-tertiary);
}

.quick-tier-for {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--secondary);
}

.quick-tier-highlights {
    list-style: none;
    text-align: left;
    margin: 0 0 2rem 0;
    padding: 0;
}

.quick-tier-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.quick-tier-highlights i {
    color: var(--primary);
    font-size: 1rem;
}

.quick-tier-spots {
    background: var(--tertiary);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.quick-tier-spots.urgent {
    background: rgba(241, 196, 15, 0.15);
    color: #d68910;
}

.quick-tier-spots.critical {
    background: rgba(231, 76, 60, 0.15);
    color: #c0392b;
}

.pricing-cta {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 20px;
    border: 2px solid var(--primary-light);
}

.pricing-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .quick-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-tier.featured {
        transform: scale(1);
    }
    
    .quick-tier.featured:hover {
        transform: translateY(-8px);
    }
}

/* ========================================
   TESTIMONIALS - 5 CARDS (3 + 2 LAYOUT)
   ======================================== */
.testimonials-grid-five {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonials-grid-five .testimonial-card:nth-child(4),
.testimonials-grid-five .testimonial-card:nth-child(5) {
    grid-column: span 1;
}

.testimonials-grid-five .testimonial-card:nth-child(4) {
    grid-column: 1 / 2;
}

.testimonials-grid-five .testimonial-card:nth-child(5) {
    grid-column: 3 / 4;
}

/* Create center gap for last 2 cards */
@media (min-width: 969px) {
    .testimonials-grid-five {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .testimonials-grid-five .testimonial-card:nth-child(1),
    .testimonials-grid-five .testimonial-card:nth-child(2),
    .testimonials-grid-five .testimonial-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .testimonials-grid-five .testimonial-card:nth-child(4) {
        grid-column: 2 / 4;
    }
    
    .testimonials-grid-five .testimonial-card:nth-child(5) {
        grid-column: 4 / 6;
    }
}

@media (max-width: 968px) {
    .testimonials-grid-five {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid-five .testimonial-card:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 568px) {
    .testimonials-grid-five {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TESTIMONIALS STATS - 4 ITEMS
   ======================================== */
.testimonials-stats-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
}

.testimonials-stats-four .stat-item {
    text-align: center;
}

.testimonials-stats-four .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.testimonials-stats-four .stat-label {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 968px) {
    .testimonials-stats-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2.5rem;
    }
}

@media (max-width: 568px) {
    .testimonials-stats-four {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BREATHING ROOM LUXURY SPACING
   ======================================== */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

.hero {
    padding: 4rem 0;
    min-height: 80vh;
}

.problem-section {
    padding: 7rem 0;
}

.lead-magnet-section {
    padding: 7rem 0;
}

.testimonials {
    padding: 7rem 0;
}

.faq {
    padding: 7rem 0;
}

.final-cta {
    padding: 7rem 0;
}

/* Increase gaps */
.hero-cta {
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stats {
    gap: 3rem;
    padding-top: 2.5rem;
    margin-top: 0.5rem;
}

/* Card hover states more subtle */
.credibility-card:hover,
.problem-card:hover,
.quick-phase:hover,
.quick-tier:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Higher contrast for better readability */
.section-subtitle,
.hero-subtitle,
.lead-text {
    color: #333333;
}

.text-secondary {
    color: #4a4a4a;
}

p {
    color: #4a4a4a;
}

/* Button contrast */
.btn-secondary {
    border-width: 2px;
    font-weight: 700;
}

/* Link contrast */
a {
    color: inherit;
}

.card-link {
    color: white;
    font-weight: 700;
}

/* Form labels stronger */
.form-group label {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stats more readable */
.stat-label {
    color: #4a4a4a;
    font-weight: 700;
}

/* FAQ text darker */
.faq-answer p {
    color: #333333;
}

/* Testimonial text darker */
.testimonial-text {
    color: #333333;
}

/* Footer link visibility */
.footer a {
    color: #4a4a4a;
}

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

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }
}
