/* ============================================
   PRICING PAGE STYLES
   ============================================ */

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   PRICING HERO SECTION
   ============================================ */

.pricing-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PROOF SPRINT SECTION
   ============================================ */

.proof-sprint-section {
    padding: 4rem 0;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.proof-sprint-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--blue);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

.sprint-guarantee-top {
    background: var(--green);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.6;
}

.sprint-guarantee-banner {
    background: var(--green);
    color: white;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .sprint-guarantee-banner {
        padding: 1rem;
        font-size: 0.8125rem;
        line-height: 1.6;
    }
}

.sprint-content {
    padding: 3rem;
}

.sprint-price-block {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.sprint-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
}

.sprint-timeline {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.sprint-details h3,
.sprint-process h3,
.sprint-guarantee h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

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

.sprint-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

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

.sprint-process {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-subtle);
    border-radius: 8px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.sprint-cta-section {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-primary {
    background: var(--navy);
    color: white;
}

.cta-primary:hover {
    background: #1a2f4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 31, 51, 0.2);
}

.cta-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.cta-secondary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   DIRECT BUILD SECTION
   ============================================ */

.direct-build-section {
    padding: 4rem 0;
    background: var(--bg-subtle);
    scroll-margin-top: 80px;
}

.direct-build-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--navy);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 31, 51, 0.1);
}

.build-content {
    padding: 3rem;
}

.build-price-block {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.build-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
}

.build-timeline {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.build-details h3,
.build-guarantee h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

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

.build-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

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

.pricing-clarity {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-subtle);
    border-radius: 8px;
}

.pricing-clarity h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    text-align: center;
}

.pricing-examples {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-example {
    padding: 1rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid var(--blue);
}

.price-example dt {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.price-example dt strong {
    font-size: 1.5rem;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
}

.price-example dd {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.scoping-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text);
    font-style: italic;
    margin: 0;
}

.build-details {
    margin: 2rem 0;
}

.build-details h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.support-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: var(--text);
}

.build-guarantee {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-subtle);
    border-radius: 8px;
    border-left: 4px solid var(--navy);
}

.build-cta-section {
    text-align: center;
    margin-top: 2rem;
}

.build-cta-section .scroll-to-proof {
    color: var(--blue);
    text-decoration: underline;
    font-weight: 500;
}

.build-cta-section .scroll-to-proof:hover {
    color: var(--navy);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: 4rem 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-card {
    background: var(--bg-subtle);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    font-family: 'Montserrat', sans-serif;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.process-card p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.6;
}

.process-note {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-subtle);
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    text-align: center;
}

.process-note p {
    margin: 0.5rem 0;
    color: var(--text);
    font-size: 0.9375rem;
}

.process-note p strong {
    color: var(--navy);
}

/* ============================================
   WHY TWISTHAND
   ============================================ */

.why-twisthand-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

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

.why-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-subtle);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 31, 51, 0.1);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.why-item p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 4rem 0;
    background: var(--bg-subtle);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-subtle);
}

.faq-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.expanded {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta-section {
    background: var(--navy);
    color: white;
    padding: 4rem 0;
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-lead {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.cta-details {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--navy);
}

.cta-large:hover {
    background: var(--bg-subtle);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cta-trust-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.cta-trust-signals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 900px) and (max-width: 1199px) {
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .sprint-price,
    .build-price {
        font-size: 2.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-examples {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-lead {
        font-size: 1.25rem;
    }
    
    .cta-large {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .whisper {
        animation: none;
        opacity: 1;
    }
    
    .breathing {
        animation: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}