/* Glass Umbrella Parents Landing Page - Glass Morphism Styling */

/* Global Parents Page Styles */
.parents-page {
    color: #EBEBEB;
    line-height: 1.6;
    background: linear-gradient(135deg,
        rgba(20, 20, 30, 0.95) 0%,
        rgba(40, 35, 50, 0.95) 25%,
        rgba(30, 25, 40, 0.95) 50%,
        rgba(45, 40, 55, 0.95) 75%,
        rgba(25, 20, 35, 0.95) 100%
    );
    min-height: 100vh;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.parents-hero {
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.25) 0%,
        rgba(30, 150, 252, 0.20) 50%,
        rgba(123, 68, 193, 0.25) 100%
    );
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #EBEBEB;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.hero-subtext {
    font-size: 1.5rem;
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(235, 235, 235, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
}

.star-rating {
    color: #9AD5CA;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.primary-cta {
    background: linear-gradient(135deg, #9AD5CA 0%, #7BC3D1 100%);
    color: #1A1A2E;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(154, 213, 202, 0.3);
    border: none;
    cursor: pointer;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(154, 213, 202, 0.5);
    color: #1A1A2E;
    text-decoration: none;
}

.primary-cta.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: #EBEBEB;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #EBEBEB;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Demo Preview */
.demo-preview {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.demo-image {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(154, 213, 202, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1A1A2E;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.play-overlay:hover .play-button {
    transform: scale(1.1);
    background: #9AD5CA;
}

/* Problem-Solution Section */
.problem-solution {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-solution h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #EBEBEB;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.problem-solution-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.problem-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.problem-side {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 100, 100, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 100, 100, 0.2);
}

.solution-side {
    text-align: center;
    padding: 2rem;
    background: rgba(154, 213, 202, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(154, 213, 202, 0.3);
}

.problem-side h3,
.solution-side h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #EBEBEB;
}

.problem-side p,
.solution-side p {
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 1rem;
}

.emoji-frustrated,
.emoji-bored,
.emoji-worried {
    font-size: 3rem;
    margin-top: 1rem;
}

.stat-highlight {
    background: linear-gradient(135deg, #9AD5CA 0%, #7BC3D1 100%);
    color: #1A1A2E;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
}

.solution-summary {
    text-align: center;
    background: rgba(154, 213, 202, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(154, 213, 202, 0.3);
}

.solution-summary h3 {
    font-size: 2rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.solution-summary p {
    font-size: 1.25rem;
    color: rgba(235, 235, 235, 0.9);
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
        rgba(30, 150, 252, 0.10) 0%,
        rgba(123, 68, 193, 0.15) 50%,
        rgba(30, 150, 252, 0.10) 100%
    );
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #EBEBEB;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
    font-size: 1.125rem;
    color: rgba(235, 235, 235, 0.9);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.parent-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.parent-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(154, 213, 202, 0.5);
}

.parent-name {
    font-weight: 700;
    color: #9AD5CA;
    display: block;
}

.parent-location {
    color: rgba(235, 235, 235, 0.7);
    font-size: 0.9rem;
}

/* Results Banner */
.results-banner {
    text-align: center;
    background: rgba(154, 213, 202, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(154, 213, 202, 0.3);
}

.results-banner h3 {
    font-size: 1.75rem;
    color: #9AD5CA;
    margin-bottom: 2rem;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.stat-label {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Learning Science Section */
.learning-science {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.learning-science h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #EBEBEB;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 4rem;
}

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

.science-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.science-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.science-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
}

.science-card h3 {
    font-size: 1.5rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.science-card p {
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.research-badge {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.3), rgba(154, 213, 202, 0.3));
    color: #9AD5CA;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(154, 213, 202, 0.5);
}

/* Curriculum Alignment */
.curriculum-alignment {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.curriculum-alignment h3 {
    font-size: 1.75rem;
    color: #9AD5CA;
    margin-bottom: 2rem;
}

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

.standard-item {
    background: rgba(154, 213, 202, 0.2);
    color: #9AD5CA;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(154, 213, 202, 0.3);
}

/* Safety & Privacy Section */
.safety-privacy {
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.10) 0%,
        rgba(30, 150, 252, 0.15) 50%,
        rgba(123, 68, 193, 0.10) 100%
    );
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.safety-privacy h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #EBEBEB;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.safety-feature {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.safety-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.safety-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
}

.safety-feature h3 {
    font-size: 1.25rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.safety-feature p {
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.6;
}

/* Parent Dashboard Preview */
.parent-dashboard-preview {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.parent-dashboard-preview h3 {
    font-size: 1.75rem;
    color: #9AD5CA;
    margin-bottom: 2rem;
}

.dashboard-image {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Value Justification Section */
.value-justification {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.value-justification h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #EBEBEB;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.comparison-item.glass-umbrella {
    border: 2px solid rgba(154, 213, 202, 0.5);
    background: rgba(154, 213, 202, 0.1);
}

.comparison-item h3 {
    font-size: 1.5rem;
    color: #EBEBEB;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #9AD5CA;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.comparison-item li {
    color: rgba(235, 235, 235, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item li:last-child {
    border-bottom: none;
}

.total-cost {
    font-size: 1.25rem;
    font-weight: 600;
    color: #EBEBEB;
}

.savings-badge {
    background: linear-gradient(135deg, #9AD5CA 0%, #7BC3D1 100%);
    color: #1A1A2E;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 16px rgba(154, 213, 202, 0.3);
}

.comparison-arrow {
    font-size: 2rem;
    font-weight: 700;
    color: #9AD5CA;
    text-align: center;
}

/* Guarantee Box */
.guarantee-box {
    background: rgba(154, 213, 202, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(154, 213, 202, 0.3);
}

.guarantee-box h3 {
    font-size: 1.75rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.guarantee-box p {
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-features span {
    color: #9AD5CA;
    font-weight: 600;
}

/* Easy Setup Section */
.easy-setup {
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
        rgba(30, 150, 252, 0.10) 0%,
        rgba(123, 68, 193, 0.15) 50%,
        rgba(30, 150, 252, 0.10) 100%
    );
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.easy-setup h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #EBEBEB;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.setup-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9AD5CA 0%, #7BC3D1 100%);
    color: #1A1A2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(154, 213, 202, 0.3);
}

.step h3 {
    font-size: 1.25rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #9AD5CA;
    text-align: center;
}

/* Setup Benefits */
.setup-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
}

.benefit-item span {
    color: rgba(235, 235, 235, 0.9);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #EBEBEB;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.faq-item p {
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.25) 0%,
        rgba(30, 150, 252, 0.20) 50%,
        rgba(123, 68, 193, 0.25) 100%
    );
    backdrop-filter: blur(20px) saturate(1.2);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    color: #EBEBEB;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgency {
    margin-bottom: 3rem;
}

.cta-urgency p {
    font-size: 1.125rem;
    color: rgba(235, 235, 235, 0.9);
    margin: 0.5rem 0;
}

.final-cta-buttons {
    margin-bottom: 2rem;
}

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

.cta-subtext span {
    color: rgba(235, 235, 235, 0.7);
    font-size: 0.9rem;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    color: rgba(235, 235, 235, 0.7);
}

.contact-info a {
    color: #9AD5CA;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subtext {
        font-size: 1.25rem;
    }
    
    .trust-bar {
        gap: 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .problem-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .setup-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .results-stats {
        gap: 2rem;
    }
    
    .guarantee-features {
        gap: 1rem;
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2.25rem;
    }
    
    .cta-subtext {
        flex-direction: column;
        gap: 0.5rem;
    }
}