/* ========================================
   Homepage
   ======================================== */

/* Section shared */
.home-section {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 100px 0;
}

.home-section__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section 2: Introduction (two-column) */
.home-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 100px;
}

.home-intro__logo {
    flex-shrink: 0;
    width: 280px;
}

.home-intro__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.home-intro__right {
    flex: 1;
    min-width: 0;
}

.home-intro__content {
    font-size: 16px;
    line-height: 1.9;
}
.home-intro__content h1 {
    color: var(--fs-color-primary);
    font-weight: 700;
    margin-bottom: 20px;
}
.home-intro__content h2,
.home-intro__content h3,
.home-intro__content h4 {
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 20px;
}

.home-intro__content h2 {
    font-size: 28px;
}

.home-intro__content p {
    margin-bottom: 18px;
}

.home-intro__content p:last-child {
    margin-bottom: 0;
}
.home-intro__content ul {
		list-style-type: none;
}
.home-intro__content li::before {
  content: '◆';
  font-size: 20px;
  color: var(--fs-color-primary);
  flex-shrink: 0;
  position: relative;
  top: 0;
	margin-right: 6px;
}

/* Button link */
.home-intro__btn-wrap {
    margin-top: 40px;
}

.home-intro__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #1c1c1c;
    text-decoration: none;
    padding-bottom: 4px;
}

.home-intro__btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition-property: width;
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
}

.home-intro__btn:hover::after,
.home-intro__btn:focus::after {
    left: 0;
    right: auto;
    width: 100%;
}

.home-intro__btn svg {
    transition: transform 0.3s;
}

.home-intro__btn:hover svg {
    transform: translateX(4px);
}

/* Section 3: Full-width Image */
.home-image {
    padding: 0;
}

.home-image__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Section 4: Title + Content + Button */
.home-content__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--fs-color-primary);
    margin: 0 0 25px;
}

.home-content__text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

.home-content__text p {
    margin-bottom: 18px;
}

.home-content__text p:last-child {
    margin-bottom: 0;
}

.home-content__btn-wrap {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .home-section {
        padding: 60px 0;
    }

    .home-intro__inner {
        flex-direction: column;
        gap: 30px;
    }

    .home-intro__logo {
        width: 180px;
    }

    .home-intro__content {
        font-size: 15px;
    }

    .home-intro__content h2 {
        font-size: 24px;
    }

    .home-content__title {
        font-size: 24px;
    }

    .home-content__text {
        font-size: 15px;
    }
}
