/* ==========================================================================
   Club BBlinks - Style Sheet (Mobile Only, Classical Red/Brown Theme)
   ========================================================================== */

:root {
    /* Colors: Classical Red / Purplish-red / Brown */
    --color-dark-red: #3b0e14;    /* Deep burgundy */
    --color-brown: #4a2511;       /* Dark brown */
    --color-black: #1a0808;       /* Very dark reddish-black */
    --color-ink: #25100f;
    --color-brown-text: #5b332b;
    --color-ivory: #f7f3e8;
    --color-champagne: #efe2c7;
    --color-rose-light: #f1e6dc;
    --color-gold: #e6c27a;        /* Elegant Gold */
    --color-gold-light: #ffebaa;
    --color-text-light: #fdf6e3;  /* Warm white/cream */
    --color-muted: #d0b8b8;
    --color-line: #06c755;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --font-sans: 'Zen Kaku Gothic New', sans-serif;
    
    /* Layout */
    --mobile-width: 480px; /* Force mobile view */
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #000; /* Outer background for PC viewing */
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-light);
    background-color: var(--color-black);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold) !important; }
.text-muted { color: var(--color-muted) !important; }
.text-sm { font-size: 0.85rem; }
.text-lg { font-size: 1.2rem; }
.text-xl { font-size: 1.5rem; }

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.bg-black { background-color: var(--color-black); }
.bg-dark-red { background-color: var(--color-dark-red); }
.bg-brown { background-color: var(--color-brown); }
.bg-champagne {
    background: linear-gradient(180deg, #f7f0e2 0%, var(--color-champagne) 100%);
}
.bg-rose-light {
    background: linear-gradient(180deg, #f8f0ea 0%, var(--color-rose-light) 100%);
}

.bg-pattern-red {
    background-color: var(--color-dark-red);
    background-image: radial-gradient(rgba(230, 194, 122, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-beige-light { background-color: var(--color-ivory); }
.text-dark { color: var(--color-black) !important; }

.bg-beige-light,
.bg-champagne,
.bg-rose-light {
    color: var(--color-ink);
}

.bg-beige-light .section-title,
.bg-champagne .section-title,
.bg-rose-light .section-title {
    color: var(--color-ink);
}

.bg-beige-light .section-note,
.bg-champagne .section-note,
.bg-rose-light .section-note {
    color: var(--color-brown-text);
}

.tap-icon {
    transform: rotate(-45deg);
    display: inline-block;
    margin-right: 5px;
}

/* =========================================
   Mobile Wrapper
   ========================================= */
.mobile-wrapper {
    width: 100%;
    max-width: var(--mobile-width);
    margin: 0 auto;
    background-color: var(--color-ivory);
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    min-height: 100vh;
    overflow: hidden;
}

.section-padding {
    padding: 60px 20px;
}

.content-inner {
    position: relative;
    z-index: 2; /* Above particles */
}

.section-target:not(.hero) {
    opacity: 1;
    visibility: visible;
    filter: none;
    transform: none;
}

.section-target:not(.hero) > .content-inner {
    opacity: 0;
    visibility: hidden;
    filter: blur(10px);
    transform: translateY(34px);
    transition: opacity 1.1s ease, visibility 1.1s ease, filter 1.1s ease, transform 1.1s ease;
}

.section-target:not(.hero).revealed > .content-inner {
    opacity: 1;
    visibility: visible;
    filter: blur(0);
    transform: translateY(0);
}

/* =========================================
   Loader
   ========================================= */
.loader-wrap {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrap.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-glasses {
    position: relative;
    width: 86px;
    height: 72px;
    margin: 0 auto;
    filter: drop-shadow(0 0 12px rgba(230, 194, 122, 0.35));
}

.loader-flute {
    position: absolute;
    top: 5px;
    width: 18px;
    height: 42px;
    border: 2px solid var(--color-gold);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(to bottom, rgba(255, 235, 170, 0.08), rgba(230, 194, 122, 0.22));
}

.loader-flute::before {
    content: '';
    position: absolute;
    top: 41px;
    left: 50%;
    width: 2px;
    height: 18px;
    background: var(--color-gold);
    transform: translateX(-50%);
}

.loader-flute::after {
    content: '';
    position: absolute;
    top: 58px;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-gold);
    transform: translateX(-50%);
}

.loader-flute-left {
    left: 24px;
}

.loader-flute-right {
    right: 24px;
}

.loader-shine {
    position: absolute;
    width: 11px;
    height: 11px;
    background: var(--color-gold-light);
    box-shadow: 0 0 10px rgba(255, 235, 170, 0.9), 0 0 22px rgba(230, 194, 122, 0.55);
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0.45);
    animation: diamondSparkle 1.2s infinite ease-in-out;
}

.loader-shine-main {
    top: 7px;
    left: 50%;
}

.loader-shine-sub {
    top: 20px;
    left: 60%;
    width: 7px;
    height: 7px;
    animation-delay: 0.35s;
}

@keyframes diamondSparkle {
    0%, 100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.45);
    }
    45% {
        opacity: 1;
        transform: translate(-50%, -60%) rotate(45deg) scale(1.15);
    }
    70% {
        opacity: 0.75;
        transform: translate(-50%, -70%) rotate(45deg) scale(0.8);
    }
}

.loading-text {
    margin-top: 10px;
    font-family: var(--font-serif);
    color: var(--color-gold);
    letter-spacing: 2px;
    font-size: 1.1rem;
    animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* =========================================
   Sparkles (Global Particles)
   ========================================= */
#particles-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-gold-light);
    clip-path: polygon(50% 0%, 55% 45%, 100% 50%, 55% 55%, 50% 100%, 45% 55%, 0% 50%, 45% 45%);
    opacity: 0;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0% { opacity: 0; transform: translateY(0) scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: translateY(-20px) scale(1.5) rotate(45deg); }
    100% { opacity: 0; transform: translateY(-40px) scale(0.5) rotate(90deg); }
}

/* Wave removed */

/* =========================================
   Hero & Empathy (Combined Background)
   ========================================= */
.hero-empathy-wrapper {
    position: relative;
}

.hero-bg-fixed {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100svh;
    min-height: 600px;
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    z-index: 0;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Darken to classical red/brown mix at the top, fade to darker at bottom */
    background: linear-gradient(to bottom, rgba(45, 10, 15, 0.5) 0%, rgba(26, 8, 8, 0.95) 100%);
    z-index: 0;
}

/* Hero */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    overflow: hidden;
}

.hero-copy {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    filter: blur(18px);
    transform: translateY(10px) scale(0.94);
    pointer-events: none;
}

.hero-copy::before,
.hero-copy::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--color-gold-light);
    box-shadow: 0 0 12px rgba(255, 235, 170, 0.9), 0 0 24px rgba(230, 194, 122, 0.55);
    opacity: 0;
    transform: rotate(45deg) scale(0.45);
}

