/* =========================================================================
   AYAM BROILER LAMPUNG - Ultra Premium Web App Stylesheet v2.0
   ========================================================================= */

/* --- 1. CSS Variables (Design Tokens) --- */
:root {
    /* Primary Colors */
    --clr-primary: #022c22; /* Dark Emerald - Ultra Premium */
    --clr-primary-light: #059669;
    --clr-primary-dark: #064e3b;
    
    /* Accent Colors */
    --clr-accent: #fbbf24; /* Premium Gold */
    --clr-accent-hover: #f59e0b;
    
    /* Neutral Colors */
    --clr-bg-main: #f0fdf4; /* Very light green tint */
    --clr-bg-card: rgba(255, 255, 255, 0.6);
    --clr-text-main: #1f2937;
    --clr-text-light: #4b5563;
    --clr-border: rgba(255, 255, 255, 0.4);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* V2 Glassmorphism & Shadows */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-floating: 0 20px 40px rgba(5, 150, 105, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    /* Spacing & Layout */
    --bottom-nav-height: 70px;
    --header-height: 80px;
    --ticker-height: 40px;
    
    --container-max-width: 1200px;
}

/* --- 2. Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap flash on mobile */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #f8fafc; /* Clean very light gray/blueish */
    /* Premium Dot Pattern (Subtle) */
    background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-primary-dark);
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    display: block;
}

.app-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
    padding-bottom: var(--bottom-nav-height); /* Space for bottom nav on mobile */
}

/* --- 3. Splash Screen (App Launch Experience) --- */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.splash-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 10px;
    line-height: 1.1;
}

.splash-title span {
    color: var(--clr-accent);
}

/* --- Cute Bouncing Chicken Loader --- */
.cute-chicken-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.chik-body {
    position: relative;
    width: 65px;
    height: 60px;
    background: #ffffff;
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    animation: bounceChik 0.5s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset -5px -5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    border: 3px solid #f8fafc;
}

.chik-comb {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 18px;
    background: #ef4444;
    border-radius: 15px 15px 0 0;
}

.chik-comb::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 14px;
    height: 14px;
    background: #ef4444;
    border-radius: 10px 10px 0 0;
}

.chik-comb::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 14px;
    height: 14px;
    background: #ef4444;
    border-radius: 10px 10px 0 0;
}

.chik-eye {
    position: absolute;
    top: 22px;
    width: 6px;
    height: 6px;
    background: #1f2937;
    border-radius: 50%;
    animation: blinkChik 3s infinite;
}

.chik-eye.left { left: 16px; }
.chik-eye.right { right: 16px; }

.chik-beak {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
}

.chik-wattle {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 10px;
    background: #ef4444;
    border-radius: 10px;
}

.chik-shadow {
    width: 45px;
    height: 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    margin-top: 15px;
    animation: shadowChik 0.5s infinite alternate cubic-bezier(0.5, 0.05, 1, 0.5);
}

.loading-text {
    margin-top: 25px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    animation: pulseText 1.5s infinite;
    font-size: 1rem;
}

@keyframes bounceChik {
    from { transform: translateY(0) scaleY(0.95); }
    to { transform: translateY(-40px) scaleY(1.05); }
}

@keyframes shadowChik {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.4); opacity: 0.2; }
}

@keyframes blinkChik {
    0%, 95%, 100% { transform: scaleY(1); }
    97.5% { transform: scaleY(0.1); }
}

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

/* --- 4. Header & Top Navigation --- */
.app-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border);
    transition: all 0.3s ease;
}

.app-header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.header-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-primary-dark);
}

/* Desktop Nav (Hidden on Mobile) */
.desktop-nav {
    display: none;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-text-light);
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width 0.3s ease;
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.desktop-cta {
    display: none;
}

/* --- 5. Hero Section --- */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Hero Image placeholder before AI generation */
    background-color: var(--clr-primary-dark);
    /* Update with actual image later */
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 120, 87, 0.9) 0%, rgba(4, 120, 87, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    color: white;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* --- 6. Buttons & Interactions --- */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 300px;
    user-select: none;
}

