/* Home main page (non-slide) */
.home-main-hero {
    padding-top: 100px;
}

.home-main-hero .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.home-main-hero .hero-description {
    font-size: 1.05rem;
    max-width: 640px;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.home-service-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.home-service-card:hover {
    border-color: rgba(0, 212, 255, 0.45);
    transform: translateY(-4px);
}

.home-service-card i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 16px;
}

.home-service-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    color: #ffffff;
}

.home-service-card p {
    margin: 0 0 20px;
    font-size: 0.92rem;
    color: #bbbbbb;
    line-height: 1.6;
    flex: 1;
}

.home-service-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #00d4ff;
}

.home-start-list {
    max-width: 560px;
    margin: 0 auto 32px;
    padding: 0;
    list-style: none;
}

.home-start-list li {
    position: relative;
    padding: 14px 0 14px 28px;
    color: #cccccc;
    border-bottom: 1px solid rgba(0, 212, 255, 0.12);
    line-height: 1.5;
}

.home-start-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
}

.home-demo-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 32px;
    text-align: center;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 16px;
}

.home-cta-bottom {
    text-align: center;
    padding: 80px 20px 100px;
}

.home-cta-bottom .section-title {
    margin-bottom: 28px;
}

@media (max-width: 992px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-main-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-main-hero .hero-visual {
        height: 320px;
    }
}