.hero-copy::before {
    top: 37%;
    left: 23%;
    animation: copySparkle 1.2s ease-in-out 1.9s infinite;
}

.hero-copy::after {
    right: 23%;
    bottom: 38%;
    width: 9px;
    height: 9px;
    animation: copySparkle 1.35s ease-in-out 2.25s infinite;
}

.hero.revealed .hero-copy {
    animation: heroCopySequence 3.4s ease forwards;
}

.hero-title {
    font-size: 2.05rem;
    line-height: 1.55;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--color-text-light);
}

.hero-copy-line {
    display: block;
    text-shadow: 0 0 4px rgba(253, 246, 227, 0.96), 0 0 16px rgba(255, 235, 170, 0.52), 0 0 34px rgba(230, 194, 122, 0.36), 0 0 46px rgba(117, 17, 30, 0.68), 0 3px 16px rgba(0,0,0,0.95);
    animation: heroTextGlow 1.7s ease-in-out 1.9s infinite;
}

.hero-copy-gold {
    color: var(--color-gold);
    text-shadow: 0 0 5px rgba(255, 235, 170, 0.98), 0 0 18px rgba(230, 194, 122, 0.72), 0 0 34px rgba(230, 194, 122, 0.42);
}

@keyframes heroCopySequence {
    0% {
        opacity: 0;
        filter: blur(18px);
        transform: translateY(10px) scale(0.94);
    }
    22%, 72% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        filter: blur(22px);
        transform: translateY(0) scale(1.18);
    }
}

@keyframes heroTextGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.18);
    }
}

@keyframes copySparkle {
    0%, 100% {
        opacity: 0;
        transform: rotate(45deg) scale(0.45);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.15);
    }
}