.btn-primary:active, .btn-secondary:active, .btn-primary-v2:active, .btn-glass:active, .btn-add-cart:active {
    transform: scale(0.95) !important;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover, .btn-primary:active {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover, .btn-secondary:active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- 7. Bottom Navigation Bar (Mobile Native App Feel) --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom); /* iOS safe area */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--clr-text-light);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 10px;
    transition: all 0.3s ease;
    flex: 1;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-nav-item.active {
    color: var(--clr-primary);
}

.bottom-nav-item.active i {
    transform: translateY(-3px) scale(1.1);
}

.bottom-nav-item:active i {
    transform: scale(0.9);
}

/* --- 8. Floating Action Button (WhatsApp) --- */
.floating-wa {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + 20px);
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366; /* Official WhatsApp Color */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: var(--shadow-floating);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover, .floating-wa:active {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

.floating-scale {
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 2s;
    opacity: 0;
    transform: scale(0);
}

/* --- 9. Animations --- */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scalePulse {
    0% { transform: scale(0.95); opacity: 0.9; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* --- 10. Desktop Enhancements (Media Queries) --- */
@media (min-width: 768px) {
    .app-container {
        padding-bottom: 0; /* No bottom nav on desktop */
    }

    .bottom-nav {
        display: none; /* Hide bottom nav on desktop */
    }

    .desktop-nav, .desktop-cta {
        display: flex;
    }
    
    .desktop-cta {
        width: auto;
        padding: 10px 20px;
    }

    .hero-heading {
        font-size: 4rem;
    }
    
    .hero-content {
        text-align: left;
        align-items: flex-start;
        padding: 40px;
        margin-right: auto;
    }
    
    .hero-subheading {
        margin-left: 0;
    }

    .hero-buttons {
        flex-direction: row;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
    }

    .floating-wa {
        bottom: 30px;
        right: 30px;
        width: 65px;
        height: 65px;
        font-size: 35px;
    }
}

/* --- 11. Custom Sections (About & Pricing) --- */
.section-container { max-width: 1000px; margin: 0 auto; padding: 60px 20px; }
.scroll-offset { scroll-margin-top: 60px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-subtitle { color: var(--clr-accent); font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }
.section-title { font-size: 2.2rem; margin: 10px 0 15px; }
.section-desc { color: var(--clr-text-light); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1px)); gap: 30px; justify-content: center; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: var(--clr-bg-card); padding: 30px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-soft); transition: transform 0.3s; border: 1px solid rgba(255,255,255,0.7); }
.glass-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.feature-icon { width: 70px; height: 70px; background: rgba(4, 120, 87, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--clr-primary); font-size: 30px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.feature-card p { color: var(--clr-text-light); font-size: 0.95rem; }

.bg-light { background-color: white; }
.pricing-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.tab-btn { padding: 12px 24px; border-radius: var(--radius-pill); border: 1px solid var(--clr-border); background: white; font-weight: 600; cursor: pointer; transition: all 0.3s; color: var(--clr-text-light); }
.tab-btn.active { background: var(--clr-primary); color: white; border-color: var(--clr-primary); box-shadow: var(--shadow-soft); }

.pricing-grid { display: none; grid-template-columns: repeat(auto-fit, minmax(300px, 1px)); gap: 30px; justify-content: center; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.pricing-grid.active-tab { display: grid; }
.pricing-grid.hidden { display: none !important; }

.price-card { background: var(--clr-bg-main); border-radius: var(--radius-md); padding: 40px 30px; border: 1px solid var(--clr-border); display: flex; flex-direction: column; position: relative; }
.popular-card { background: var(--clr-primary); color: white; transform: scale(1.05); box-shadow: var(--shadow-floating); border-color: var(--clr-primary); z-index: 2; padding: 50px 30px; }
@media (max-width: 1023px) { .popular-card { transform: scale(1); padding: 40px 30px; } }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--clr-accent); color: white; padding: 6px 16px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4); text-transform: uppercase; }

