/* -----------------------------------------------------------
GENERAL PAGE STYLES
----------------------------------------------------------- */

.homepage {
    font-family: 'Inter', sans-serif;
    color: #2b2b2b;
    line-height: 1.6;
}

/* Soft background for alternating sections */
.section--alt {
    background: #fafafa;
}

/* Consistent section spacing */
.section {
    padding: 80px 0;
}

.section__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__inner--narrow {
    max-width: 800px;
}

.section__title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section__lead {
    text-align: center;
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

/* -----------------------------------------------------------
HERO SECTION
----------------------------------------------------------- */

.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f3f7ff, #e9eefc);
    border-bottom: 1px solid #dce3f3;
}

.hero__inner {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 60px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
}

/* Buttons */
.btn--primary {
    background: #2f5dff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    transition: 0.2s ease;
    font-weight: 600;
}

.btn--primary:hover {
    background: #2348cc;
    color: #fff;
}

.btn--secondary {
    background: transparent;
    border: 2px solid #2f5dff;
    color: #2f5dff;
    padding: 10px 24px;
    border-radius: 6px;
    margin-left: 12px;
    transition: 0.2s ease;
    font-weight: 600;
}

.btn--secondary:hover {
    background: #2f5dff;
    color: #fff;
}

/* Center CTA buttons at bottom section */
.hero__actions--center {
    display: flex;
    justify-content: center;
}

/* Hero image */
.hero__image {
    display: block;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive hero layout */
@media (max-width: 900px) {
    .hero__inner {
        flex-direction: column;
        text-align: center;
    }
}


/* -----------------------------------------------------------
FEATURES GRID
----------------------------------------------------------- */

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

.feature {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

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

.feature__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature__text {
    color: #555;
}


/* -----------------------------------------------------------
SCREENSHOTS / PREVIEW
----------------------------------------------------------- */

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.preview-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.preview-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.preview-card__caption {
    padding: 15px;
    text-align: center;
    color: #555;
}


/* -----------------------------------------------------------
QUOTE SECTION
----------------------------------------------------------- */

.quote {
    margin: 50px auto 0;
    padding-left: 20px;
    border-left: 4px solid #2f5dff;
}

.quote__text {
    font-style: italic;
    font-size: 1.25rem;
    color: #444;
}


/* -----------------------------------------------------------
FAQ
----------------------------------------------------------- */

.faq__item {
    background: white;
    padding: 18px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq__item summary {
    font-weight: 600;
    font-size: 1.1rem;
    outline: none;
}

.faq__answer {
    margin-top: 12px;
    color: #555;
}


/* -----------------------------------------------------------
FINAL CTA SECTION
----------------------------------------------------------- */

.section--cta {
    background: linear-gradient(135deg, #eaf0ff, #dfe8ff);
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid #d1dbf3;
}

.section--cta .section__title {
    color: #1f1f1f;
}