.hero-brand-showcase {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero.revealed .hero-brand-showcase {
    animation: heroBrandIn 1s ease 3.25s forwards;
}

@keyframes heroBrandIn {
    0% {
        opacity: 0;
        visibility: visible;
        filter: blur(12px);
        transform: scale(0.96);
    }
    100% {
        opacity: 1;
        visibility: visible;
        filter: blur(0);
        transform: scale(1);
    }
}

.hero-logo-wrap {
    position: relative;
    z-index: 4;
    width: min(86vw, 350px);
    max-width: 350px;
    transform: translateY(4px);
    filter: drop-shadow(0 0 10px rgba(255, 235, 170, 0.5)) drop-shadow(0 0 26px rgba(230, 194, 122, 0.25));
}

.hero.revealed .hero-logo-wrap {
    animation: logoFloat 5.2s ease-in-out 4.15s infinite;
}

.hero-logo {
    width: 100%;
    height: auto;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(4px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

.hero-site-label {
    position: absolute;
    top: max(26px, env(safe-area-inset-top));
    left: 20px;
    right: 20px;
    color: rgba(255, 235, 170, 0.92);
    font-family: var(--font-serif);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-align: center;
    text-shadow: 0 0 12px rgba(230, 194, 122, 0.42), 0 2px 10px rgba(0,0,0,0.65);
}

.hero-showcase-sparkle {
    position: absolute;
    z-index: 5;
    width: 12px;
    height: 12px;
    background: var(--color-gold-light);
    box-shadow: 0 0 12px rgba(255, 235, 170, 0.9), 0 0 26px rgba(230, 194, 122, 0.45);
    opacity: 0;
    transform: rotate(45deg) scale(0.5);
}

.hero.revealed .hero-showcase-sparkle {
    animation: showcaseSparkle 1.6s ease-in-out var(--sparkle-delay, 3.8s) infinite;
}

.hero-showcase-sparkle-1 {
    top: 30%;
    left: 24%;
    --sparkle-delay: 3.8s;
}

.hero-showcase-sparkle-2 {
    top: 38%;
    right: 22%;
    width: 9px;
    height: 9px;
    --sparkle-delay: 4.15s;
}

.hero-showcase-sparkle-3 {
    bottom: 30%;
    right: 30%;
    width: 14px;
    height: 14px;
    --sparkle-delay: 4.5s;
}

@keyframes showcaseSparkle {
    0%, 100% {
        opacity: 0.15;
        transform: rotate(45deg) scale(0.45);
    }
    48% {
        opacity: 1;
        transform: rotate(45deg) scale(1.2);
    }
}

.hero-scroll-cue {
    position: absolute;
    bottom: 108px;
    left: 50%;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-gold-light);
    font-family: var(--font-serif);
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: 0.08em;
    text-shadow: 0 0 10px rgba(230, 194, 122, 0.55), 0 2px 10px rgba(0,0,0,0.7);
    transform: translateX(-50%);
    animation: scrollCueFloat 1.8s ease-in-out 4.2s infinite;
    pointer-events: auto;
}

.hero-scroll-cue i {
    font-size: 0.9rem;
    margin-top: 2px;
}

.hero-scroll-cue i + i {
    margin-top: -5px;
    opacity: 0.65;
}

@keyframes scrollCueFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-height: 700px) {
    .hero,
    .hero-bg-fixed {
        min-height: 560px;
    }

    .hero-title {
        font-size: 1.72rem;
        line-height: 1.48;
    }

    .hero-logo-wrap {
        width: 292px;
        max-width: 80vw;
        transform: translateY(-4px);
    }

    .hero-site-label {
        top: max(18px, env(safe-area-inset-top));
        font-size: 0.72rem;
    }

    .hero-scroll-cue {
        bottom: 110px;
        font-size: 0.82rem;
    }

    .salary-visual-heading {
        font-size: 2rem;
    }

    .audience-path {
        min-height: 106px;
    }

    .audience-path-label {
        font-size: 0.98rem;
    }
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.8s; }
.delay-3 { transition-delay: 1.4s; }
.delay-4 { transition-delay: 2.0s; }
.delay-5 { transition-delay: 3.0s; }

.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-serif);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Empathy */
.empathy {
    position: relative;
    padding: 60px 20px 100px;
    z-index: 2;
    text-align: center;
}

