:root {
    --bg-color: #FAFAFA;
    --text-primary: #171717;
    --text-secondary: #525252;
    --text-muted: #737373;
    
    /* Yellow Accent used sparingly for the "cab" touch */
    --accent-yellow: #F5A623; 
    
    --card-bg: rgba(255, 255, 255, 0.94);
    --card-border: rgba(0, 0, 0, 0.05);
    
    --header-bg: rgba(255, 255, 255, 0.85);
    --header-border: rgba(0, 0, 0, 0.06);
    --header-hover-bg: rgba(255, 255, 255, 0.98);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);

    --font-body: 'Satoshi', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --br-standard: 8px; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { 
    max-width: 100vw; 
    overflow-x: hidden; 
}

html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text, .massive-text { font-family: var(--font-heading); }

/* STATIC TOP NAV */
.static-top-nav {
    position: absolute; top: 0; left: 0; right: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 32px 60px; z-index: 100;
}
.static-logo { font-family: var(--font-heading); font-weight: 900; font-size: 20px; letter-spacing: -0.5px; text-transform: uppercase; }
.static-links { display: flex; gap: 40px; align-items: center; }
.static-links a { color: var(--text-primary); text-decoration: none; font-size: 15px; font-weight: 600; transition: opacity 0.2s ease; }
.static-links a:hover { opacity: 0.7; color: var(--accent-yellow); }

/* ANIMATED BOTTOM NAV BASE (PC & Mobile) */
.floating-bottom-nav {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap;
    background-color: var(--header-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--header-border); border-radius: var(--br-standard); box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
    width: 100%; max-width: 280px; height: 56px; margin: 0 auto; padding: 0 20px; overflow: hidden; white-space: nowrap;
    transition: max-width 0.6s cubic-bezier(0.25, 1, 0.35, 1), background-color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    position: fixed; bottom: 32px; left: 0; right: 0; z-index: 1000;
    transform: translateY(100px); opacity: 0; pointer-events: none;
}
.floating-bottom-nav.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

.floating-bottom-nav nav {
    display: flex; align-items: center; justify-content: center; gap: 28px; max-width: 0; opacity: 0; transform: translateX(-15px); flex-shrink: 0; pointer-events: none;
    transition: max-width 0.6s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.floating-bottom-nav nav a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s ease; }
.floating-bottom-nav nav a:hover { color: var(--text-primary); }
.menu-icon { display: flex; align-items: center; justify-content: center; color: var(--text-primary); flex-shrink: 0; cursor: pointer; width: 28px; height: 28px; }

/* BUTTONS (AWWWARDS GRADIENT WIND HOVER - RESTORED TO AQUA/CREAM) */
.btn-premium {
    background: linear-gradient(90deg, #87A8A4 0%, #E6E1D6 25%, #9CBDBA 50%, #87A8A4 75%, #E6E1D6 100%);
    background-size: 300% 100%;
    background-position: 100% 0;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 0 8px 20px rgba(135, 168, 164, 0.2);
    color: #162624 !important; text-decoration: none; font-weight: 700; font-size: 14px;
    padding: 12px 28px; border-radius: var(--br-standard); 
    transition: background-position 0.6s cubic-bezier(0.25, 1, 0.35, 1), box-shadow 0.4s ease;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
}
.btn-premium:hover { 
    background-position: 0% 0; 
    box-shadow: 0 12px 28px rgba(135, 168, 164, 0.4); 
}

.btn-header { padding: 8px 20px; font-size: 13px; margin-left: 8px; }

/* BACKGROUND */
.site-background-wrapper { background-image: url('image1.png'); background-size: 100% auto; background-position: top center; background-repeat: repeat-y; position: relative; width: 100%; min-height: 100vh; padding-top: 100px; }
.site-background-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(250, 250, 250, 0.90); z-index: 0; }
.site-background-wrapper > * { position: relative; z-index: 1; }