.card-header { text-align: center; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 25px; margin-bottom: 25px; }
.popular-card .card-header { border-bottom: 1px solid rgba(255,255,255,0.2); }
.package-name { display: block; font-weight: 600; font-size: 1.1rem; margin-bottom: 15px; }
.popular-card .package-name { color: rgba(255,255,255,0.9); }
.price { display: flex; justify-content: center; align-items: flex-start; margin-bottom: 5px; }
.currency { font-size: 1.2rem; font-weight: 600; margin-top: 5px; }
.amount { font-size: 2.5rem; font-family: var(--font-heading); font-weight: 800; line-height: 1; margin: 0 5px; }
.unit { font-size: 1rem; color: var(--clr-text-light); align-self: flex-end; margin-bottom: 5px; }
.popular-card .unit { color: rgba(255,255,255,0.8); }
.price-note { font-size: 0.8rem; color: var(--clr-text-light); }
.popular-card .price-note { color: rgba(255,255,255,0.7); }

.card-features { margin-bottom: 30px; flex-grow: 1; }
.card-features ul { list-style: none; }
.card-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 0.95rem; }
.card-features i { color: var(--clr-primary); }
.popular-card .card-features i { color: var(--clr-accent); }

.popular-card .btn-primary { background: white; color: var(--clr-primary-dark); box-shadow: none; }
.popular-card .btn-primary:hover { background: var(--clr-bg-main); transform: translateY(-3px); }

/* --- 12. Intersection Observer Animations --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* --- 13. Testimonials Section --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1px)); gap: 30px; justify-content: center; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--clr-text-main); margin-bottom: 25px; flex-grow: 1; }
.customer-info { display: flex; align-items: center; gap: 15px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 15px; }
.avatar { width: 45px; height: 45px; background: var(--clr-primary-light); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }
.customer-name { display: block; font-weight: 600; font-size: 0.95rem; }
.customer-type { font-size: 0.8rem; color: var(--clr-text-light); }

/* --- 14. Footer --- */
.app-footer { background-color: var(--clr-text-main); color: white; padding: 60px 20px 20px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-container { grid-template-columns: 2fr 1fr 1fr; gap: 60px; } }
.footer-logo { height: 40px; border-radius: 8px; margin-bottom: 15px; background: white; padding: 2px; }
.footer-brand h3 { color: white; margin-bottom: 15px; font-size: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-contact h4, .footer-social h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-contact ul { list-style: none; }
.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-contact i { color: var(--clr-primary-light); }
.footer-contact a:hover { color: white; text-decoration: underline; }

.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; transition: all 0.3s; }
.social-links a:hover { background: var(--clr-primary); transform: translateY(-3px); }

.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.85rem; }


/* --- V2 Features: Ticker, Premium Hero --- */