.empathy-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
}

.empathy-texts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.empathy-item {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    position: relative;
}

.empathy-item i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.empathy-solution {
    font-size: 1.1rem;
    line-height: 1.8;
    background: rgba(45, 10, 15, 0.6);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(230, 194, 122, 0.2);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.empathy.bg-rose-light {
    color: var(--color-ink);
}

.empathy.bg-rose-light .text-gold {
    color: #9b6518 !important;
}

.empathy.bg-rose-light .empathy-item {
    color: var(--color-brown-text);
    text-shadow: none;
}

.empathy.bg-rose-light .empathy-item i {
    opacity: 1;
}

.empathy.bg-rose-light .empathy-solution {
    color: var(--color-ink);
    background: linear-gradient(145deg, rgba(255, 252, 244, 0.82), rgba(236, 220, 193, 0.78));
    border: 1px solid rgba(169, 109, 35, 0.2);
    box-shadow: 0 12px 28px rgba(74, 37, 17, 0.12);
}

.empathy.bg-rose-light .empathy-solution strong {
    color: var(--color-dark-red) !important;
}

/* =========================================
   Section Headers
   ========================================= */
.sub-heading {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: var(--font-sans);
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 15px auto 0;
}

.section-note {
    margin-top: 14px;
    color: var(--color-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
}

/* =========================================
   Components
   ========================================= */

/* Border utility */
.border-gold {
    border: 1px solid rgba(230, 194, 122, 0.3);
}

.rounded-img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Reasons */
.reason-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.reason-item {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, rgba(59, 14, 20, 0.94), rgba(26, 8, 8, 0.96));
    border: 1px solid rgba(230, 194, 122, 0.34);
    border-radius: 8px;
    padding: 20px 10px 26px;
    text-align: center;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-shadow: inset 0 0 18px rgba(230, 194, 122, 0.06), 0 10px 22px rgba(26, 8, 8, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reason-tap-mark {
    position: absolute;
    right: 8px;
    bottom: 7px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 0 7px rgba(230, 194, 122, 0.55));
}

.reason-tap-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(80%) sepia(41%) saturate(455%) hue-rotate(358deg) brightness(96%) contrast(89%);
    transform: rotate(18deg);
}

.reason-item:active {
    transform: scale(0.98);
    border-color: rgba(230, 194, 122, 0.55);
    background: linear-gradient(145deg, rgba(74, 20, 26, 0.98), rgba(26, 8, 8, 0.98));
}

.r-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.reason-item p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Salary */
.full-bleed-image {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
}

.salary-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.salary-hero-image {
    margin-top: -60px;
}

.salary-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 8, 8, 0.36), rgba(26, 8, 8, 0.34)), radial-gradient(circle at center, rgba(230, 194, 122, 0.08), rgba(26, 8, 8, 0.42) 72%);
    pointer-events: none;
}

.salary-image {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center 48%;
}

.salary-visual-heading {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    z-index: 2;
    color: var(--color-gold-light);
    font-family: var(--font-serif);
    font-size: 2.28rem;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: lowercase;
    text-align: center;
    transform: translateY(-50%);
    text-shadow: 0 0 8px rgba(255, 235, 170, 0.9), 0 0 22px rgba(230, 194, 122, 0.78), 0 0 36px rgba(26, 8, 8, 0.95), 0 5px 18px rgba(0,0,0,0.88);
}

.support .image-wrap {
    overflow: hidden;
}

.support-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center center;
}

.salary-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
}

.salary-hero-image + .salary-card {
    margin-top: 2.2rem !important;
}

.salary-desc {
    text-align: center;
    font-size: 0.95rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.salary-equation {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eq-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 8, 8, 0.78), rgba(74, 37, 17, 0.64));
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 2px solid rgba(230, 194, 122, 0.55);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

.eq-row-feature {
    display: block;
    padding: 18px 16px 16px;
    border-left: 2px solid var(--color-gold);
    background: linear-gradient(145deg, rgba(26, 8, 8, 0.9), rgba(74, 37, 17, 0.78));
}

.eq-main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.eq-row-feature .text-xl {
    color: var(--color-gold-light);
    font-size: 1.85rem;
    text-shadow: 0 0 14px rgba(230, 194, 122, 0.62);
}

