/* ================================
   HERO
================================ */

/* HERO OVERLAY */
.hn-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hn-hero-content {
    position: relative;
    z-index: 2;
}

/* HERO CTA CARD */
.hn-hero-cta-card {
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* URGENCY */
.hn-hero-urgency {
    margin-top: 6px;
    font-size: 13px;
    color: #FFD166;
    font-weight: 500;
}

/* TRUST BADGES */
.hn-hero-trust {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hn-hero-trust-item {
    font-size: 12px;
    background: rgba(255,255,255,0.14);
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
}

/* ================================
   EXPERIENCE SECTION
================================ */

.hn-exp-section {
    padding-top: 70px;
}

/* HEADER */
.hn-section-head {
    text-align: center;
    margin-bottom: 50px;
}

/* DAY BLOCK */
.hn-exp-block {
    margin-bottom: 60px;
}

/* DAY LABEL */
.hn-exp-day {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #FF5527;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* TITLE */
.hn-exp-title {
    font-size: 22px;
    margin-bottom: 22px;
    font-weight: 600;
}

/* GRID */
.hn-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ITEM */
.hn-exp-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hn-exp-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* TIME */
.hn-exp-time {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    margin-bottom: 6px;
}

/* HIGHLIGHT */
.hn-exp-highlight {
    border-left: 3px solid #FF5527;
    background: #fff9f6;
}

/* EXTRA INFO */
.hn-exp-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hn-exp-extra-item {
    background: #f4f6f8;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
}

/* ================================
   CTA SECTION
================================ */

.hn-cta-box {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

/* TITLE */
.hn-cta-title {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* SUBTITLE */
.hn-cta-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* PRICING */
.hn-cta-pricing {
    margin: 20px 0;
}

.hn-cta-price {
    font-size: 36px;
    font-weight: 700;
    color: #FF5527;
}

/* ================================
   GALLERY SECTION
================================ */

.hn-gallery {
    padding-top: 60px;
}

/* GRID */
.hn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ITEM */
.hn-gallery-item {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    background: #eee;
}

/* IMAGE */
.hn-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.hn-gallery-item:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {

    .hn-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

}
.hn-cta-price span {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.hn-cta-price-note {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* POINTS */
.hn-cta-points {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

/* URGENCY */
.hn-cta-urgency {
    margin-top: 12px;
    font-size: 13px;
    color: #d9534f;
    font-weight: 500;
}

/* BUTTON */
.hn-cta-btn-primary {
    margin-top: 20px;
    font-size: 16px;
    padding: 14px;
    background: var(--hn-primary);
    color: white;
}

/* ================================
   ANTI DIY SECTION
================================ */

.hn-anti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.hn-anti-card {
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* NEGATIVE */
.hn-anti-negative {
    border-top: 4px solid #e0e0e0;
}

/* POSITIVE */
.hn-anti-positive {
    border-top: 4px solid #FF5527;
    background: #fff8f5;
}

/* TITLE */
.hn-anti-title {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* LIST */
.hn-anti-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hn-anti-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* CLOSING */
.hn-anti-closing {
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

    .hn-exp-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hn-exp-title {
        font-size: 18px;
    }

    .hn-cta-box {
        padding: 24px 18px;
    }

    .hn-cta-price {
        font-size: 30px;
    }

    .hn-anti-grid {
        grid-template-columns: 1fr;
    }

    .hn-exp-block {
        margin-bottom: 40px;
    }

}

/* ================================
   GALLERY MODAL
================================ */

.hn-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.hn-gallery-modal.active {
    display: block;
}

/* BACKDROP */
.hn-gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

/* CONTENT */
.hn-gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
#hnGalleryImage {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}

/* CLOSE */
.hn-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* NAV */
.hn-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.hn-gallery-prev {
    left: 20px;
}

.hn-gallery-next {
    right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

    #hnGalleryImage {
        max-width: 95%;
        max-height: 75%;
    }

    .hn-gallery-nav {
        font-size: 22px;
    }

}