

.page-index-content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    /* background-color: red; */
}

/* =====================================================================
   iOS-style grey gradient page background for the index page.
   A fixed, full-viewport layer behind everything: white base with very
   soft, oversized grey "blobs" — same family as the global background
   but page-scoped so the parallax blobs sit on top of it.
   ===================================================================== */
body:has(.page-index-content)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 12% 8%,
            rgba(226, 232, 240, 0.85) 0%,
            rgba(226, 232, 240, 0) 60%),
        radial-gradient(ellipse 55% 45% at 88% 18%,
            rgba(203, 213, 225, 0.55) 0%,
            rgba(203, 213, 225, 0) 65%),
        radial-gradient(ellipse 70% 55% at 95% 85%,
            rgba(214, 222, 233, 0.75) 0%,
            rgba(214, 222, 233, 0) 65%),
        radial-gradient(ellipse 65% 50% at 5% 95%,
            rgba(230, 235, 242, 0.70) 0%,
            rgba(230, 235, 242, 0) 65%),
        radial-gradient(ellipse 45% 40% at 50% 55%,
            rgba(241, 245, 249, 0.60) 0%,
            rgba(241, 245, 249, 0) 70%),
        linear-gradient(135deg, #ffffff 0%, #f5f7fa 55%, #eceff3 100%);
}

/* =====================================================================
   Parallax background blobs — softly drift on scroll for an Apple feel.
   Sit above the fixed background but below all content (-1 inside the
   page wrapper, with .page-index-content keeping its own stacking).
   ===================================================================== */
html { scroll-behavior: smooth; }

.parallax-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.page-index-content { position: relative; z-index: 1; }
.page-index-content > section { position: relative; z-index: 1; }

.parallax-blob {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 0.08s linear;
}

.parallax-blob-1 {
    width: 520px; height: 520px;
    top: 4%; left: -8%;
    background: radial-gradient(circle at 30% 30%, #ffd0bd 0%, rgba(255, 208, 189, 0) 70%);
}
.parallax-blob-2 {
    width: 600px; height: 600px;
    top: 22%; right: -10%;
    background: radial-gradient(circle at 70% 30%, #c9d4ff 0%, rgba(201, 212, 255, 0) 70%);
}
.parallax-blob-3 {
    width: 480px; height: 480px;
    top: 58%; left: 10%;
    background: radial-gradient(circle at 50% 50%, #c8efdd 0%, rgba(200, 239, 221, 0) 70%);
}
.parallax-blob-4 {
    width: 420px; height: 420px;
    top: 80%; right: 8%;
    background: radial-gradient(circle at 50% 50%, #e6d2ff 0%, rgba(230, 210, 255, 0) 70%);
}

/* Hero image gets willChange so transform-based parallax is smooth */
.hero-image { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .parallax-blob { transform: none !important; }
}

.hero-image {
    width: 400px;
    display: block;
    margin: 0 auto 1.5rem;
}

.logo-image{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    background: #fff;
    color: #0a4194;
    border: solid 2px #0a4194;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    /* box-shadow: var(--shadow-xl); */
    /* background: #390969; */
}

/* Hero Section */
.hero {
    margin-top: 20px;
    padding: 6rem 5% 5rem;
    text-align: center;
    background: transparent;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Report Banner Section */
.report-banner {
    padding: 6rem 2rem;
    background: transparent;
    /* border-top: 1px solid #e5e7eb; */
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banner-content {
    padding-right: 2rem;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

/* .banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.banner-image-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-image-centered .report-image {
    max-width: 1000px;
}

.report-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    /* border-radius: 16px; */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    /* transition: all 0.3s ease; */
    /* border: 1px solid #e5e7eb; */
}


/* Decorative elements */
/* .banner-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
} */

/* Banner responsive design */
@media (max-width: 968px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .banner-content {
        padding-right: 0;
        order: 2;
    }

    .banner-image {
        order: 1;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .report-banner {
        padding: 4rem 1rem;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .report-image {
        max-width: 100%;
    }
}

.search-container {
    max-width: 650px;
    margin: 0 auto;
}

.search-bar button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background: var(--gradient-hover);
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 6rem 5% 8% 0%;
    background: transparent;
}

.pricing{
    padding: 0;
    background: transparent;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    /* box-shadow: var(--shadow-md); */
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: solid 1px #e2e8f0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Reviews Section */
.reviews {
    padding: 3rem 5%;
    background: transparent;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.reviews-card {
    /* background: var(--white); */
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.reviews-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: var(--gradient); */
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reviews-card:hover {
    transform: translateY(-3px);
    /* box-shadow: var(--shadow-xl); */
}

.reviews-card:hover::before {
    transform: scaleX(1);
}

.reviews-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}

.reviews-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.reviews-card p {
    color: var(--text-light);
    line-height: 1.8;
    
}

.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
}

/* Show 3 slides at once */
.embla__slide {
    flex: 0 0 33.333%; /* Each slide takes 1/3 of container width */
    min-width: 0;
    padding: 0 0.5rem; /* Reduced padding for better spacing */
    /* height: 100%; */
    /* background-color: red; */
    margin: 10px 0 10px 0;
}

/* Responsive: show fewer slides on smaller screens */
@media (max-width: 768px) {
    .embla__slide {
        flex: 0 0 100%; /* Show 1 slide on mobile */
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .embla__slide {
        flex: 0 0 50%; /* Show 2 slides on tablet */
        padding: 0 0.75rem;
    }
}
/* How It Works */
.how-it-works {
    padding: 20% 5% 15% 5%;
    /* background: var(--white); */
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.steps {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 3rem;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 15px;
    background: radial-gradient(ellipse, rgba(10, 65, 148, 0.4) 60%, rgba(10, 65, 148, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(8px);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 60%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #e0e0e0 0%, #e0e0e0 50%, transparent 50%);
    background-size: 20px 2px;
    z-index: 1;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    font-size: 1.125rem;
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }

    .features h2, .how-it-works h2, .reviews h2 {
        font-size: 2rem;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .search-bar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .search-bar button {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== Hero badge, actions, stats ===== */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    /* background: rgba(10, 65, 148, 0.08); */
    background: #ffffff;
    color: #0a4194;
    border: 1px solid rgba(10, 65, 148, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.primary-button {
    background: var(--gradient);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-hover);
}

.secondary-button {
    background: #fff;
    color: #0a4194;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    border: 2px solid #0a4194;
    display: inline-block;
}

.secondary-button:hover {
    transform: translateY(-2px);
    background: rgba(10, 65, 148, 0.05);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ===== Section headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
}

/* Override how-it-works h2 spacing now that it's wrapped in section-header */
.how-it-works .section-header h2 {
    margin-bottom: 1rem;
}

/* ===== Feature icon: ensure SVG strokes are visible on gradient bg ===== */
.feature-icon svg {
    stroke: #fff;
    width: 28px;
    height: 28px;
}

/* ===== How it works CTA ===== */
.cta-section {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        height: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}