.eq-note {
    margin-top: 10px;
    color: var(--color-text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    text-align: left;
}

.eq-note span {
    color: var(--color-gold-light);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(230, 194, 122, 0.55);
}

.eq-row span { font-size: 0.9rem; }
.eq-row strong { font-family: var(--font-serif); }

.eq-plus {
    text-align: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin: -2px 0;
}

/* Audience Navigation */
.audience-nav {
    position: relative;
    overflow: hidden;
}

.audience-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(230, 194, 122, 0.12), transparent 42%);
    pointer-events: none;
}

.audience-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.audience-path {
    position: relative;
    min-height: 118px;
    padding: 18px 8px 16px;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(150deg, rgba(26, 8, 8, 0.24), rgba(230, 194, 122, 0.08));
    box-shadow: inset 0 -1px 0 rgba(230, 194, 122, 0.22);
    -webkit-tap-highlight-color: transparent;
}

.audience-path::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, rgba(230, 194, 122, 0.14), rgba(26, 8, 8, 0.24));
    transform: translateX(-50%) rotate(45deg);
}

.audience-path-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-size: 1.08rem;
    line-height: 1.45;
    text-shadow: 0 0 10px rgba(230, 194, 122, 0.24), 0 2px 8px rgba(0,0,0,0.62);
}

.audience-path-arrow {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: var(--color-gold-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 0 8px rgba(230, 194, 122, 0.48));
    animation: audienceArrow 1.8s ease-in-out infinite;
}

.audience-path-arrow i {
    font-size: 0.86rem;
    line-height: 0.8;
}

.audience-path-arrow i + i {
    margin-top: -4px;
    opacity: 0.62;
}

.audience-room-slider {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--color-dark-red);
    box-shadow: 0 14px 30px rgba(74, 37, 17, 0.18);
}

.audience-room-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 8, 8, 0.08), rgba(26, 8, 8, 0.22));
    pointer-events: none;
    z-index: 2;
}

.audience-room-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: audienceRoomFade 12s ease-in-out infinite;
}

.audience-room-slide-2 {
    animation-delay: 4s;
}

.audience-room-slide-3 {
    animation-delay: 8s;
}

.audience-room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04);
    animation: audienceRoomZoom 12s ease-in-out infinite;
}

.audience-room-slide-2 img {
    animation-delay: 4s;
}

.audience-room-slide-3 img {
    animation-delay: 8s;
}

@keyframes audienceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes audienceRoomFade {
    0%, 8% { opacity: 0; }
    14%, 36% { opacity: 1; }
    44%, 100% { opacity: 0; }
}

@keyframes audienceRoomZoom {
    0% { transform: scale(1.06); }
    36% { transform: scale(1.01); }
    100% { transform: scale(1.06); }
}

@media (max-height: 700px) {
    .salary-visual-heading {
        font-size: 2rem;
    }

    .audience-path {
        min-height: 106px;
    }

    .audience-path-label {
        font-size: 0.98rem;
    }
}

/* Reason Modal */
body.modal-open {
    overflow: hidden;
}

.reason-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.reason-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reason-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 2, 3, 0.76);
    backdrop-filter: blur(6px);
}

.reason-modal__panel {
    position: relative;
    width: min(100%, 420px);
    max-height: min(78vh, 560px);
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid rgba(230, 194, 122, 0.45);
    background: linear-gradient(145deg, rgba(45, 10, 15, 0.96), rgba(26, 8, 8, 0.98));
    box-shadow: 0 22px 54px rgba(0,0,0,0.58), inset 0 0 28px rgba(230, 194, 122, 0.06);
    padding: 30px 22px 26px;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.reason-modal.is-open .reason-modal__panel {
    transform: translateY(0) scale(1);
}

.reason-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(230, 194, 122, 0.35);
    border-radius: 50%;
    background: rgba(0,0,0,0.28);
    color: var(--color-gold);
    display: grid;
    place-items: center;
}

.reason-modal__label {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.reason-modal__title {
    color: var(--color-text-light);
    font-size: 1.45rem;
    line-height: 1.45;
    text-align: center;
    padding: 0 24px;
    margin-bottom: 16px;
    text-shadow: 0 0 12px rgba(230, 194, 122, 0.25);
}

.reason-modal__detail {
    color: var(--color-muted);
    font-size: 0.96rem;
    line-height: 1.85;
}

/* Support */
.support-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(230, 194, 122, 0.2);
}

