/* ==================================================
   HOME - HERO
================================================== */

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 5rem;
    background-color: #fff;
}

    .home-hero::before {
        position: absolute;
        width: 500px;
        height: 500px;
        right: -250px;
        top: -180px;
        content: "";
        background: radial-gradient(circle, rgba(237, 245, 255, 0.75) 0%, rgba(237, 245, 255, 0) 72%);
        pointer-events: none;
    }

.hero-title {
    margin-bottom: 1.75rem;
    color: var(--intelliscope-navy);
    font-size: clamp(4rem, 6vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

    .hero-title span {
        display: block;
        margin-top: 0.2rem;
        color: var(--intelliscope-orange);
    }

.hero-description {
    max-width: 540px;
    margin-bottom: 2rem;
    color: var(--intelliscope-muted);
    font-size: 1.35rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4d5465;
    font-size: 1.05rem;
}

.hero-check {
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    background-color: var(--intelliscope-orange);
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}


/* ==================================================
   HOME - DASHBOARD PREVIEW
================================================== */

.hero-dashboard {
    position: relative;
    padding: 0.8rem;
    background-color: #fff;
    border: 1px solid rgba(11, 16, 62, 0.08);
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgba(11, 16, 62, 0.11), 0 5px 15px rgba(11, 16, 62, 0.06);
}

    .hero-dashboard::before {
        position: absolute;
        inset: 0;
        z-index: -1;
        content: "";
        border-radius: 1rem;
        box-shadow: 0 0 80px rgba(11, 16, 62, 0.05);
    }

.hero-dashboard-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    user-select: none;
    -webkit-user-drag: none;
}


/* ==================================================
   HOME - INTRO
================================================== */

.home-intro {
    padding: 4.25rem 0 4.75rem;
    background: radial-gradient(circle at 50% 0%, #fff 0%, rgba(255, 255, 255, 0) 48%), var(--intelliscope-light);
}


/* ==================================================
   HOME - FEATURES
================================================== */

.home-features {
    padding: 6rem 0 7rem;
    background-color: #fff;
}

.feature-card {
    height: 100%;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid rgba(11, 16, 62, 0.08);
    border-radius: 0.85rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

    .feature-card:hover {
        border-color: rgba(11, 16, 62, 0.15);
        box-shadow: 0 12px 30px rgba(11, 16, 62, 0.06);
    }

.feature-card-highlight {
    background-color: var(--intelliscope-light);
}

.feature-icon {
    display: flex;
    width: 52px;
    height: 52px;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
    background-color: var(--intelliscope-light);
    border-radius: 0.75rem;
    color: var(--intelliscope-navy);
    font-size: 1.5rem;
}

.feature-icon-highlight {
    background-color: #fff;
    color: var(--intelliscope-orange);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.55rem;
}

.feature-card p {
    margin: 0;
    color: var(--intelliscope-muted);
}


/* ==================================================
   HOME - CONNECTED
================================================== */

.home-connected {
    padding: 7rem 0;
    background-color: var(--intelliscope-navy);
    color: #fff;
}

    .home-connected .section-eyebrow {
        color: var(--intelliscope-orange);
    }

    .home-connected h2 {
        margin-bottom: 1.5rem;
        color: #fff;
        font-size: clamp(2.25rem, 4vw, 3.5rem);
        font-weight: 700;
    }

    .home-connected p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.15rem;
    }

.connected-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.connected-flow-item {
    display: flex;
    min-width: 150px;
    min-height: 140px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.85rem;
    color: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

    .connected-flow-item:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.3);
        background-color: rgba(255, 255, 255, 0.035);
    }

    .connected-flow-item > i {
        color: var(--intelliscope-orange);
        font-size: 2rem;
        line-height: 1;
    }

    .connected-flow-item span {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
    }

.connected-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--intelliscope-orange);
    font-size: 1.75rem;
}

    .connected-flow-arrow i {
        line-height: 1;
    }


/* ==================================================
   HOME - BENEFITS
================================================== */

.home-benefits {
    padding: 7rem 0;
    background-color: #fff;
}

    .home-benefits h2 {
        margin-bottom: 1.25rem;
        font-size: clamp(2rem, 4vw, 3.25rem);
        font-weight: 700;
    }

.benefit-item {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(11, 16, 62, 0.09);
}

    .benefit-item:last-child {
        margin-bottom: 0;
    }

.benefit-marker {
    width: 10px;
    min-width: 10px;
    height: 10px;
    margin-top: 0.55rem;
    background-color: var(--intelliscope-orange);
    border-radius: 50%;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.benefit-item p {
    margin: 0;
    color: var(--intelliscope-muted);
}


/* ==================================================
   HOME - DEMO
================================================== */

.home-demo {
    padding: 0 0 7rem;
    background-color: #fff;
}


/* ==================================================
   HOME - COMPANY
================================================== */

.home-company {
    padding: 7rem 0;
    background-color: var(--intelliscope-light);
}

    .home-company h2 {
        margin-bottom: 1.25rem;
        font-size: clamp(2rem, 4vw, 3.25rem);
        font-weight: 700;
    }

    .home-company p {
        color: var(--intelliscope-muted);
        font-size: 1.1rem;
    }

.home-ryatech-logo-link {
    display: inline-block;
    margin-bottom: 1.75rem;
    text-decoration: none;
}

.home-ryatech-logo {
    display: block;
    width: auto;
    height: 68px;
    max-width: 320px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.home-ryatech-logo-link:hover .home-ryatech-logo {
    opacity: 0.8;
}


/* ==================================================
   HOME - RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .home-hero {
        padding: 4.5rem 0 5rem;
    }

    .hero-dashboard {
        margin-top: 1rem;
    }

    .connected-flow {
        flex-direction: column;
    }

    .connected-flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .home-features,
    .home-connected,
    .home-benefits,
    .home-company {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        padding: 3.5rem 0 4rem;
    }

    .hero-title {
        font-size: 3.6rem;
    }

    .hero-description {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .home-intro {
        padding: 3.75rem 0 4rem;
    }

    .home-features,
    .home-connected,
    .home-benefits,
    .home-company {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .connected-flow-item {
        width: 100%;
        max-width: 260px;
    }

    .home-ryatech-logo {
        height: 56px;
        max-width: 280px;
    }
}
