/* ==============================
   HOMEPAGE - ICHI YUUMI
   ============================== */

/* --- HERO --- */
.home-hero {
    background: var(--main-yellow);
    padding: 50px 0 60px;
    overflow: hidden;
}

.home-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.home-hero-text {
    flex: 1;
}

.home-hero-tagline {
    font-family: 'poppins-m';
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 12px;
}

.home-hero-title {
    font-family: 'garbata-eb';
    font-size: 60px;
    line-height: 1.1;
    color: var(--black);
}

.home-hero-title span {
    display: block;
    font-family: 'garbata-eb';
}

.home-hero-desc {
    font-family: 'didact-r';
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-top: 16px;
    max-width: 480px;
}

.home-hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-family: 'poppins-sb';
    font-size: 16px;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    opacity: 1;
}

.home-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--black);
    font-family: 'poppins-m';
    font-size: 16px;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--black);
    transition: background 0.2s;
}

.home-btn-outline:hover {
    background: rgba(0,0,0,0.06);
    opacity: 1;
}

.home-hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.home-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'poppins-m';
    font-size: 13px;
    color: #2e7d32;
    background: rgba(46,125,50,0.08);
    padding: 6px 14px;
    border-radius: 50px;
}

.home-hero-visual {
    flex-shrink: 0;
}

.home-hero-img-wrapper {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.home-hero-img-wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-logo-float {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 140px;
}

.home-hero-logo-float img {
    width: 100%;
}

/* --- USP STRIP --- */
.home-usp-strip {
    background: var(--black);
    padding: 30px 0;
}

.home-usp-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.home-usp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.home-usp-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,210,48,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--main-yellow);
}

.home-usp-text {
    display: flex;
    flex-direction: column;
}

.home-usp-text strong {
    font-family: 'poppins-sb';
    font-size: 15px;
}