.price-ticker-wrapper { width: 100%; height: var(--ticker-height); background: var(--clr-primary); color: white; display: flex; align-items: center; overflow: hidden; position: relative; z-index: 1001; }
.price-ticker { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; }
.price-ticker span { padding-right: 50px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.price-ticker-wrapper:hover .price-ticker { animation-play-state: paused; }

.glass-header { background: rgba(255, 255, 255, 0.7) !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; border-bottom: 1px solid rgba(255,255,255,0.5) !important; box-shadow: var(--shadow-soft) !important; top: var(--ticker-height) !important; height: var(--header-height) !important; }

.v2-hero { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left !important; padding: 40px !important; margin: 0 !important; width: 100%; max-width: 650px; z-index: 2; position: relative; }
.hero-section { display: flex; flex-direction: row; align-items: center; justify-content: space-between; max-width: var(--container-max-width); margin: 0 auto; height: calc(100vh - var(--header-height) - var(--ticker-height)); background: transparent !important; }
.hero-bg-overlay { display: none; }
.badge-v2 { background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: var(--glass-border); padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 25px; box-shadow: var(--shadow-soft); color: var(--clr-primary-dark); }
.pulse-dot { width: 10px; height: 10px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }

.gradient-text { background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-heading { color: var(--clr-text-main) !important; font-size: 4.5rem !important; text-shadow: none !important; line-height: 1.1 !important; margin-bottom: 25px !important; }
.hero-subheading { color: var(--clr-text-light) !important; text-shadow: none !important; font-size: 1.15rem !important; line-height: 1.7 !important; margin-bottom: 40px !important; font-weight: 400; }
.hero-buttons { flex-direction: row !important; gap: 20px !important; }
.btn-primary-v2 { background: var(--clr-primary) !important; color: var(--clr-accent) !important; border-radius: var(--radius-pill); font-weight: 700 !important; font-family: var(--font-heading); padding: 16px 32px !important; box-shadow: var(--shadow-floating) !important; border: 2px solid transparent; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.btn-primary-v2:hover { transform: translateY(-3px); box-shadow: 0 25px 50px rgba(2, 44, 34, 0.3) !important; border: 2px solid var(--clr-accent); }
.btn-glass { background: var(--glass-bg); backdrop-filter: blur(10px); border: var(--glass-border); color: var(--clr-text-main) !important; border-radius: var(--radius-pill); font-weight: 600; padding: 16px 32px; box-shadow: var(--shadow-soft); transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.btn-glass:hover { background: rgba(255,255,255,0.8); transform: translateY(-3px); }

.live-stats-banner { background: var(--glass-bg); backdrop-filter: blur(16px); border: var(--glass-border); border-radius: var(--radius-lg); padding: 25px 35px; display: flex; align-items: center; gap: 30px; margin-top: 50px; box-shadow: var(--glass-shadow); }
.stat-item h3 { display: inline; font-size: 2.5rem; font-weight: 800; color: var(--clr-primary-dark); font-family: var(--font-heading); line-height: 1; }
.stat-unit { font-size: 1.5rem; font-weight: 700; color: var(--clr-accent); vertical-align: top; }
.stat-item p { font-size: 0.85rem; color: var(--clr-text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 5px; }
.div-line { width: 1px; height: 50px; background: rgba(0,0,0,0.1); }

.hero-image-v2 { flex: 1; display: flex; justify-content: flex-end; align-items: center;  z-index: 2; position: relative; }
.premium-image-wrapper { position: relative; width: 100%; max-width: 500px; }
.glow-effect { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: radial-gradient(circle, rgba(5,150,105,0.4) 0%, rgba(5,150,105,0) 70%); z-index: -1; filter: blur(40px); animation: pulseGlow 4s infinite alternate; }
@keyframes pulseGlow { 0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }
.floating-img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); border: 8px solid rgba(255,255,255,0.5); transform-style: preserve-3d; }

@media (max-width: 1024px) { .hero-section { flex-direction: column; height: auto; padding-top: 40px; } .v2-hero { max-width: 100%; text-align: center !important; align-items: center; padding: 20px !important; } .hero-heading { font-size: 3rem !important; } .hero-buttons { flex-direction: column !important; width: 100%; } .live-stats-banner { flex-direction: column; gap: 15px; width: 100%; text-align: center; } .div-line { height: 1px; width: 50px; } .hero-image-v2 { margin-top: 50px; justify-content: center; } }


/* --- 15. Calculator Section (V2) --- */
.calculator-section { padding: 80px 20px; position: relative; }
.calc-card { background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary)); border-radius: var(--radius-lg); padding: 50px; max-width: 900px; margin: 0 auto; box-shadow: var(--shadow-floating); position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.2); }
.calc-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); z-index: 0; }
.calc-content { position: relative; z-index: 1; text-align: center; }
.text-white { color: white !important; }
.text-accent { color: var(--clr-accent) !important; }

