/* ========================================
   PRODUCT: NEXUS-H HOSPITALITY — Styles
   ======================================== */

/* ---- Hero ---- */
.hosp-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 90px;
    overflow: hidden;
}

.hosp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 20%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 25% 75%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, #0A0A0F 0%, #0F0F18 100%);
    z-index: 0;
}

.hosp-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hosp-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.hosp-hero__badge {
    display: inline-block;
    background: var(--color-secondary);
    color: #1a1a1a;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 22px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.6s ease both;
}

.hosp-hero__title {
    font-family: var(--font-en);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hosp-hero__tagline {
    font-size: clamp(1.15rem, 2.8vw, 1.6rem);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hosp-hero__desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hosp-hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hosp-hero__btn {
    border-radius: var(--border-radius-pill);
}

.hosp-hero__btn--gold {
    background: var(--color-secondary);
    color: #1a1a1a;
    border-color: var(--color-secondary);
    font-weight: 600;
}

.hosp-hero__btn--gold:hover {
    background: #c9a432;
    border-color: #c9a432;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.hosp-hero__stars {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1;
    animation: fadeIn 1s ease 0.6s both;
}

.hosp-hero__stars span {
    color: var(--color-secondary);
    font-size: 1.2rem;
    opacity: 0.5;
    animation: starPulse 2s ease-in-out infinite;
}

.hosp-hero__stars span:nth-child(2) {
    animation-delay: 0.15s;
}

.hosp-hero__stars span:nth-child(3) {
    animation-delay: 0.3s;
}

.hosp-hero__stars span:nth-child(4) {
    animation-delay: 0.45s;
}

.hosp-hero__stars span:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes starPulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

/* ---- Market Opportunity ---- */
.hosp-market {
    background: var(--color-bg-section);
    padding: 100px 0 120px;
}

.hosp-market__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 56px;
}

.hosp-market__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hosp-stat {
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 44px 28px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all var(--transition-base);
}

.hosp-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.25);
}

.hosp-stat__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.hosp-stat__number {
    display: block;
    font-family: var(--font-en);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hosp-stat__text {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.5;
}

/* ---- Use Cases ---- */
.hosp-cases {
    background: var(--color-bg-dark);
    padding: 100px 0 120px;
}

.hosp-cases__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 56px;
}

.hosp-cases__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.hosp-case {
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 32px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
}

.hosp-case:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(212, 175, 55, 0.15);
}

.hosp-case__emoji {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 16px;
}

.hosp-case__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 8px;
}

.hosp-case__example {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-style: italic;
}

/* ---- Implementation Options ---- */
.hosp-impl {
    background: var(--color-bg-section);
    padding: 100px 0 120px;
}

.hosp-impl__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 56px;
}

.hosp-impl__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hosp-opt {
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 44px 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.hosp-opt::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.hosp-opt[data-accent="#D4AF37"]::before {
    background: #D4AF37;
}

.hosp-opt[data-accent="#006C35"]::before {
    background: #006C35;
}

.hosp-opt[data-accent="#14B8A6"]::before {
    background: #14B8A6;
}

.hosp-opt:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.08);
}

.hosp-opt__emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 20px;
}

.hosp-opt__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 6px;
}

.hosp-opt__sub {
    display: block;
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.hosp-opt__desc {
    font-size: 0.92rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* ---- Benefits ---- */
.hosp-benefits {
    background: var(--color-bg-dark);
    padding: 100px 0 120px;
}

.hosp-benefits__title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 56px;
}

.hosp-benefits__list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hosp-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
}

.hosp-benefit:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateX(-4px);
}

.hosp-benefit__check {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hosp-benefit__text {
    font-size: 1rem;
    color: var(--color-text-white);
    line-height: 1.5;
}

/* ---- Pricing ---- */
.hosp-pricing {
    background: var(--color-bg-section);
    padding: 100px 0 120px;
}

.hosp-price-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 56px 44px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.hosp-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), rgba(212, 175, 55, 0.3));
}

.hosp-price-card__label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-bottom: 12px;
}

.hosp-price-card__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hosp-price-card__num {
    font-family: var(--font-en);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -1px;
}

.hosp-price-card__unit {
    font-size: 1rem;
    color: var(--color-text-gray);
}

.hosp-price-card__note {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hosp-price-card__btn {
    background: var(--color-secondary);
    color: #1a1a1a;
    border-color: var(--color-secondary);
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    width: 100%;
}

.hosp-price-card__btn:hover {
    background: #c9a432;
    border-color: #c9a432;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

/* ---- CTA ---- */
.hosp-cta {
    background: linear-gradient(135deg, #8B6914 0%, #D4AF37 50%, #8B6914 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hosp-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hosp-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hosp-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hosp-cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.hosp-cta__btn {
    background: #1a1a1a;
    color: var(--color-secondary);
    border-color: #1a1a1a;
    border-radius: var(--border-radius-pill);
    font-size: 1.05rem;
    font-weight: 600;
}

.hosp-cta__btn:hover {
    background: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hosp-market__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hosp-cases__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hosp-impl__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hosp-hero {
        padding: 120px 0 70px;
        min-height: 50vh;
    }

    .hosp-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hosp-hero__btn {
        width: 100%;
        max-width: 320px;
    }

    .hosp-hero__stars {
        bottom: 24px;
    }

    .hosp-market {
        padding: 70px 0 80px;
    }

    .hosp-market__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hosp-cases {
        padding: 70px 0 80px;
    }

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

    .hosp-impl {
        padding: 70px 0 80px;
    }

    .hosp-impl__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hosp-benefits {
        padding: 70px 0 80px;
    }

    .hosp-pricing {
        padding: 70px 0 80px;
    }

    .hosp-price-card {
        padding: 40px 24px;
    }

    .hosp-cta {
        padding: 60px 0;
    }
}

@media (max-width: 380px) {
    .hosp-cases__grid {
        grid-template-columns: 1fr;
    }
}