.support-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.s-num {
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.support-list p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Rental */
.img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(230, 194, 122, 0.2);
}

.img-box p {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(26, 8, 8, 0.85);
    color: var(--color-gold);
    padding: 8px;
    text-align: center;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 15px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 1px;
    height: 100%;
    background: var(--color-gold);
    opacity: 0.3;
}

.timeline li {
    position: relative;
    padding-bottom: 30px;
    display: flex;
    gap: 15px;
}

.timeline li::before {
    content: '';
    position: absolute;
    top: 5px; left: -19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 2px solid var(--color-black);
}

.time {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    min-width: 50px;
}

.event {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 8px;
    flex: 1;
}

.event strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.event span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.event.highlight {
    background: rgba(230, 194, 122, 0.15);
    border: 1px solid var(--color-gold);
}

/* Experience */
.exp-box {
    background: rgba(0,0,0,0.6);
    padding: 25px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.exp-box p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.exp-box p:last-child { margin-bottom: 0; }

/* Flow */
.flow-steps {
    text-align: center;
}

.step {
    background: rgba(26, 8, 8, 0.8);
    border: 1px solid rgba(230, 194, 122, 0.3);
    border-radius: 8px;
    padding: 20px;
}

.step-num {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.step-arrow {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin: 10px 0;
    opacity: 0.5;
}

/* Light section readability */
.salary.bg-rose-light .salary-card,
.support.bg-rose-light .support-list,
.wwork.bg-champagne .timeline-box,
.flow.bg-rose-light .flow-steps {
    color: var(--color-ink);
}

.salary.bg-rose-light .salary-desc {
    color: var(--color-brown-text);
    text-shadow: none;
}

.salary.bg-rose-light .eq-row {
    color: var(--color-text-light);
    background: linear-gradient(145deg, rgba(59, 14, 20, 0.96), rgba(26, 8, 8, 0.92));
    border: 1px solid rgba(230, 194, 122, 0.38);
    border-left: 3px solid rgba(230, 194, 122, 0.76);
    box-shadow: 0 12px 26px rgba(59, 14, 20, 0.26);
}

.salary.bg-rose-light .eq-row-feature {
    background: linear-gradient(145deg, rgba(74, 20, 26, 0.98), rgba(26, 8, 8, 0.96));
    border-color: rgba(230, 194, 122, 0.5);
    border-left-color: var(--color-gold);
}

.salary.bg-rose-light .eq-row.text-gold {
    color: var(--color-text-light) !important;
}

.salary.bg-rose-light .eq-row strong,
.salary.bg-rose-light .eq-row-feature .text-xl {
    color: var(--color-gold-light);
    text-shadow: 0 0 12px rgba(230, 194, 122, 0.48);
}

.salary.bg-rose-light .eq-note {
    color: var(--color-text-light);
}

.salary.bg-rose-light .eq-note span,
.salary.bg-rose-light .eq-plus {
    color: var(--color-gold-light);
    text-shadow: 0 0 10px rgba(230, 194, 122, 0.38);
}

.audience-nav.bg-champagne::before {
    background: radial-gradient(circle at 50% 0%, rgba(169, 109, 35, 0.18), transparent 46%);
}

.audience-nav.bg-champagne .audience-path {
    color: var(--color-ink);
    background: linear-gradient(150deg, rgba(255, 252, 244, 0.82), rgba(231, 210, 176, 0.72));
    border: 1px solid rgba(169, 109, 35, 0.2);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.6), 0 12px 26px rgba(74, 37, 17, 0.1);
}

.audience-nav.bg-champagne .audience-path::after {
    background: linear-gradient(135deg, rgba(231, 210, 176, 0.86), rgba(255, 252, 244, 0.88));
    border-right: 1px solid rgba(169, 109, 35, 0.12);
    border-bottom: 1px solid rgba(169, 109, 35, 0.12);
}

.audience-nav.bg-champagne .audience-path-label {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.72);
}

.audience-nav.bg-champagne .audience-path-arrow {
    color: #9b6518;
    filter: drop-shadow(0 0 6px rgba(169, 109, 35, 0.24));
}

.support.bg-rose-light .support-list li {
    border-bottom-color: rgba(91, 51, 43, 0.18);
}