.calculator-ui { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: var(--radius-md); padding: 30px; margin-top: 30px; border: 1px solid rgba(255,255,255,0.2); text-align: left; }
.slider-container label { display: block; margin-bottom: 15px; font-weight: 600; font-size: 1.1rem; }
.premium-slider { -webkit-appearance: none; width: 100%; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.2); outline: none; margin-bottom: 30px; }
.premium-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 25px; height: 25px; border-radius: 50%; background: var(--clr-accent); cursor: pointer; border: 3px solid white; box-shadow: 0 0 10px rgba(0,0,0,0.3); transition: transform 0.1s; }
.premium-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .calc-results { grid-template-columns: 1fr; } .calc-card { padding: 30px 20px; } }
.result-box { background: rgba(0,0,0,0.2); padding: 20px; border-radius: var(--radius-sm); border-left: 4px solid var(--clr-accent); }
.total-box { border-left-color: #22c55e; background: rgba(34, 197, 94, 0.15); }
.result-box h4 { color: rgba(255,255,255,0.8); font-size: 0.9rem; text-transform: uppercase; margin-bottom: 5px; font-family: var(--font-body); }
.discount-text { font-size: 1.2rem; font-weight: 700; }
.total-text { font-size: 2.2rem; font-family: var(--font-heading); font-weight: 800; color: white; margin: 0; }


/* --- 16. FAQ Section --- */
.faq-section { padding: 60px 20px; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; margin-bottom: 15px; border-radius: var(--radius-sm); border: 1px solid var(--clr-border); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 20px; font-weight: 600; font-size: 1.1rem; color: var(--clr-primary-dark); background: transparent; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { transition: transform 0.3s; color: var(--clr-accent); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out; color: var(--clr-text-main); line-height: 1.6; }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }


/* =========================================================================
   --- PHASE 3: EKSTRIM OPTIMASI LAYAR MOBILE (APK FEEL) ---
   ========================================================================= */
@media (max-width: 768px) {
    /* Base Adjustments - Cleaner Canvas */
    body { background-image: none; background-color: #f0f4f8; } /* Remove dots on mobile for dashboard look */
    .app-container { padding-bottom: calc(var(--bottom-nav-height) + 25px); overflow-x: hidden; }
    .section-container { padding: 35px 15px; }

    /* Glassmorphism Navigation */
    .app-header { 
        height: 60px !important; 
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(255,255,255,0.3) !important;
        padding: 0 10px !important;
    }
    
    .header-logo-container { gap: 0; }
    .header-brand { display: none; } /* Hide text brand on mobile, icon logo is enough */
    .header-logo { height: 36px; }
    
    .desktop-cta { 
        padding: 8px 15px !important; 
        font-size: 0.8rem !important; 
        width: auto !important;
        min-width: unset !important;
    }

    /* Hero Section - Dashboard Style */
    .v2-hero { 
        padding: 20px 15px !important; 
        text-align: left !important; 
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f0f4f8 100%);
    }
    .hero-section { height: auto; min-height: unset; padding-bottom: 40px; }
    .hero-heading { font-size: 2.1rem !important; letter-spacing: -0.5px !important; line-height: 1.1 !important; }
    .hero-subheading { font-size: 0.9rem !important; line-height: 1.4; margin-bottom: 20px !important; opacity: 0.8; }
    
    /* Hero Image / Video - Full Bleed Style */
    .hero-image-v2 { 
        margin-top: 15px; 
        width: calc(100% + 30px); 
        margin-left: -15px; 
    }
    .premium-image-wrapper.video-wrapper { 
        border-radius: 0; 
        border-left: none; 
        border-right: none; 
        border-top: 1px solid rgba(255,255,255,0.3);
        border-bottom: 1px solid rgba(255,255,255,0.3);
        box-shadow: none; 
    }

    /* Bottom Nav - Native Pill Style */
    .bottom-nav { 
        height: 75px; 
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255,255,255,0.3);
        padding: 0 10px calc(env(safe-area-inset-bottom) / 2);
    }
    .bottom-nav-item { position: relative; }
    .bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: 8px;
        width: 40px;
        height: 32px;
        background: var(--clr-primary);
        opacity: 0.1;
        border-radius: 12px;
        z-index: -1;
    }
    .bottom-nav-item i { font-size: 1.4rem; }
    .bottom-nav-item.active { font-weight: 700; }

    /* APK Style Cards */
    .feature-card, .price-card, .testimonial-card {
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 10px 25px rgba(0,0,0,0.03);
        background: rgba(255,255,255,0.9);
    }
    
    .pricing-grid { padding: 0 5px; }
    .pricing-tabs { gap: 5px; overflow-x: auto; justify-content: flex-start; padding: 5px; scrollbar-width: none; }
    .pricing-tabs::-webkit-scrollbar { display: none; }
    .tab-btn { flex: 0 0 auto; padding: 10px 18px; font-size: 0.85rem; white-space: nowrap; }

    /* Layout Polish */
    .section-title { font-size: 2rem; margin-bottom: 8px; }
    .live-stats-banner { 
        background: white; 
        border: 1px solid var(--clr-border); 
        box-shadow: var(--shadow-soft);
        margin: 20px 0;
    }
}