.home-usp-text span {
    font-family: 'didact-r';
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* --- Section tag --- */
.home-section-tag {
    font-family: 'poppins-sb';
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-yellow);
    background: rgba(255,210,48,0.12);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* --- ABOUT --- */
.home-about {
    padding: 80px 0;
}

.home-about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.home-about-img {
    width: 35%;
    flex-shrink: 0;
}

.home-about-img img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.home-about-text {
    flex: 1;
}

.home-about-stats {
    display: flex;
    gap: 40px;
}

.home-stat {
    display: flex;
    flex-direction: column;
}

.home-stat-number {
    font-family: 'garbata-eb';
    font-size: 42px;
    color: var(--main-yellow);
    line-height: 1;
}

.home-stat-label {
    font-family: 'didact-r';
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* --- WHY (USP Cards) --- */
.home-why {
    background: #fafafa;
    padding: 80px 0;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.home-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.home-why-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,210,48,0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.home-why-card h3 {
    margin-bottom: 10px;
}

.home-why-card p {
    color: #666;
    line-height: 1.6;
}

/* --- PRODUCT --- */
.home-product {
    background: var(--main-yellow);
    padding: 80px 0;
}

.home-product-inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.home-product-info {
    width: 30%;
    flex-shrink: 0;
    position: sticky;
    top: 40px;
}

.home-product-logo img {
    width: 200px;
}

.home-product-cards {
    flex: 1;
    display: flex;
    gap: 24px;
}

.home-pcard {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.home-pcard:hover {
    transform: translateY(-6px);
}

.home-pcard-img {
    height: 280px;
    overflow: hidden;
}

.home-pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.home-pcard:hover .home-pcard-img img {
    transform: scale(1.05);
}

.home-pcard-body {
    padding: 24px 20px;
}

.home-pcard-body h3 {
    margin-bottom: 8px;
}

.home-pcard-body p {
    color: #666;
    line-height: 1.5;
}

/* --- ORDER CTA --- */
.home-order-cta {
    padding: 80px 0;
}

.home-order-box {
    background: var(--black);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-order-box-text h2,
.home-order-box-text p {
    color: var(--white);
}

.home-order-box-text p {
    opacity: 0.7;
}

.home-order-price {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.home-order-price-old {
    font-family: 'didact-r';
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.home-order-price-new {
    font-family: 'poppins-eb';
    font-size: 36px;
    color: var(--main-yellow);
}

.home-order-price-tag {
    background: #e74c3c;
    color: #fff;
    font-family: 'poppins-sb';
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.home-order-box-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.home-btn-order-big {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--main-yellow);
    color: var(--black);
    font-family: 'poppins-sb';
    font-size: 17px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-btn-order-big:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255,210,48,0.4);
    opacity: 1;
}

.home-btn-reseller {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-family: 'poppins-m';
    font-size: 14px;
    padding: 12px 20px;
    text-decoration: none;
    text-align: center;
    transition: color 0.2s;
}

.home-btn-reseller:hover {
    color: var(--white);
    opacity: 1;
}

/* --- FAQ --- */
.home-faq {
    background: #fafafa;
    padding: 80px 0;
}

.home-faq-grid {
    display: flex;
    gap: 30px;
}

.home-faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.2s;
}

.home-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.home-faq-item h3 {
    margin-bottom: 10px;
    color: var(--black);
}

.home-faq-item p {
    color: #666;
    line-height: 1.6;
}

/* --- CONTACT --- */
.home-contact {
    padding: 80px 0;
}

.home-contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.home-contact-card {
    width: 280px;
    text-align: center;
    text-decoration: none;
    padding: 30px 20px;
    border-radius: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.home-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 1;
}

.home-contact-card-img {
    width: 160px;
    margin: 0 auto 20px;
}

.home-contact-card-img img {
    width: 100%;
}

.home-contact-card h3 {
    color: var(--black);
    margin-bottom: 6px;
}

.home-contact-card p {
    color: #888;
}

/* --- FOOTER --- */
.home-footer {
    background: var(--black);
    padding: 40px 0;
}

.home-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-footer-logo {
    width: 80px;
}

.home-footer-inner p {
    color: rgba(255,255,255,0.4);
}

.home-footer-links {
    display: flex;
    gap: 24px;
}

.home-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-family: 'poppins-m';
    font-size: 14px;
    transition: color 0.2s;
}

.home-footer-links a:hover {
    color: var(--main-yellow);
    opacity: 1;
}

/* --- Fixed WA --- */
.home-wa-fixed {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 100;
    transition: transform 0.2s;
}

.home-wa-fixed:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media screen and (max-width: 1200px) {
    .home-hero-title {
        font-size: 48px;
    }

    .home-hero-img-wrapper {
        width: 340px;
        height: 340px;
    }

    .home-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .home-hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .home-hero-desc {
        max-width: 100%;
    }

    .home-hero-cta,
    .home-hero-badges {
        justify-content: center;
    }

    .home-hero-img-wrapper {
        width: 280px;
        height: 280px;
    }

    .home-hero-logo-float {
        width: 100px;
    }

    .home-usp-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-usp-item {
        width: 45%;
    }

    .home-about-inner {
        flex-direction: column;
        text-align: center;
    }

    .home-about-img {
        width: 60%;
    }

    .home-about-stats {
        justify-content: center;
    }

    .home-product-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-product-info {
        width: 100%;
        position: static;
    }

    .home-product-cards {
        width: 100%;
    }

    .home-order-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .home-contact-grid {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .home-hero {
        padding: 30px 0 40px;
    }

    .home-hero-title {
        font-size: 36px;
    }

    .home-hero-desc {
        font-size: 16px;
    }

    .home-usp-item {
        width: 100%;
    }

    .home-about,
    .home-why,
    .home-product,
    .home-faq,
    .home-contact,
    .home-order-cta {
        padding: 50px 0;
    }

    .home-about-img {
        width: 80%;
    }

    .home-why-grid {
        grid-template-columns: 1fr;
    }

    .home-product-cards {
        flex-direction: column;
    }

    .home-pcard-img {
        height: 220px;
    }

    .home-faq-grid {
        flex-direction: column;
        gap: 0;
    }

    .home-order-price-new {
        font-size: 28px;
    }

    .home-order-box {
        border-radius: 20px;
        padding: 30px 20px;
    }

    .home-contact-card {
        width: 100%;
    }

    .home-footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .home-stat-number {
        font-size: 32px;
    }

    .home-about-stats {
        gap: 24px;
    }
}

@media screen and (max-width: 480px) {
    .home-hero-title {
        font-size: 30px;
    }

    .home-hero-img-wrapper {
        width: 220px;
        height: 220px;
    }

    .home-btn-primary,
    .home-btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    .home-hero-logo-float {
        width: 80px;
    }
}
