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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(27, 58, 87, 0.85) 0%, rgba(27, 58, 87, 0.6) 100%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.hero__headline {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.hero__subheadline {
    font-size: 1.25rem;
    color: #F8F6F1;
    margin-bottom: 2rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        min-height: 400px;
    }

    .hero__subheadline {
        font-size: 1rem;
    }
}

/* ============ BUTTONS ============ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn--primary {
    background-color: #FF6B35;
    color: white;
}

.btn--primary:hover {
    background-color: #E85A24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background-color: transparent;
    color: #1B3A57;
    border: 2px solid #1B3A57;
}

.btn--secondary:hover {
    background-color: #F8F6F1;
    border-color: #1B3A57;
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn--block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============ SECTION HEADER ============ */

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

.section-header h2 {
    color: #1B3A57;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

.stat-callout {
    font-size: 1.25rem;
    color: #FF6B35;
    font-weight: 600;
    margin-top: 1rem;
}

/* ============ TESTIMONIAL CAROUSEL SECTION ============ */

.testimonial-carousel {
    padding: 5rem 0;
    background-color: #F8F6F1;
}

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

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #E0E7FF 0%, #F0E7FF 100%);
}

.testimonial-image-placeholder--blue {
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
}

.testimonial-image-placeholder--green {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
}

.testimonial-image-placeholder--orange {
    background: linear-gradient(135deg, #FFE0B2 0%, #FFCC80 100%);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1B3A57;
    font-size: 0.95rem;
}

.testimonial-metric {
    font-size: 0.85rem;
    color: #666;
}

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

.faq-section {
    padding: 5rem 0;
    background-color: white;
}

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

.faq-item {
    background: #F8F6F1;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #E8E6E0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #1B3A57;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #F8F6F1;
    color: #FF6B35;
}

.faq-question .symbol {
    flex-shrink: 0;
    font-size: 24px;
}

.faq-item[open] .faq-question {
    background-color: #1B3A57;
    color: white;
}

.faq-item[open] .faq-question .symbol {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 16px;
    color: #2C3E50;
    line-height: 1.6;
}

.faq-answer p { margin-bottom: 0; }

/* ============ METHODOLOGY SECTION ============ */

.methodology {
    padding: 5rem 0;
    background-color: #F8F6F1;
}

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

.methodology-step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #E85A24);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 32px;
}

.methodology-step h3 {
    color: #1B3A57;
    margin-bottom: 1rem;
}

.methodology-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============ CASE STUDIES SECTION ============ */

.case-studies {
    padding: 5rem 0;
    background-color: white;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .case-study:nth-child(odd) {
        grid-template-columns: 1fr 1.5fr;
    }

    .case-study:nth-child(even) {
        grid-template-columns: 1.5fr 1fr;
    }

    .case-study:nth-child(even) .case-study__image-placeholder {
        order: 2;
    }
}

.case-study__image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #E0E7FF 0%, #F0E7FF 100%);
}

.case-study__image-placeholder--blue {
    background: linear-gradient(135deg, #B3E5FC 0%, #81D4FA 100%);
}

.case-study__image-placeholder--green {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
}

.case-study__image-placeholder--orange {
    background: linear-gradient(135deg, #FFE0B2 0%, #FFCC80 100%);
}

.case-study__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study__content h3 {
    color: #1B3A57;
    margin-bottom: 0.75rem;
}

.case-study__metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    background-color: #27AE60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-study__content p {
    color: #2C3E50;
    line-height: 1.8;
}

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

.pricing {
    padding: 5rem 0;
    background-color: #F8F6F1;
}

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

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
    border-color: #FF6B35;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .pricing-card--featured {
        transform: scale(1);
    }
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF6B35;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-title {
    color: #1B3A57;
    margin-bottom: 1rem;
    margin-top: 0;
}

.pricing-amount {
    font-size: 2.5rem;
    color: #FF6B35;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 2.5rem;
}

.period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.25rem;
}

.pricing-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #2C3E50;
    font-size: 0.95rem;
}

.pricing-features .symbol {
    color: #27AE60;
    font-size: 20px;
}

.pricing-footer {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #E8E6E0;
}

.pricing-footer p {
    color: #666;
    margin-bottom: 0.75rem;
}

.pricing-footer p:last-child {
    margin-bottom: 0;
}

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

.final-cta {
    background: linear-gradient(135deg, #1B3A57 0%, #27533D 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.cta-content p {
    font-size: 1.125rem;
    color: #F8F6F1;
    margin-bottom: 2rem;
}

.cta-subtext {
    font-size: 0.95rem;
    color: #E8E6E0;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* ============ FOOTER ============ */

.footer {
    background: #1B3A57;
    color: #E8E6E0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #F8F6F1;
}

.footer-section a:hover {
    color: #FF6B35;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.email-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-family: 'Inter', sans-serif;
    min-width: 0;
}

.email-form input::placeholder {
    color: #999;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #A8B8C8;
}

.trust-badges {
    margin-top: 1rem;
}

.badge-text {
    color: #A8B8C8;
    font-size: 0.85rem;
}

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

@media (max-width: 768px) {
    .testimonial-carousel,
    .faq-section,
    .methodology,
    .case-studies,
    .pricing,
    .final-cta {
        padding: 3rem 0;
    }

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

    .pricing-card--featured {
        transform: scale(1);
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .testimonial-grid,
    .faq-grid,
    .methodology-timeline,
    .case-study-grid,
    .pricing-grid {
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .methodology-step,
    .testimonial-card {
        padding: 1.5rem;
    }

    .case-study__image-placeholder {
        height: 200px;
    }

    .pricing-amount {
        font-size: 1.75rem;
    }
}