.support.bg-rose-light .support-list p {
    color: var(--color-ink);
}

.support.bg-rose-light .s-num {
    color: #9b6518;
}

.support-message,
.exp-message {
    font-size: 0.94rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.support-message {
    color: var(--color-brown-text);
    padding: 18px 18px 0;
    border-top: 1px solid rgba(169, 109, 35, 0.22);
}

.exp-message {
    color: var(--color-text-light);
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(230, 194, 122, 0.22);
    border-radius: 8px;
    padding: 18px;
    backdrop-filter: blur(4px);
}

.wwork.bg-champagne .text-gold {
    color: #9b6518 !important;
}

.wwork.bg-champagne .timeline::before {
    background: #9b6518;
    opacity: 0.42;
}

.wwork.bg-champagne .timeline li::before {
    background: #9b6518;
    border-color: #f7f0e2;
}

.wwork.bg-champagne .time {
    color: var(--color-brown-text);
}

.wwork.bg-champagne .event {
    color: var(--color-ink);
    background: rgba(255, 252, 244, 0.78);
    border: 1px solid rgba(169, 109, 35, 0.16);
    box-shadow: 0 10px 24px rgba(74, 37, 17, 0.1);
}

.wwork.bg-champagne .event span {
    color: #6f4b43;
}

.wwork.bg-champagne .event.highlight {
    background: linear-gradient(145deg, rgba(255, 250, 239, 0.95), rgba(235, 216, 184, 0.88));
    border-color: rgba(169, 109, 35, 0.38);
}

.flow.bg-rose-light .step {
    color: var(--color-ink);
    background: rgba(255, 252, 244, 0.78);
    border: 1px solid rgba(169, 109, 35, 0.18);
    box-shadow: 0 10px 24px rgba(74, 37, 17, 0.1);
}

.flow.bg-rose-light .step-content h4 {
    color: var(--color-ink);
}

.flow.bg-rose-light .step-content h4.text-gold {
    color: var(--color-dark-red) !important;
}

.flow.bg-rose-light .step-content p {
    color: #6f4b43;
}

.flow.bg-rose-light .step-arrow {
    color: #9b6518;
    opacity: 0.74;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(230, 194, 122, 0.2);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    color: var(--color-text-light);
    font-size: 1rem;
    font-family: var(--font-sans);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-q i {
    color: var(--color-gold);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-q.active i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-a p {
    padding-bottom: 15px;
    font-size: 0.9rem;
    color: #4f2b2b;
    line-height: 1.85;
}

/* Form */
.form-wrapper {
    background: rgba(26, 8, 8, 0.8);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(230, 194, 122, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-gold);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(230, 194, 122, 0.3);
    background: rgba(0,0,0,0.5);
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--color-gold), #b8860b);
    color: var(--color-black);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

.btn-line {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: var(--color-line);
    color: white;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
}

.btn-line i {
    font-size: 1.3rem;
    margin-right: 5px;
}

/* Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: calc(var(--mobile-width) - 28px);
    display: flex;
    gap: 8px;
    padding: 8px;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    border: 1px solid rgba(230, 194, 122, 0.42);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(26, 8, 8, 0.9), rgba(59, 14, 20, 0.88));
    box-shadow: 0 -10px 30px rgba(0,0,0,0.42), inset 0 0 20px rgba(230, 194, 122, 0.06);
    backdrop-filter: blur(12px);
}

.fixed-cta.visible {
    opacity: 1;
    visibility: visible;
}

.fixed-btn {
    flex: 1;
    min-height: 48px;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.btn-line-fixed {
    border: 1px solid rgba(230, 194, 122, 0.26);
    background: linear-gradient(135deg, rgba(59, 14, 20, 0.92), rgba(26, 8, 8, 0.88));
}

.btn-line-fixed i {
    color: var(--color-line);
    font-size: 1.15rem;
    filter: drop-shadow(0 0 6px rgba(6, 199, 85, 0.45));
}

.btn-consult-fixed {
    border: 1px solid rgba(230, 194, 122, 0.52);
    background: linear-gradient(135deg, rgba(230, 194, 122, 0.28), rgba(74, 37, 17, 0.88));
    color: var(--color-gold-light);
}

.btn-consult-fixed i {
    color: var(--color-gold);
    font-size: 1rem;
}