/* --- 17. V3 Features: Floating Cart & Tracker --- */
.floating-cart { position: fixed; bottom: calc(var(--bottom-nav-height) + 20px); left: 20px; background: var(--clr-primary-dark); color: white; padding: 12px 20px; border-radius: var(--radius-pill); display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow-floating); z-index: 999; cursor: pointer; transform: translateY(150px); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.floating-cart.visible { transform: translateY(0); }
@media (max-width: 768px) { .floating-cart { bottom: calc(var(--bottom-nav-height) + 10px); left: 50%; transform: translate(-50%, 150px); width: 90%; justify-content: space-between; } .floating-cart.visible { transform: translate(-50%, 0); } }
.cart-icon { position: relative; font-size: 1.2rem; }
.cart-badge { position: absolute; top: -10px; right: -10px; background: var(--clr-accent); color: white; font-size: 0.7rem; font-weight: bold; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-info { display: flex; flex-direction: column; }
.cart-total { font-weight: 700; font-size: 1rem; }
.cart-items-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

.cart-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); z-index: 10000; display: flex; justify-content: center; align-items: flex-end; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-modal.open { opacity: 1; pointer-events: all; }
.cart-modal-content { background: white; width: 100%; max-width: 500px; border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); padding: 30px 20px; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); max-height: 80vh; display: flex; flex-direction: column; }
.cart-modal.open .cart-modal-content { transform: translateY(0); }
@media (min-width: 768px) { .cart-modal { align-items: center; } .cart-modal-content { border-radius: var(--radius-lg); transform: scale(0.9); } .cart-modal.open .cart-modal-content { transform: scale(1); } }

.cart-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--clr-border); padding-bottom: 15px; margin-bottom: 20px; }
.cart-header h3 { font-size: 1.2rem; margin: 0; }
.close-cart { background: none; border: none; font-size: 1.5rem; color: var(--clr-text-light); cursor: pointer; }
.cart-items-list { overflow-y: auto; flex-grow: 1; margin-bottom: 20px; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.item-details h4 { font-size: 0.95rem; margin-bottom: 5px; }
.item-details p { font-size: 0.85rem; color: var(--clr-primary); font-weight: 600; }
.item-actions { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--clr-border); background: white; display: flex; justify-content: center; align-items: center; cursor: pointer; }
.item-qty { font-weight: 600; font-size: 0.9rem; width: 20px; text-align: center; }

.cart-footer { border-top: 1px solid var(--clr-border); padding-top: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }

/* Add to Cart Button tweaks */
.btn-add-cart { width: 100%; background: white; border: 2px solid var(--clr-primary); color: var(--clr-primary); font-weight: 600; padding: 12px; border-radius: var(--radius-pill); cursor: pointer; transition: all 0.2s; display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 15px; }
.btn-add-cart:hover, .btn-add-cart:active { background: var(--clr-primary); color: white; }
.popular-card .btn-add-cart { border-color: white; color: var(--clr-primary); }
.popular-card .btn-add-cart:hover, .popular-card .btn-add-cart:active { background: var(--clr-accent); border-color: var(--clr-accent); color: white; }

