/* assets/css/cinematic-style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-main: #080a0d;
    --bg-surface: #0f131a;
    --bg-card: #151a24;
    --bg-glass: rgba(21, 26, 36, 0.75);
    --border-subtle: #222938;
    --border-focus: #3d4a61;
    --accent-gold: #d4a373;
    --accent-gold-hover: #e3b689;
    --accent-gold-glow: rgba(212, 163, 115, 0.25);
    --text-pure: #ffffff;
    --text-body: #cbd5e1;
    --text-muted: #8391a5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-padding-top: 85px;
}

/* Lenis Buttery Momentum Scroll Core */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Process Card & Gear Price */
.process-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 163, 115, 0.5) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.gear-price-box {
    background: rgba(212, 163, 115, 0.08);
    border: 1px solid rgba(212, 163, 115, 0.35);
    border-radius: 8px;
    padding: 0.38rem 0.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
}
.gear-price-box .price-title {
    font-size: 0.66rem;
    text-transform: none; /* Hilangkan all-caps agar proporsional dan tidak menabrak border */
    letter-spacing: 0.15px;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.gear-price-box .price-amount {
    font-size: 0.81rem;
    font-weight: 700;
    color: #ffc43d;
    font-family: var(--font-heading);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    margin-left: auto;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-heading);
    color: var(--text-pure);
    letter-spacing: -0.02em;
}

