/* Service Framework Page Specific Styles */

/* Version Badge */
.version-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-subtle) 100%);
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text);
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Executive Summary */
.executive-summary {
    margin: 3rem auto;
    max-width: 800px;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* Framework Overview */
.framework-overview {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-subtle);
    border-radius: 16px;
}

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

.phase-card {
    background: white;
    border: 2px solid rgba(15, 31, 51, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 8px 24px rgba(15, 31, 51, 0.1);
}

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

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

.phase-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

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

/* Phase Preview Section */
.phase-preview {
    margin: 3rem auto;
    max-width: 800px;
    padding: 2rem 0;
    border-top: 2px solid var(--bg-subtle);
    position: relative;
}

.key-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-subtle);
    border-radius: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem;
}

.detail-label {
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.detail-value {
    color: var(--text);
    text-align: right;
}

/* Deliverables Preview with Fade */
.deliverables-preview {
    position: relative;
}

.deliverables-preview ul {
    padding-left: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Much more dramatic fade overlay starting very high up */
.phase-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 10%,
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.3) 35%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.85) 65%, 
        rgba(255, 255, 255, 0.95) 75%, 
        white 85%, 
        white 100%);
    box-shadow: 0 -30px 60px rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 10;
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, white 80%);
    pointer-events: none;
}

/* Email Gate Section */
.email-gate-section {
    background: var(--navy);
    color: white;
    padding: 4rem 0;
    margin-top: 3rem;
    position: relative;
}

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

.gate-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.gate-subtitle {
    font-size: 1.125rem;
    color: white !important;
    margin-bottom: 2rem;
}

.what-you-get {
    text-align: left;
    margin: 2rem 0;
}

.what-you-get h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Email Form */
.email-form {
    margin: 2rem 0;
}

.form-wrapper {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.15);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.privacy-notice {
    font-size: 0.875rem;
    color: white !important;
    margin-top: 1rem;
}

.privacy-notice a {
    color: white !important;
    text-decoration: underline;
}


/* Full Content Section */
.full-content {
    margin-top: 3rem;
    padding: 3rem 0;
}

.hidden {
    display: none;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Phase Sections */
.phase-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--bg-subtle);
}

.phase-section:first-child {
    border-top: none;
}

.phase-section h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.phase-section h3 {
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.phase-section h4 {
    color: var(--text);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.phase-section ul {
    padding-left: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Aftercare Timeline */
.aftercare-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.aftercare-month {
    padding: 1.5rem;
    background: var(--bg-subtle);
    border-radius: 12px;
    border-left: 4px solid var(--blue);
}

.aftercare-month h5 {
    color: var(--navy);
    margin-bottom: 0.75rem;
}

/* Important Note */
.important-note {
    padding: 1rem;
    background: rgba(214, 158, 46, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Boundaries Section */
.boundaries-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--bg-subtle);
}

/* Difference Section */
.difference-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--bg-subtle);
}

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

.what-we-are,
.what-we-are-not {
    padding: 1.5rem;
    background: var(--bg-subtle);
    border-radius: 12px;
}

.what-we-are {
    border-left: 4px solid var(--green);
}

.what-we-are-not {
    border-left: 4px solid var(--text-light);
}

.difference-section ol {
    padding-left: 1.5rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--bg-subtle);
}

.faq-item {
    margin: 1.5rem 0;
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* Framework CTA */
.framework-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-subtle);
    border-radius: 16px;
    text-align: center;
}

.cta-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.cta-button.primary:hover {
    background: #1a2a3d;
    transform: translateY(-2px);
}

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

.cta-button.secondary:hover {
    background: var(--navy);
    color: white;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-note a {
    color: var(--navy);
    text-decoration: underline;
}

/* Success Message */
.success-message {
    padding: 4rem 0;
    text-align: center;
}

.message-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(56, 161, 105, 0.1);
    border: 2px solid var(--green);
    border-radius: 16px;
}

.message-content h2 {
    color: var(--green);
    margin-bottom: 1rem;
}

#userEmail {
    font-weight: 600;
    color: var(--navy);
}

.next-steps {
    margin-top: 1.5rem;
    text-align: left;
    line-height: 1.8;
}

.next-steps a {
    color: var(--blue);
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-indicators {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .form-wrapper {
        flex-direction: column;
    }
    
    .email-input,
    .submit-button {
        width: 100%;
    }
    
    .cta-options {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

