/* Landing Page Styles */

/* General Hero CTA Button (can be used anywhere) */
.hero-cta {
    display: inline-block;
    background-color: #0063A0;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    font-size: 1.2em;
    font-weight: 600;
    margin: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 99, 160, 0.3);
}

.hero-cta:hover,
.hero-cta:active,
.hero-cta:visited {
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    text-shadow: none !important;
}

.hero-cta:hover {
    background-color: #005080;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 99, 160, 0.4);
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    text-shadow: none !important;
}

.hero-cta.secondary {
    background-color: #629E2D;
    box-shadow: 0 4px 15px rgba(98, 158, 45, 0.3);
}

.hero-cta.secondary:hover {
    background-color: #527a24;
    box-shadow: 0 6px 20px rgba(98, 158, 45, 0.4);
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    text-shadow: none !important;
}

/* Block 1: Hero Section */
.landing-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin-bottom: 0;
}

.landing-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0063A0;
    line-height: 1.2;
    font-weight: 700;
}

.landing-hero .hero-subheadline {
    font-size: 1.4em;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.landing-hero .hero-cta {
    display: inline-block;
    background-color: #0063A0;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    font-size: 1.2em;
    font-weight: 600;
    margin: 20px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 99, 160, 0.3);
}

.landing-hero .hero-cta:hover,
.landing-hero .hero-cta:active,
.landing-hero .hero-cta:visited {
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    text-shadow: none !important;
}

.landing-hero .hero-cta:hover {
    background-color: #005080;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 99, 160, 0.4);
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    text-shadow: none !important;
}

.landing-hero .hero-cta.secondary {
    background-color: #629E2D;
    box-shadow: 0 4px 15px rgba(98, 158, 45, 0.3);
}

.landing-hero .hero-cta.secondary:hover {
    background-color: #527a24;
    box-shadow: 0 6px 20px rgba(98, 158, 45, 0.4);
    text-decoration: none !important;
    background-image: none !important;
    border-bottom: 0 !important;
    text-shadow: none !important;
}

.landing-hero .social-proof {
    margin-top: 30px;
    color: #475569;
    font-size: 1em;
    font-style: italic;
    font-weight: 500;
}

.landing-hero .hero-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Block 2: Problem Agitation */
.problem-section {
    padding: 30px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 2.5em;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.problem-card {
    padding: 20px;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    text-align: center;
}

.problem-card .problem-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 1.4em;
    color: #991b1b;
    margin-bottom: 15px;
}

.problem-card p {
    color: #7f1d1d;
    line-height: 1.6;
}

/* Block 3: Transformation */
.transformation-section {
    padding: 30px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    text-align: center;
}

.transformation-section h2 {
    font-size: 2.5em;
    color: #0063A0;
    margin-bottom: 10px;
}

.transformation-section .transformation-subheadline {
    font-size: 1.3em;
    color: #1e293b;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.benefit-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-card .benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3em;
    color: #0063A0;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #475569;
    line-height: 1.6;
}