/* HERO SECTION */
.hero-premium { display: grid; grid-template-columns: 1fr 1.3fr; align-items: center; gap: 60px; max-width: 1400px; margin: 20px auto 60px; padding: 40px 60px; }
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }
/* CAB YELLOW ACCENT ON BADGE */
.hero-badge { display: inline-block; background-color: var(--accent-yellow); color: #171717; font-size: 10px; font-weight: 800; padding: 6px 14px; border-radius: var(--br-standard); letter-spacing: 0.5px; margin-bottom: 24px; text-transform: uppercase; }
.hero-left h1 { font-size: clamp(40px, 4.5vw, 68px); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--text-primary); text-transform: uppercase; }
.hero-left p { color: var(--text-secondary); font-size: 16px; line-height: 1.6; margin-bottom: 32px; font-weight: 500; max-width: 90%; }
.hero-right-col { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.video-container { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--br-standard); overflow: hidden; box-shadow: var(--shadow-lg); background-color: transparent; }
.hero-video { width: 100%; height: 100%; display: block; object-fit: cover; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ROUNDED STATS WITH NEUTRAL SHADOW & YELLOW ICONS */
.stat-box {
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04); 
    border-radius: 32px;
    padding: 24px 10px; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); /* Clean, elegant shadow */
}
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.stat-icon-wrapper { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.stat-icon-wrapper svg { width: 24px; height: 24px; stroke-width: 1.5; color: var(--accent-yellow); } /* Yellow Icon */
.stat-val { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--text-primary); line-height: 1.2; margin-bottom: 4px; }
.stat-label { font-family: var(--font-body); font-size: 10px; color: var(--text-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* CONTENT SECTIONS */
.section { padding: 60px 24px; max-width: 1300px; margin: 0 auto; }
.section-header { margin-bottom: 50px; text-align: center; }
.section-header h2 { font-size: clamp(32px, 5vw, 42px); font-weight: 800; letter-spacing: -1.5px; color: var(--text-primary); margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 18px; max-width: 900px; margin: 0 auto; font-weight: 500; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 24px; }

/* CARDS */
.card { background-color: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--br-standard); padding: 24px; backdrop-filter: blur(10px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.card-tag { background-color: #FFFFFF; color: var(--text-primary); font-family: var(--font-body); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: var(--br-standard); border: 1px solid var(--card-border); letter-spacing: 0.3px; }

/* YELLOW STARS */
.card-rating { font-size: 13px; font-weight: 800; color: var(--accent-yellow); display: flex; align-items: center; gap: 4px; }

.card-content { flex-grow: 1; }
.card-content h3 { color: var(--text-primary); font-size: 22px; margin-bottom: 8px; font-weight: 700; letter-spacing: -0.5px; }
.card-content p { color: var(--text-secondary); font-size: 15px; line-height: 1.5; font-weight: 500; }

.card-preview { border-radius: var(--br-standard); padding: 16px; margin-top: auto; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); margin-bottom: 12px; }
.card-preview.transparent { padding: 0; box-shadow: none; overflow: hidden; border-radius: 12px; }

/* PREMIUM GRADIENTS RESTORED */
.dia-grad-green { background: linear-gradient(180deg, #E6F3E6 0%, #D1ECD1 100%); }
.dia-grad-sand { background: linear-gradient(180deg, #F9F6F0 0%, #EBE5D9 100%); }
.dia-grad-blue { background: linear-gradient(180deg, #F0F4F8 0%, #E2EAF1 100%); }

.card-preview img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--br-standard); box-shadow: 0 8px 24px rgba(0,0,0,0.06); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover .card-preview img { transform: scale(1.03) translateY(-2px); }

.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.05); margin-top: auto; }
.card-status { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--text-muted); }

/* MINIMALIST WHY US */
.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 20px; }
.feature-item { background: #FFFFFF; border-radius: 16px; padding: 32px 24px; border: 1px solid var(--card-border); text-align: left; box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: transform 0.3s ease; }
.feature-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feature-icon-wrapper { background: #171717; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.feature-icon-wrapper svg { width: 22px; height: 22px; color: var(--accent-yellow); } /* Yellow Accent */
.feature-item h4 { font-size: 18px; margin-bottom: 12px; font-weight: 700; color: var(--text-primary); }
.feature-item p { font-size: 14px; color: var(--text-secondary); font-weight: 500; line-height: 1.6; }

/* CSS GRID ACCORDION ANIMATION WITH DROP/BOUNCE */
.accordion-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.35);
}
.accordion-inner { overflow: hidden; }

/* ABOUT SECTION */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } 
.about-image img { width: 100%; max-width: 600px; height: auto; display: block; margin: 0 auto; border-radius: var(--br-standard); }
.about-content h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; color: var(--text-primary); }
.about-content > p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 32px; font-weight: 500; }

.expandable-item { border-top: 1px solid rgba(0,0,0,0.1); padding: 24px 0; cursor: pointer; transition: background 0.3s ease; }
.expandable-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.expandable-header { display: flex; align-items: center; justify-content: space-between; }
.expandable-header h4 { font-size: 18px; font-weight: 800; color: var(--text-primary); margin: 0; transition: color 0.2s ease; }
.expandable-item:hover .expandable-header h4 { color: #87A8A4; }
.expandable-icon { font-size: 24px; color: var(--text-muted); font-weight: 300; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.35), color 0.3s; }

.expandable-content { font-size: 15px; color: var(--text-secondary); line-height: 1.6; font-weight: 500; padding-top: 16px; margin: 0; }

.expandable-item.active .expandable-icon { transform: rotate(45deg); color: #171717; }
.expandable-item.active .accordion-collapse { grid-template-rows: 1fr; }

/* PLAYFUL INCLUSIONS/EXCLUSIONS */
.playful-box { border-radius: 24px; padding: 48px; border: none; display: flex; flex-direction: column; }
.box-peach { background-color: #F6EBE5; }
.box-lavender { background-color: #E0D8FB; }
.playful-box h3 { font-size: 28px; margin-bottom: 32px; color: var(--text-primary); letter-spacing: -0.5px; font-weight: 800; }
.playful-box ul { list-style: none; flex-grow: 1; padding: 0; }
/* Removed hover effects from list items */
.playful-box li { 
    margin-bottom: 16px; color: #171717; display: flex; align-items: flex-start; gap: 16px; 
    font-size: 15px; font-weight: 500; line-height: 1.6; background: rgba(255, 255, 255, 0.45);
    padding: 16px 20px; border-radius: 16px; box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.playful-box li::before { 
    content: "✓"; color: #171717; font-weight: 900; font-size: 16px; line-height: 1.4; background: rgba(255, 255, 255, 0.8);
    width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
}
.box-lavender li::before { content: "✕"; }

/* FAQ DESIGN */
.faq-grid { display: grid; grid-template-columns: 1fr 2.5fr; gap: 40px; align-items: stretch; max-width: 1000px; margin: 0 auto; }
.faq-heading { display: flex; align-items: center; height: 100%; } 
.faq-title { font-size: 42px; font-weight: 700; letter-spacing: -1px; margin: 0; color: #171717; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item { background-color: #FFFFFF; border-radius: 40px; padding: 24px 32px; cursor: pointer; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.35); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.faq-item:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); }
.faq-item h4 { font-size: 18px; font-weight: 500; margin: 0; display: flex; justify-content: space-between; align-items: center; color: #333; }
.faq-item h4::after { content: "+"; font-size: 24px; color: #A0A0A0; font-weight: 300; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.35), color 0.3s ease; }

.faq-item p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; font-weight: 500; padding-right: 20px; padding-top: 16px; margin: 0; }

.faq-item.active { border-radius: 24px; }
.faq-item.active h4::after { transform: rotate(45deg); color: #171717; }
.faq-item.active .accordion-collapse { grid-template-rows: 1fr; }

/* REVIEWS SECTION - SCALED FOR MOBILE */
.reviews-section { background-color: #E6E8F4; padding: 80px 24px; border-radius: 20px; max-width: 1000px; margin: 0 auto 60px; text-align: center; } 
.reviews-section h2 { font-size: clamp(32px, 5vw, 40px); font-weight: 800; margin-bottom: 8px; color: #171717; letter-spacing: -1px; }
.reviews-section .subheading { font-size: 12px; text-transform: uppercase; font-weight: 800; letter-spacing: 1.5px; color: #555; margin-bottom: 50px; }
.testimonial-container { max-width: 600px; margin: 0 auto; text-align: left; position: relative; }
.testimonial-quote-box { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 10px 30px rgba(0,0,0,0.03); padding: 32px 40px; border-radius: 12px; font-size: 18px; line-height: 1.6; margin-bottom: 24px; position: relative; min-height: 160px; display: flex; align-items: center; }
.testimonial-text-anim { transition: opacity 0.5s ease; font-weight: 500; color: #171717; font-style: italic; margin: 0; }
.testimonial-authors-stack { position: relative; height: 180px; margin-left: 32px; }
.author-row { display: flex; align-items: center; gap: 16px; position: absolute; width: calc(100% - 60px); padding: 8px 16px 8px 8px; border-radius: 50px; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); background: transparent; }
.author-row img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid transparent; transition: all 0.6s; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.author-info { display: flex; flex-direction: column; transition: all 0.6s; }
.author-name { font-weight: 800; font-size: 15px; color: #171717; }
.author-role { font-size: 13px; color: #555; font-weight: 500; }
.author-row.active { top: 0; left: 0; opacity: 1; z-index: 3; transform: scale(1); }
.author-row.active img { border-color: #fff; box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
.author-row.next-1 { top: 55px; left: 20px; opacity: 0.6; z-index: 2; background: rgba(255, 255, 255, 0.6); }
.author-row.next-1 .author-info { opacity: 0.7; }
.author-row.next-2 { top: 110px; left: 40px; opacity: 0.3; z-index: 1; background: rgba(255, 255, 255, 0.4); }
.author-row.next-2 .author-info { opacity: 0.4; }
.author-row.hidden-up { top: -40px; left: -20px; opacity: 0; z-index: 0; pointer-events: none; transform: scale(0.95); }

/* FOOTER (RESTORED TO DARK/WHITE THEME) */
.premium-footer { background-color: #1A1A1A; color: #FFFFFF; padding: 80px 0 0 0; margin-top: 60px; position: relative; z-index: 2; }
.footer-grid-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1300px; margin: 0 auto 60px; padding: 0 40px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; color: #FFFFFF; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 15px; margin-bottom: 12px; transition: color 0.2s; font-weight: 500; }
.footer-col a:hover { color: #84B8B7; }
.footer-col p { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.6; margin-bottom: 16px; max-width: 250px; font-weight: 500; }
.footer-massive { width: 100%; overflow: hidden; display: flex; justify-content: center; align-items: flex-end; line-height: 0.72; }
.massive-text { font-size: clamp(32px, 12vw, 180px); font-weight: 900; color: #FFFFFF; letter-spacing: -0.02em; text-transform: uppercase; white-space: nowrap; margin: 0; padding: 0; }
.footer-bottom-bar { background-color: #FFFFFF; color: #1A1A1A; padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 600; font-family: var(--font-body); }
.footer-bottom-links { display: flex; gap: 32px; }
.footer-bottom-links a { color: #1A1A1A; text-decoration: none; }

/* DESKTOP HOVER LOGIC FOR FLOATING NAV */
@media (min-width: 769px) {
    .floating-bottom-nav:hover { max-width: 850px; background-color: var(--header-hover-bg); }
    .floating-bottom-nav:hover nav { max-width: 600px; opacity: 1; transform: translateX(0); pointer-events: auto; padding: 0 24px; }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 1024px) {
    .hero-premium { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; }
    .hero-left { align-items: center; max-width: 100%; }
    .hero-right-col { max-width: 800px; margin: 0 auto; }
    .static-top-nav { padding: 24px; }
    .static-links { display: none; }
    .footer-grid-top { grid-template-columns: repeat(2, 1fr); }
    .about-split { gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; gap: 30px; }
    .faq-heading { align-items: flex-start; justify-content: center; height: auto; }
    .faq-title { text-align: center; }
}

@media (max-width: 768px) {
    .grid, .grid-2, .feature-row, .about-split, .faq-grid { grid-template-columns: 1fr; }
    .section { padding: 40px 16px; }
    .playful-box { padding: 32px 24px; }
    
    /* HERO MOBILE RE-ORDER AND SPACING FIX */
    .site-background-wrapper { padding-top: 80px; } 
    .hero-premium { display: flex; flex-direction: column; padding-top: 0; }
    .hero-right-col { display: contents; }
    .video-container { order: -1; width: 100%; margin-bottom: 24px; margin-top: 10px; }
    .hero-left { order: 0; margin-bottom: 24px; }
    .hero-stats { order: 1; width: 100%; grid-template-columns: repeat(2, 1fr); }
    .hero-badge { margin-bottom: 16px; }

    .reviews-section { padding: 40px 16px; }
    .testimonial-quote-box { padding: 24px 20px; font-size: 15px; min-height: 140px; }
    .testimonial-authors-stack { margin-left: 16px; height: 160px; }
    .author-row.next-1 { top: 50px; left: 15px; width: calc(100% - 30px); }
    .author-row.next-2 { top: 100px; left: 30px; width: calc(100% - 40px); }
    .footer-grid-top { grid-template-columns: 1fr; padding: 0 20px; }
    .footer-bottom-bar { flex-direction: column; gap: 16px; text-align: center; }
    .static-top-nav { padding: 20px; }
    
    /* MOBILE POP-UP NAV STYLES */
    .floating-bottom-nav {
        flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
        height: 56px; max-width: 280px; padding: 14px 20px; overflow: hidden;
        transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), max-width 0.4s ease, background-color 0.4s ease;
    }
    .floating-bottom-nav.is-open {
        height: 350px; max-width: 90%; background-color: var(--header-hover-bg);
    }
    .logo-area { order: 1; display: flex; align-items: center; height: 28px; }
    .menu-icon { order: 2; height: 28px; }
    .floating-bottom-nav nav {
        order: 3; flex-direction: column; gap: 20px; padding: 20px 0; max-width: 100%; width: 100%;
        transform: translateY(20px); transition: opacity 0.3s ease, transform 0.4s ease;
    }
    .floating-bottom-nav.is-open nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
}