/* Navbar */
.navbar-cinematic {
    background-color: rgba(8, 10, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-cinematic.scrolled {
    padding: 0.7rem 0;
    background-color: rgba(8, 10, 13, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.navbar-brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.navbar-brand-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    font-weight: 700;
    margin-top: -3px;
}

.nav-link-cinematic {
    color: var(--text-body) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link-cinematic:hover, .nav-link-cinematic.active {
    color: var(--accent-gold) !important;
}

/* Gold Buttons */
.btn-gold {
    background: linear-gradient(135deg, #d4a373, #b88656);
    color: #080a0d !important;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    box-shadow: 0 6px 20px var(--accent-gold-glow);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e3b689, #c79261);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
    color: #080a0d !important;
}

.btn-outline-gold {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #080a0d !important;
    transform: translateY(-2px);
}

/* Category Switcher Pills */
.category-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
}

.category-pill-btn {
    background: rgba(21, 26, 36, 0.85);
    border: 1px solid var(--border-subtle);
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.category-pill-btn:hover {
    color: #fff;
    border-color: var(--accent-gold);
    background: rgba(30, 37, 50, 0.9);
}

.category-pill-btn.active {
    background: var(--accent-gold);
    color: #080a0d;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px var(--accent-gold-glow);
}

/* More Category WhatsApp Prominent Pill (100% Kontras & Terlihat Jelas) */
.more-category-wrapper {
    position: relative;
    z-index: 5;
}
.more-category-pill {
    background: rgba(21, 26, 36, 0.95);
    border: 1px solid rgba(212, 163, 115, 0.45);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.25s ease;
}
.more-category-pill:hover {
    border-color: var(--accent-gold);
}
.more-category-text {
    color: #f8fafc;
    font-size: 0.88rem;
    font-weight: 600;
}
.btn-whatsapp-pill {
    background: #25D366;
    color: #0b0e14 !important;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.5);
    transition: all 0.25s ease;
    border: none;
}
.btn-whatsapp-pill:hover {
    background: #2bf075;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.8);
}

/* Hero Carousel Section */
.hero-showcase-section {
    position: relative;
    padding-top: 6.5rem;
    padding-bottom: 4rem;
    background: radial-gradient(circle at 50% 20%, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 480px;
    max-height: 700px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #050608;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-slide-item {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 480px;
    max-height: 700px;
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Vignette & Cinematic Overlays */
.hero-vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(8, 10, 13, 0.4) 0%, rgba(8, 10, 13, 0.2) 50%, rgba(8, 10, 13, 0.95) 100%),
                radial-gradient(ellipse at center, transparent 40%, rgba(8, 10, 13, 0.7) 100%);
    pointer-events: none;
}


.btn-cinema-watch {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cinema-watch:hover {
    background: rgba(212, 163, 115, 0.25);
    border-color: var(--accent-gold);
    color: #ffc43d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Overlay Caption Content */
.hero-caption-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 3;
    pointer-events: auto;
}

.hero-cat-badge {
    background: rgba(212, 163, 115, 0.2);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 163, 115, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(8px);
}

.hero-slide-title {
    font-size: 2.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.hero-slide-tagline {
    font-size: 1.05rem;
    color: #e2e8f0;
    max-width: 650px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Cinema Carousel Controls */
.carousel-btn-cinema {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 19, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.carousel-btn-cinema:hover {
    background: var(--accent-gold);
    color: #080a0d;
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn-prev { left: 20px; }
.carousel-btn-next { right: 20px; }

/* Specs Badges Strip */
.specs-strip {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(15, 19, 26, 0.4);
    padding: 1.5rem 0;
}

.spec-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 163, 115, 0.12);
    border: 1px solid rgba(212, 163, 115, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
    position: relative;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 163, 115, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.pricing-card.popular-card {
    border: 1.5px solid var(--accent-gold);
    background: linear-gradient(180deg, #18202d 0%, #131720 100%);
    box-shadow: 0 15px 35px var(--accent-gold-glow);
}

.popular-badge-pill {
    position: absolute;
    top: -13px;
    right: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #ffd166, #d4a373);
    color: #080a0d;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.price-start-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.price-amount {
    font-size: clamp(1.4rem, 2.2vw, 1.95rem);
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Gear Section */
.gear-section {
    padding: 6rem 0;
    position: relative;
}

.gear-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.05rem 0.85rem;
    transition: all 0.25s ease;
    height: 100%;
}

.gear-card:hover {
    border-color: rgba(212, 163, 115, 0.4);
    transform: translateY(-4px);
}

.gear-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(212, 163, 115, 0.1);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wa-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    color: #fff !important;
}

.floating-wa-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: wa-pulse 2s infinite ease-out;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Footer */
.footer-cinematic {
    background-color: #05070a;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem 0;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--accent-gold);
    color: #080a0d;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Responsive Optimization: Tablet Landscape, Tablet Portrait & Mobile */
@media (max-width: 1199px) {
    .hero-video-container {
        height: auto !important;
        min-height: unset !important;
        max-height: none !important;
        border-radius: 20px;
        background: #0b0e14;
        overflow: hidden;
    }
    .hero-slide-item {
        height: auto !important;
        min-height: unset !important;
        max-height: none !important;
        display: flex;
        flex-direction: column;
    }
    .hero-media-wrapper {
        position: relative !important;
        width: 100%;
        height: 380px;
        aspect-ratio: 16/9;
        overflow: hidden;
        background: #000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .hero-video-player {
        position: relative !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .hero-video-fallback-bg {
        position: relative !important;
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
    }
    .hero-vignette-overlay {
        display: none; /* Hilangkan overlay gelap pekat agar video preview 100% jernih dan terlihat */
    }
    .hero-caption-content {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        padding: 1.6rem 2rem !important;
        background: #0d1118;
    }
    .hero-slide-title {
        font-size: 1.85rem;
        margin-bottom: 0.4rem;
    }
    .hero-slide-tagline {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        color: #94a3b8;
    }
    .carousel-btn-cinema {
        top: 190px;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
    .carousel-btn-cinema:hover {
        transform: translateY(-50%) scale(1.06);
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 13, 18, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 1.25rem;
        margin-top: 0.75rem;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .navbar-cinematic .nav-link-cinematic {
        padding: 0.65rem 0.75rem !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .hero-media-wrapper {
        height: 320px;
    }
    .carousel-btn-cinema {
        top: 160px;
    }
    .hero-caption-content {
        padding: 1.4rem 1.6rem !important;
    }
    .hero-slide-title {
        font-size: 1.65rem;
    }
    .hero-slide-tagline {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-showcase-section {
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
    }
    .hero-media-wrapper {
        height: 240px;
    }
    .hero-caption-content {
        padding: 1.35rem 1.15rem !important;
    }
    .hero-cat-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        margin-bottom: 0.5rem;
    }
    .hero-slide-title {
        font-size: 1.4rem;
        margin-bottom: 0.35rem;
        line-height: 1.3;
    }
    .hero-slide-tagline {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
        color: #94a3b8;
    }
    .carousel-btn-cinema {
        display: none;
    }
    .hero-caption-content .d-flex {
        gap: 8px !important;
    }
    .hero-caption-content .btn-gold {
        width: 100%;
        justify-content: center;
        font-size: 0.82rem;
        padding: 0.55rem 1rem;
    }
    .hero-caption-content .btn-cinema-watch,
    .hero-caption-content .btn-outline-gold {
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
        font-size: 0.76rem;
        padding: 0.48rem 0.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-showcase-section {
        padding-top: 5rem;
    }
    .hero-media-wrapper {
        height: 205px;
    }
    .hero-caption-content {
        padding: 1.1rem 0.95rem !important;
    }
    .hero-slide-title {
        font-size: 1.22rem;
    }
    .hero-slide-tagline {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .more-category-pill {
        border-radius: 16px;
        padding: 0.65rem 0.9rem !important;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .btn-whatsapp-pill {
        font-size: 0.78rem;
        padding: 0.45rem 0.85rem;
        width: 100%;
        justify-content: center;
    }
    .category-pills-container {
        gap: 0.35rem;
    }
    .category-pill-btn {
        font-size: 0.78rem;
        padding: 0.38rem 0.85rem;
    }
    #about .position-relative[style*="min-height: 380px"] {
        min-height: 260px !important;
    }
    .display-6 {
        font-size: 1.7rem;
    }
    .pricing-card {
        padding: 1.75rem 1.25rem;
    }
}

/* Tablet Landscape & Medium Screen Pricing Rules */
@media (min-width: 768px) and (max-width: 1199px) {
    .pricing-card {
        padding: 1.85rem 1.45rem;
    }
    .price-amount {
        font-size: 1.65rem;
    }
}

/* Tablet Landscape Navbar & Gear Rules (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-cinematic {
        padding: 0.6rem 0;
    }
    .navbar-brand-text {
        font-size: 1.15rem;
        letter-spacing: 1px;
    }
    .navbar-brand-sub {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
    }
    .nav-link-cinematic {
        font-size: 0.82rem;
        padding: 0.35rem 0.5rem !important;
        white-space: nowrap;
    }
    .navbar-nav {
        gap: 3px !important;
        flex-wrap: nowrap !important;
    }
    .navbar-nav .btn-gold.btn-sm {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.78rem !important;
        white-space: nowrap;
    }
    .navbar-collapse {
        flex-wrap: nowrap !important;
    }

    /* Gear Price Box on Tablet Landscape */
    .gear-price-box {
        padding: 0.42rem 0.75rem;
        flex-wrap: nowrap !important;
        gap: 8px;
    }
    .gear-price-box .price-title {
        font-size: 0.68rem;
        white-space: nowrap;
    }
    .gear-price-box .price-amount {
        font-size: 0.83rem;
        white-space: nowrap;
    }
}

/* Desktop Standard (1200px - 1399px) - Keep 4 Columns Perfectly Balanced */
@media (min-width: 1200px) and (max-width: 1399px) {
    .gear-card {
        padding: 0.95rem 0.75rem;
    }
    .gear-price-box {
        padding: 0.32rem 0.5rem;
        gap: 4px;
    }
    .gear-price-box .price-title {
        font-size: 0.63rem;
    }
    .gear-price-box .price-amount {
        font-size: 0.78rem;
    }
}

/* Scroll Reveal & Buttery Animations */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-fade-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.process-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 163, 115, 0.6) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 163, 115, 0.15);
}

.gear-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.gear-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 163, 115, 0.5) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
}

.package-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 163, 115, 0.6) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
}