/* Block 4: How It Works */
.how-it-works-section {
    padding: 30px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-section h2 {
    font-size: 2.5em;
    text-align: center;
    color: #0063A0;
    margin-bottom: 10px;
}

.how-it-works-section .section-subheadline {
    text-align: center;
    font-size: 1.2em;
    color: #64748b;
    margin-bottom: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.step-card {
    padding: 20px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.step-card.featured {
    background: #eff6ff;
    border-color: #2563eb;
}

.step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #0063A0;
    color: white;
    border-radius: 50%;
    line-height: 45px;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card.featured .step-number {
    background: #2563eb;
}

.step-card h3 {
    font-size: 1.4em;
    color: #1e293b;
    margin-bottom: 15px;
}

.step-card p {
    color: #475569;
    line-height: 1.6;
}

/* Block 5: Features */
.features-section {
    padding: 30px 20px;
    background: #f9fafb;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    font-size: 2.5em;
    text-align: center;
    color: #0063A0;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card .feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3em;
    color: #0063A0;
    margin-bottom: 15px;
}

.feature-card p {
    color: #475569;
    line-height: 1.6;
}

/* Block 5: Privacy Section */
.privacy-section {
    padding: 30px 20px;
    background: #f0f9ff;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-section h2 {
    font-size: 2.5em;
    text-align: center;
    color: #0063A0;
    margin-bottom: 20px;
}

.privacy-section .privacy-subheadline {
    font-size: 1.3em;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.5;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.privacy-card {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e0f2fe;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 99, 160, 0.2);
    border-color: #0063A0;
}

.privacy-card .privacy-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.privacy-card h3 {
    font-size: 1.3em;
    color: #0063A0;
    margin-bottom: 15px;
}

.privacy-card p {
    color: #475569;
    line-height: 1.6;
}

/* Block 6: Use Cases */
.use-cases-section {
    padding: 30px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.use-cases-section h2 {
    font-size: 2.5em;
    text-align: center;
    color: #0063A0;
    margin-bottom: 20px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.use-case-card {
    padding: 20px;
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.use-case-card h3 {
    font-size: 1.4em;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.use-case-card p {
    color: #334155;
    line-height: 1.7;
}

.use-case-card .use-case-example {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    font-style: italic;
    color: #475569;
}

/* Block 7: Testimonials */
.testimonials-section {
    padding: 30px 20px;
    background: #f9fafb;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 2.5em;
    text-align: center;
    color: #0063A0;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4em;
    color: #0063A0;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-card .testimonial-text {
    font-size: 1.1em;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-card .testimonial-author {
    font-weight: 600;
    color: #0063A0;
}

.testimonial-card .testimonial-role {
    color: #64748b;
    font-size: 0.9em;
}

/* Block 8: Pricing & CTA */
.pricing-cta-section {
    padding: 30px 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.pricing-cta-section h2 {
    font-size: 2.5em;
    color: #0063A0;
    margin-bottom: 10px;
}

.pricing-cta-section .pricing-subheadline {
    font-size: 1.2em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 500;
}

.pricing-cards-container {
    position: relative;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 60px;
    overflow: visible;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.pricing-cards::-webkit-scrollbar {
    display: none;
}

.pricing-cards {
    -webkit-overflow-scrolling: touch;
}

.pricing-card-landing {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 240px;
    max-width: 280px;
    padding: 15px 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card-landing.featured {
    border-color: #0063A0;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 99, 160, 0.3);
}

.pricing-card-landing .pricing-badge {
    display: inline-block;
    background: #629E2D;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-bottom: 10px;
}

.pricing-card-landing h3 {
    font-size: 1.3em;
    color: #1e293b;
    margin: 8px 0 8px 0;
    font-weight: 600;
}

.pricing-card-landing .price {
    font-size: 1.6em;
    color: #0063A0;
    font-weight: 700;
    margin: 10px 0 3px 0;
}

.pricing-card-landing .price-note {
    font-size: 0.8em;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pricing-card-landing ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: left;
    width: 100%;
}

.pricing-card-landing ul li {
    padding: 5px 0;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9em;
    line-height: 1.4;
}

.pricing-card-landing ul li:last-child {
    border-bottom: none;
}

.pricing-card-landing ul li::before {
    content: "✓ ";
    color: #629E2D;
    font-weight: 700;
    margin-right: 10px;
}

.pricing-card-landing .pricing-cta {
    display: inline-block;
    background: #629E2D;
    color: white;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.pricing-card-landing .pricing-cta:hover {
    background: #4a7d1f;
    transform: translateY(-2px);
}

.pricing-card-landing.featured .pricing-cta {
    background: #629E2D;
}

.pricing-card-landing.featured .pricing-cta:hover {
    background: #4a7d1f;
}

/* Pricing Carousel Navigation */
.pricing-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0063A0;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 99, 160, 0.3);
}

.pricing-carousel-nav:hover {
    background: #005080;
    transform: translateY(-50%) scale(1.1);
}

.pricing-carousel-nav.prev {
    left: 0;
}

.pricing-carousel-nav.next {
    right: 0;
}

.pricing-carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pricing-carousel-nav:disabled:hover {
    transform: translateY(-50%);
    background: #0063A0;
}

.risk-reducer {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    display: inline-block;
    max-width: 600px;
}

.risk-reducer p {
    color: #1e293b;
    font-size: 1.1em;
    margin: 5px 0;
    font-weight: 500;
}

/* Block 9: FAQ */
.faq-section {
    padding: 30px 20px;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5em;
    text-align: center;
    color: #0063A0;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f9fafb;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question::after {
    content: "+";
    font-size: 1.5em;
    color: #0063A0;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #475569;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Block 10: About Us */
.about-section {
    padding: 30px 20px;
    background: #f9fafb;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5em;
    color: #0063A0;
    margin-bottom: 15px;
}

.about-section .founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-section .about-text {
    font-size: 1.1em;
    color: #475569;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.about-section .about-text p {
    margin-bottom: 20px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 30px 20px;
    background: linear-gradient(135deg, #0063A0 0%, #004070 100%);
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: white;
}

.final-cta-section p {
    font-size: 1.3em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.final-cta-section .final-cta-button {
    display: inline-block;
    background: white;
    color: #0063A0;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta-section .final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards-container {
        padding: 0 50px;
    }
    
    .pricing-card-landing {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 30px 20px;
    }
    
    .landing-hero h1 {
        font-size: 2em;
    }
    
    .landing-hero .hero-subheadline {
        font-size: 1.1em;
    }
    
    .landing-hero .hero-cta {
        display: block;
        margin: 15px auto;
        max-width: 300px;
    }
    
    .problem-section,
    .transformation-section,
    .how-it-works-section,
    .features-section,
    .use-cases-section,
    .testimonials-section,
    .pricing-cta-section,
    .faq-section,
    .about-section,
    .final-cta-section {
        padding: 40px 20px;
    }
    
    .problem-section h2,
    .transformation-section h2,
    .how-it-works-section h2,
    .features-section h2,
    .use-cases-section h2,
    .testimonials-section h2,
    .pricing-cta-section h2,
    .faq-section h2,
    .about-section h2,
    .final-cta-section h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .pricing-card-landing.featured {
        transform: none;
    }
    
    .problem-grid,
    .steps-grid,
    .benefits-grid,
    .features-grid,
    .use-cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-cards-container {
        padding: 0 50px;
    }
    
    .pricing-card-landing {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .pricing-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}

