/* Additional styles for conversion-optimized components */

/* Hero Section Styles */
.hero__headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero {
    padding: 3rem 0;
}

.hero__subheadline {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__cta-primary {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero__cta-secondary {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero__trust-badges {
    margin-top: 1.5rem;
}

.hero__image-container {
    position: relative;
}

.hero__image {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero__image-caption {
    text-align: center;
    color: #6c757d;
}

/* Story Block Styles */
.story-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.story-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.story-highlight {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #28a745;
}

.story-quote {
    font-style: italic;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.story-quote p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.story-quote footer {
    font-size: 0.9rem;
    font-style: normal;
}

/* Calendly Widget Customization */
.calendly-inline-widget {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Custom Calendly styling - these styles will override Calendly's default colors */
.calendly-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Target Calendly iframe and apply custom colors */
.calendly-inline-widget iframe {
    border-radius: 12px;
}

/* Add custom CSS to override Calendly's default colors */
.calendly-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #28a745;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

/* How It Works Section Styles */
.how-it-works__step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #e9ecef;
}

.how-it-works__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.how-it-works__step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.how-it-works__step-content {
    margin-top: 1rem;
}

.how-it-works__step-title {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.how-it-works__step-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.how-it-works__step-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-weight: 500;
    font-size: 0.9rem;
}

.how-it-works__step-duration i {
    font-size: 1rem;
}

.how-it-works__features {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.how-it-works__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.how-it-works__feature:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.how-it-works__feature i {
    font-size: 1.5rem;
}

.how-it-works__feature span {
    font-weight: 500;
    color: #495057;
}

/* Benefits Card Styles */
.benefit-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

.benefit-card__icon {
    margin-bottom: 1.5rem;
}

.benefit-card__title {
    color: #28a745;
    margin-bottom: 1rem;
}

.benefit-card__description {
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonial Card Styles */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-card__content {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.testimonial-card__content:hover {
    border-color: #28a745;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card__stars {
    color: #ffc107;
}

.testimonial-card__quote {
    font-style: italic;
    color: #495057;
    line-height: 1.6;
}

.testimonial-card__author {
    color: #28a745;
    font-weight: 600;
}

/* Final CTA Styles */
.final-cta {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

.final-cta__button .btn {
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.final-cta__button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.final-cta__trust-badges {
    margin-top: 3rem;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    gap: 0.75rem;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-badge__text {
    text-align: center;
}

.trust-badge__text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.trust-badge__text small {
    opacity: 0.9;
    font-size: 0.8rem;
    line-height: 1.2;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__headline {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero__subheadline {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta-primary,
    .hero__cta-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero__trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .hero__trust-badges .badge {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
    }
    
    .story-block__icon {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .how-it-works__step {
        padding: 1.5rem;
    }
    
    .how-it-works__step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -12px;
        left: 15px;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 400px;
    }
    
    .trust-badge {
        padding: 1.25rem 0.75rem;
        gap: 0.5rem;
    }
    
    .trust-badge i {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }
    
    .trust-badge__text strong {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .trust-badge__text small {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .hero__headline {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero__subheadline {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero__cta-primary,
    .hero__cta-secondary {
        max-width: 100%;
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero__trust-badges {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .hero__trust-badges .badge {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .hero__image {
        max-width: 280px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .story-block {
        padding: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .how-it-works__step {
        padding: 1rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 300px;
    }
    
    .trust-badge {
        padding: 1rem 0.75rem;
        gap: 0.5rem;
    }
    
    .trust-badge i {
        font-size: 1.5rem;
    }
    
    .trust-badge__text strong {
        font-size: 0.8rem;
    }
    
    .trust-badge__text small {
        font-size: 0.7rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .testimonial-card,
    .hero__cta-primary,
    .hero__cta-secondary,
    .final-cta__button .btn,
    .how-it-works__step,
    .how-it-works__feature {
        transition: none;
    }
    
    .benefit-card:hover,
    .testimonial-card:hover,
    .how-it-works__step:hover,
    .how-it-works__feature:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .benefit-card {
        border: 2px solid #000;
    }
    
    .testimonial-card__content {
        border: 2px solid #000;
    }
    
    .how-it-works__step {
        border: 2px solid #000;
    }
    
    .hero__cta-primary,
    .hero__cta-secondary {
        border: 2px solid currentColor;
    }
}