/* Tracker Section */
.tracker-section { padding: 60px 20px; background: var(--clr-primary); color: white; text-align: center; }
.tracker-container { max-width: 600px; margin: 0 auto; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 40px 20px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.2); }
.tracker-input-group { display: flex; gap: 10px; margin-top: 25px; }
.tracker-input { flex-grow: 1; padding: 15px; border-radius: var(--radius-pill); border: none; outline: none; font-size: 1rem; }
.tracker-btn { background: var(--clr-accent); color: white; border: none; padding: 0 25px; border-radius: var(--radius-pill); font-weight: 600; cursor: pointer; }
.tracker-result { margin-top: 25px; padding: 20px; background: rgba(255,255,255,0.9); color: var(--clr-text-main); border-radius: var(--radius-sm); display: none; text-align: left; }
.tracker-result.loading { display: flex; justify-content: center; align-items: center; height: 100px; background: transparent; }
.tracker-step { display: flex; gap: 15px; margin-bottom: 15px; }
.step-icon { width: 30px; height: 30px; background: #e2e8f0; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--clr-text-light); }
.step-icon.active { background: #22c55e; color: white; }
.step-content h4 { font-size: 0.95rem; margin-bottom: 2px; }
.step-content p { font-size: 0.8rem; color: var(--clr-text-light); }

/* --- 18. Phase 7: Dashboard Transformation (HP Smart Style) --- */
.hero-section.dashboard-theme {
    background: #f0f4f8;
    padding-top: 20px;
    height: auto !important;
    min-height: calc(100vh - 120px);
}

.dashboard-user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 5px;
}

.user-welcome .greeting {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    font-weight: 500;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
    margin-top: 5px;
}

.header-status-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Header Bell Icon Styles */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-bell {
    position: relative;
    font-size: 1.3rem;
    color: var(--clr-text-main);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bell-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulseBell 2s infinite;
}

@keyframes pulseBell {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dash-tile {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.dash-tile:active {
    transform: scale(0.95);
}

.tile-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tile-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 2px;
}

.tile-info p {
    font-size: 0.75rem;
    color: var(--clr-text-light);
}

/* Video Tile (Large) */
.tile-video {
    grid-column: span 2;
    min-height: 180px;
    padding: 0;
    background: #000;
    border: none;
}

.tile-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    pointer-events: none;
    transform: scale(1.1);
}

.tile-click-mask {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5;
}

.video-overlay-text {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: white;
}

.video-overlay-text .tag {
    background: var(--clr-accent);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.video-overlay-text h3 {
    margin-top: 8px;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Tile Colors */
.tile-emerald { border-left: 5px solid #10b981; }
.tile-emerald .tile-icon { color: #10b981; }
.tile-blue { border-left: 5px solid #3b82f6; }
.tile-blue .tile-icon { color: #3b82f6; }
.tile-gold { border-left: 5px solid #f59e0b; }
.tile-gold .tile-icon { color: #f59e0b; }
.tile-purple { border-left: 5px solid #8b5cf6; }
.tile-purple .tile-icon { color: #8b5cf6; }
.tile-orange { border-left: 5px solid #f97316; }
.tile-orange .tile-icon { color: #f97316; }
.tile-indigo { border-left: 5px solid #4f46e5; }
.tile-indigo .tile-icon { color: #4f46e5; }

/* Dashboard Footer Stats */
.dashboard-stats {
    display: flex;
    justify-content: space-around;
    padding: 25px 10px;
    margin-top: 10px;
}

.d-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.d-stat strong {
    font-size: 1.2rem;
    color: var(--clr-primary-dark);
}

.d-stat span {
    font-size: 0.7rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Universal App Screen Base (App-like Navigation) --- */
.app-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f0f4f8;
    z-index: 2000;
    overflow-y: auto;
    padding-top: 80px;
    animation: fadeInScreen 0.4s ease-out;
}

.app-screen.active {
    display: block;
}

body.screen-open {
    overflow: hidden;
}

.screen-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2100;
    background: var(--clr-primary-dark);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-floating);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.screen-close-btn:hover {
    transform: scale(1.05);
    background: var(--clr-accent);
}

@keyframes fadeInScreen {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .app-screen {
        padding-top: 60px;
        animation: slideUpScreen 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .screen-close-btn {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    @keyframes slideUpScreen {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
}

/* PC Specific Dashboard Polish */
@media (min-width: 769px) {
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;
    }
    .tile-video {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 450px;
    }
    .hero-section.dashboard-theme {
        padding: 80px 0;
    }
    .dash-tile {
        min-height: 200px;
        padding: 35px;
        border-radius: 24px;
    }
    .tile-info h4 { font-size: 1.25rem; }
    .welcome-title { font-size: 3rem; }
    .greeting { font-size: 1.1rem; }
    .tile-icon { font-size: 2.22rem; }
}

@media (min-width: 1280px) {
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

