/* Global Design Enhancements */
:root {
    --white: #FFFFFF;
    --charcoal-black: #0F0F0F;
    --muted-grey: #6F6F6F;
    --subtle-grey: #8A8A8A;
    --fox-orange: #f16105;
    --fox-gradient: linear-gradient(135deg, #f16105 0%, #ff8c42 100%);
    --hover-orange: #ff6300;
    --border-grey: #E0E0E0;
    --light-grey: #f9f9f9;
}

html {
    scroll-behavior: smooth;
}

.grain-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

* { box-sizing: border-box; }

svg { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }

body {
    background-color: var(--white);
    color: var(--charcoal-black);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Manrope', sans-serif; font-weight: 800; margin: 0; color: var(--charcoal-black); letter-spacing: -0.02em; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
nav { position: fixed; top: 24px; left: 0; right: 0; z-index: 1000; pointer-events: none; }
nav .container {
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 8px 10px 8px 24px; border-radius: 100px;
    display: flex; justify-content: space-between; align-items: center;
    width: auto;
    max-width: 1100px; 
    margin: 0 auto;
    pointer-events: auto;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: max-width, margin, padding, background-color;
}

nav.light-nav .container { background-color: rgba(255, 255, 255, 0.89); border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06); }
nav.dark-nav .container { background-color: rgba(26, 26, 26, 0.9); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); transform: scale(0.98); }

/* Shrink Animation */
nav.shrunk-nav .container {
    max-width: 180px;
    padding: 8px 20px;
    justify-content: center;
}

/* Hover to Expand */
nav.shrunk-nav .container:hover {
    max-width: 1100px;
    padding: 8px 10px 8px 24px;
    justify-content: space-between;
}

nav.shrunk-nav .container:hover .nav-links {
    opacity: 1;
    max-width: 1000px;
    gap: 24px;
    pointer-events: auto;
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s, 
                max-width 0s linear 0.8s, 
                gap 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s;
}

nav.shrunk-nav .nav-links {
    opacity: 0;
    max-width: 0;
    gap: 0;
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.2s ease, max-width 0s linear 0.2s;
    will-change: opacity, max-width;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 22px; width: auto; }
.logo-text { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.5px; white-space: nowrap; }
nav.light-nav .logo-text { color: var(--charcoal-black); }
nav.dark-nav .logo-text { color: var(--white); }
.logo-text span, .accent-text { color: var(--fox-orange); }

.venue-showcase-title {
    font-size: 3.5rem;
    color: var(--charcoal-black);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
    padding-left: 40px;
}

@media (max-width: 992px) {
    .venue-highlights .section-header { padding-left: 0; text-align: left; }
    .venue-showcase-title { font-size: 2.2rem; padding-left: 0; text-align: left; }
}

.mobile-only-br { display: none; }

@media (max-width: 768px) {
    .mobile-only-br { display: block; }
    
    .venue-highlights .section-header { 
        text-align: center; 
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .venue-showcase-title { 
        font-size: 2.2rem; 
        padding: 0 15px;
        white-space: normal;
        line-height: 1.1;
        margin-bottom: 25px;
        display: block;
        max-width: 100%;
    }
    
    .venue-showcase-title span { display: inline; }
    .venue-showcase-title::before { display: none; }

    .venue-nav-tabs {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: nowrap; /* Force single line */
        overflow-x: auto; /* Enable horizontal scroll */
        padding: 5px 20px 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .venue-nav-tabs::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

    .venue-tab {
        flex: 0 0 auto; /* Prevent shrinking */
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s, 
                max-width 0s linear 0.8s, 
                gap 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s;
}
.nav-links a:not(.cta-button) { 
    text-decoration: none; 
    color: var(--charcoal-black);
    font-weight: 600; 
    font-size: 0.85rem; 
    opacity: 0.7; 
    transition: 0.3s; 
    border-bottom: 1px solid rgba(241, 97, 5, 0.3); /* Subtle orange underscore */
    padding-bottom: 2px;
}

.nav-links .login-btn {
    color: var(--fox-orange) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    border: none !important;
}

.nav-links .login-btn:hover {
    background-color: rgba(241, 97, 5, 0.08) !important;
    color: var(--hover-orange) !important;
}

/* Adapt login button for dark navigation */
nav.dark-nav:not(.shrunk-nav) .nav-links .login-btn,
nav.dark-nav .nav-links:not(.active) .login-btn {
    color: #fff !important;
}

nav.dark-nav:not(.shrunk-nav) .nav-links .login-btn:hover,
nav.dark-nav .nav-links:not(.active) .login-btn:hover {
    background-color: #fff !important;
    color: var(--fox-orange) !important;
}

nav.dark-nav:not(.shrunk-nav) .nav-links a:not(.cta-button):not(.login-btn),
nav.dark-nav .nav-links:not(.active) a:not(.cta-button):not(.login-btn) { 
    color: var(--white); 
}

.nav-links a:not(.cta-button):hover { 
    opacity: 1; 
    border-bottom-color: var(--fox-orange); 
    color: inherit;
}

/* Modern Contact Form Styling */
.modern-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1.5px solid rgba(241, 97, 5, 0.4); /* Stronger, more visible orange border */
    border-radius: 12px;
    color: var(--charcoal-black);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-contact-form input:hover,
.modern-contact-form select:hover,
.modern-contact-form textarea:hover {
    border-color: var(--fox-orange);
    background: #fff;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--fox-orange);
    box-shadow: 0 0 0 4px rgba(241, 97, 5, 0.1);
}

.modern-contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal-black);
}

.modern-contact-form label span {
    color: var(--fox-orange);
    margin-left: 3px;
}

/* Contact Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Buttons */
.cta-button { 
    padding: 12px 28px; 
    border-radius: 100px; 
    font-size: 0.85rem; 
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

nav .cta-button { 
    background-color: var(--fox-orange) !important; 
    color: var(--white) !important; 
}

.cta-button:hover { background-color: var(--hover-orange) !important; color: var(--white) !important; transform: translateY(-1px); }

.hero-actions .cta-button { 
    padding: 24px 64px; 
    border-radius: 100px; 
    font-size: 1.2rem; 
    font-weight: 800; 
    background: var(--fox-gradient);
    color: var(--white); 
    box-shadow: 0 20px 40px rgba(241, 97, 5, 0.25); 
    min-width: 300px; 
    border: none;
}

.hero-actions .cta-button:hover { 
    transform: scale(1.03) translateY(-4px); 
    box-shadow: 0 30px 60px rgba(241, 97, 5, 0.4); 
}

.menu-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 10px; z-index: 1001; }
.menu-toggle span { display: block; width: 22px; height: 2px; transition: all 0.3s ease; border-radius: 2px; }
nav.light-nav .menu-toggle span { background-color: var(--charcoal-black); }
nav.dark-nav .menu-toggle span { background-color: var(--white); }

/* Hero Section */
.hero-split { position: relative; min-height: 85vh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero-split::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(to top, var(--white) 0%, var(--white) 5%, rgba(255,255,255,0) 40%), url('/assets/img/herobackground.png');
    background-size: cover; background-position: center; filter: blur(4px); opacity: 0.5; z-index: 0;
}

/* Pricing Specific Hero */
.hero-pricing { position: relative; min-height: 85vh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero-pricing::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(to top, var(--white) 0%, var(--white) 5%, rgba(255,255,255,0) 40%), url('/assets/img/pricinghero.png');
    background-size: cover; background-position: center; filter: blur(4px); opacity: 0.5; z-index: 0;
}
.hero-pricing::before {
    content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%;
    background: linear-gradient(to top, var(--white) 0%, var(--white) 5%, rgba(217, 120, 58, 0.9) 40%, rgba(217, 120, 58, 0.9) 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); z-index: 1;
}
.hero-pricing .container { position: relative; z-index: 2; }
.hero-pricing .pricing-hero-title { color: #fff; }
.hero-pricing .pricing-hero-title span { color: var(--charcoal-black); }
.hero-pricing p { color: rgba(255,255,255,0.9); font-size: 1.4rem; max-width: 800px; margin: 0 auto; }
.hero-split::before {
    content: ''; position: absolute; top: 0; left: 0; width: 60%; height: 100%;
    background: linear-gradient(to top, var(--white) 0%, var(--white) 5%, rgba(217, 120, 58, 0.9) 40%, rgba(217, 120, 58, 0.9) 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); z-index: 1;
}
.hero-split .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.hero-content { flex: 1; max-width: 600px; color: var(--white); display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.hero-content h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 32px;
    color: var(--white);
    min-height: 120px;
    display: flex;
    align-items: center;
    transition: 0.6s;
    width: 100%;
    letter-spacing: -0.06em;
    font-weight: 900;
    text-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-content p { font-size: 1.5rem; opacity: 0.85; color: var(--white); margin-bottom: 48px; max-width: 550px; font-weight: 500; }
.hero-actions { display: flex; justify-content: flex-start; width: 100%; }
.hero-visual { flex: 1; display: flex; justify-content: center; perspective: 1000px; z-index: 2; position: relative; }

.hero-bottom-cta {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    width: auto;
}

.primary-hero-btn {
    padding: 22px 56px !important;
    font-size: 1.15rem !important;
    background: var(--fox-gradient) !important;
    color: #fff !important;
    font-weight: 800 !important;
    border-radius: 100px !important;
    box-shadow: 0 20px 50px rgba(241, 97, 5, 0.35);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.primary-hero-btn:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 30px 70px rgba(241, 97, 5, 0.5) !important;
    background: var(--hover-orange) !important;
}

/* Tablet Mockups */
.tablet-mockup, .showcase-tablet {
    width: 100%; background: linear-gradient(145deg, #1a1a1a, #000000);
    border-radius: 42px; padding: 14px; position: relative; border: 1px solid #222;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5); overflow: hidden;
}
.tablet-mockup { max-width: 600px; transform: rotateY(-10deg) rotateX(5deg); transition: 0.6s; }
.tablet-mockup:hover { transform: rotateY(0) rotateX(0); }
.showcase-tablet { max-width: 520px; animation: orange-breathe 4s ease-in-out infinite; }
.tablet-screen, .showcase-screen { width: 100%; background-color: #000; border-radius: 30px; overflow: hidden; position: relative; }
.tablet-content, .showcase-img { width: 100%; height: auto; display: block; cursor: zoom-in; }

@keyframes orange-breathe {
    0%, 100% { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 20px rgba(241, 97, 5, 0.1); }
    50% { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(241, 97, 5, 0.4); }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: #4141418a;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    pointer-events: none;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.floating-element .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.floating-element .status-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.hero-visual .floating-1 { top: 15%; right: -8%; animation: float-1 12s ease-in-out infinite; }
.hero-visual .floating-2 { bottom: 25%; left: -12%; animation: float-2 15s ease-in-out infinite; }

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -15px) rotate(2deg); }
    66% { transform: translate(-10px, 10px) rotate(-1deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(-3deg); }
}

/* Pricing Section */
.pricing-banner { 
    padding: 140px 0; 
    background: linear-gradient(to bottom, #ffffff 0%, rgba(217, 120, 58, 0.9) 40%, rgba(217, 120, 58, 0.9) 40%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.pricing-card { 
    background: #fff; 
    border-radius: 40px; 
    border: 1px solid rgba(0,0,0,0.05); 
    box-shadow: 0 40px 100px rgba(0,0,0,0.15); 
    display: flex; 
    overflow: hidden; 
    max-width: 950px; 
    margin: 0 auto; 
    color: var(--charcoal-black);
    position: relative;
    z-index: 1;
}

.pricing-content { flex: 1.2; padding: 60px 70px; }
.pricing-badge { display: inline-block; background: rgba(241, 97, 5, 0.1); color: var(--fox-orange); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-header h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; color: var(--charcoal-black); letter-spacing: -0.03em; }
.pricing-header p { color: var(--muted-grey); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.6; }
.pricing-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-tick { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--charcoal-black); font-size: 0.95rem; }
.feature-tick svg { width: 20px; height: 20px; color: var(--fox-orange); flex-shrink: 0; }

.pricing-plan { flex: 0.8; background: #fcfcfc; border-left: 1px solid #f0f0f0; padding: 60px; display: flex; align-items: center; justify-content: center; }
.plan-inner { text-align: center; width: 100%; }
.plan-price { display: flex; align-items: baseline; justify-content: center; margin-bottom: 10px; }
.plan-price .currency { font-size: 2rem; font-weight: 800; color: var(--charcoal-black); }
.plan-price .amount { font-size: 5.5rem; font-weight: 800; color: var(--fox-orange); line-height: 1; }
.plan-price .period { font-size: 1.2rem; color: var(--subtle-grey); font-weight: 600; }
.plan-note { font-size: 0.95rem; color: var(--muted-grey); margin-bottom: 35px; }
.pricing-cta-btn { display: block !important; width: 100%; padding: 20px !important; background: var(--charcoal-black) !important; color: #fff !important; text-align: center; border-radius: 100px; font-weight: 800; text-decoration: none; border: none; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.pricing-cta-btn:hover { background: var(--fox-gradient) !important; transform: scale(1.05) translateY(-2px); box-shadow: 0 15px 30px rgba(241, 97, 5, 0.2); }

.product-showcase { 
    padding: 50px 0; 
    background: #fff;
    position: relative;
    overflow: hidden;
}

.showcase-item { 
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 160px;
}

.showcase-item:nth-child(even) { direction: rtl; }
.showcase-item:nth-child(even) > * { direction: ltr; }

.showcase-text { text-align: left; }
.showcase-text h2 { font-size: 3.5rem; line-height: 1; margin: 24px 0; color: var(--charcoal-black); letter-spacing: -0.05em; font-weight: 900; }
.showcase-text p { color: var(--muted-grey); font-size: 1.3rem; line-height: 1.6; margin: 0; }

.showcase-visual { display: flex; justify-content: center; position: relative; }
.showcase-visual .screenshot-container {
    width: 100%;
    max-width: 800px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item:hover .showcase-visual .screenshot-container {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 70px 130px rgba(0,0,0,0.6);
}

.showcase-tag {
    display: inline-block;
    color: #fff;
    background: rgba(217, 120, 58, 0.9);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.showcase-tag:hover {
    background: rgba(0,0,0,0.1);
}

.dark-header-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 120px;
}

.dark-header-box h2 {
    color: var(--charcoal-black) !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
    letter-spacing: -0.06em !important;
    line-height: 1 !important;
}

.dark-header-box p {
    color: var(--muted-grey) !important;
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    max-width: 750px !important;
    margin: 0 auto !important;
    line-height: 1.5 !important;
    opacity: 0.8 !important;
}

/* Features Switcher */
.features-section { 
    padding: 40px 0; 
    background: #fff;
}
.features-header { 
    text-align: right; 
    margin-bottom: 80px; 
    padding-right: 40px;
}
.features-header h2 { 
    font-size: 3.5rem; 
    letter-spacing: -0.04em; 
    font-weight: 800; 
    line-height: 1.1; 
}
.features-header h2 span { color: var(--fox-orange); }
.features-content-wrapper { display: flex; gap: 80px; align-items: flex-start; }
.features-list { flex: 1; position: relative; }
.features-visual-sticky { 
    flex: 1.3; 
    position: sticky; 
    top: 160px; 
    /* display: flex; */ 
    justify-content: center; 
    align-items: center; 
    min-height: 500px; 
}

.screenshot-container {
    width: 100%; 
    max-width: 800px; 
    background-color: #fff; 
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.12); 
    border: 1px solid rgba(0,0,0,0.08); 
    overflow: hidden; 
    position: relative;
    transition: transform 0.4s ease;
    animation: glow-breathe 6s ease-in-out infinite;
}

@keyframes glow-breathe {
    0%, 100% { box-shadow: 0 40px 100px rgba(0,0,0,0.12), 0 0 30px rgba(241, 97, 5, 0.1); transform: translateY(0); }
    50% { box-shadow: 0 60px 120px rgba(0,0,0,0.15), 0 0 80px rgba(241, 97, 5, 0.35); transform: translateY(-8px); }
}

.screenshot-container::before { 
    content: ''; 
    display: block; 
    height: 36px; 
    background-color: #f1f1f1; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    background-image: radial-gradient(circle, #ff5f57 6px, transparent 7px), 
                      radial-gradient(circle, #ffbd2e 6px, transparent 7px), 
                      radial-gradient(circle, #28c840 6px, transparent 7px);
    background-size: 24px 24px;
    background-position: 12px center, 32px center, 52px center;
    background-repeat: no-repeat;
}

.screenshot-container img { width: 100%; height: auto; display: block; transition: 0.5s; cursor: zoom-in; }

.image-stack { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
.feature-shot { width: 100%; height: auto; display: block; position: absolute; top: 0; left: 0; opacity: 0; visibility: hidden; transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: opacity, transform; transform: translateY(10px); }
.feature-shot.active { opacity: 1; visibility: visible; transform: translateY(0); }
.feature-shot.spacer { position: relative; opacity: 0; visibility: hidden; pointer-events: none; transform: none; }

.feature-item { padding: 40px; border-radius: 32px; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); position: relative; cursor: pointer; border: 1px solid transparent; }
.feature-item:hover { background: rgba(0,0,0,0.02); }
.feature-item.active { background-color: #fff; transform: translateX(20px) scale(1.02); }
.feature-marker { position: absolute; left: -26px; top: 40px; width: 52px; height: 52px; background-color: #fff; border: 1px solid #eee; border-radius: 18px; display: flex; align-items: center; justify-content: center; color: var(--fox-orange); transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.feature-item.active .feature-marker { background: var(--fox-gradient); color: #fff; transform: scale(1.1) rotate(-8deg); border-color: transparent; box-shadow: 0 15px 30px rgba(241, 97, 5, 0.3); }

/* Venue Showcase Section */
.venue-showcase { background-color: #fff; padding: 120px 0; }
.venue-nav { display: flex; justify-content: center; gap: 15px; margin-bottom: 60px; flex-wrap: wrap; }
.venue-tab { padding: 12px 28px; border-radius: 100px; background: #f8f8f8; color: var(--subtle-grey); font-weight: 700; cursor: pointer; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); }
.venue-tab:hover { color: var(--charcoal-black); background: #eee; }
.venue-tab.active { background: var(--fox-orange); color: #fff; border-color: var(--fox-orange); box-shadow: 0 10px 25px rgba(241, 97, 5, 0.2); }
.venue-stage { display: flex; align-items: center; gap: 80px; background: #1a1a1a0d; padding: 80px; border-radius: 60px; border: 1px solid rgba(0,0,0,0.03); min-height: 550px; box-shadow: 0 40px 100px rgba(0,0,0,0.02); }
.venue-info h3 { font-size: 3rem; margin-bottom: 24px; line-height: 1.1; color: var(--charcoal-black); letter-spacing: -0.03em; }
.venue-info p { font-size: 1.25rem; color: var(--muted-grey); line-height: 1.7; margin-bottom: 40px; }
.venue-image-container { box-shadow: 0 50px 120px rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.05); animation: venue-glow-breathe 6s ease-in-out infinite; }
.venue-image-container::before { display: none !important; }
.venue-image-container img { cursor: default !important; }
@keyframes venue-glow-breathe { 0%, 100% { box-shadow: 0 50px 120px rgba(0,0,0,0.15), 0 0 40px rgba(241, 97, 5, 0.15); transform: scale(1); } 50% { box-shadow: 0 70px 140px rgba(0,0,0,0.18), 0 0 100px rgba(241, 97, 5, 0.45); transform: scale(1.02); } }

/* Insights Section */
.insights-section { padding: 120px 0; background-color: #fcfcfc; }
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 60px; }
.insight-card { background: #fff; border-radius: 32px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; text-decoration: none; color: inherit; box-shadow: 0 20px 50px rgba(0,0,0,0.03); }
.insight-card:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(0,0,0,0.08); border-color: rgba(241, 97, 5, 0.2); }
.insight-image { width: 100%; height: 240px; overflow: hidden; }
.insight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.insight-card:hover .insight-image img { transform: scale(1.1); }
.insight-content { padding: 40px; display: flex; flex-direction: column; gap: 15px; }
.insight-date { font-size: 0.85rem; font-weight: 700; color: var(--fox-orange); text-transform: uppercase; letter-spacing: 1px; }
.insight-card h3 { font-size: 1.5rem; line-height: 1.3; color: var(--charcoal-black); margin: 0; }
.insight-link { margin-top: 10px; font-weight: 800; font-size: 0.9rem; color: var(--charcoal-black); display: flex; align-items: center; gap: 8px; }
.insight-link svg { transition: transform 0.3s ease; }
.insight-card:hover .insight-link svg { transform: translateX(5px); }

/* Internal Headers */
.internal-header { background-color: var(--charcoal-black); padding: 220px 0 140px; position: relative; overflow: hidden; text-align: center; color: var(--white); }
.internal-header-content { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 80px 40px; border-radius: 60px; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; box-shadow: 0 40px 100px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.05); }
.internal-header h1 { color: var(--white); font-size: 5rem; line-height: 1; margin-bottom: 24px; letter-spacing: -0.04em; font-weight: 800; }
.internal-header h1 span { background: var(--fox-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.internal-header p { color: rgba(255,255,255,0.8); font-size: 1.4rem; max-width: 750px; margin: 0 auto 48px; line-height: 1.6; font-weight: 400; }

/* Entrance Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Footer */
footer { 
    background-color: var(--charcoal-black);
    color: rgba(255,255,255,0.5); 
    padding: 60px 0 40px; 
    border: none; 
}
.footer-content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 40px; }
.footer-logo img { height: 28px; width: auto; opacity: 0.8; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { 
    color: rgba(255,255,255,0.6); 
    text-decoration: none; 
    font-size: 0.85rem; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    border-bottom: 1px solid rgba(241, 97, 5, 0.3); /* Subtle orange underscore */
    padding-bottom: 2px;
}
.footer-nav a:hover { 
    color: var(--white); 
    border-bottom-color: var(--fox-orange); /* Vibrant on hover */
}
.footer-bottom { 
    margin-top: 40px; 
    padding-top: 30px; 
    border-top: 1px solid var(--fox-orange); /* Orange divider */
    font-size: 0.8rem; 
    width: 100%; 
    text-align: center; 
}

/* Contact Page Redesign - Improved Layout */
.contact-hero {
    padding: 140px 0;
    background: linear-gradient(to bottom, #ffffff 50%, #f16105 85%, var(--charcoal-black) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/contactbackground.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    z-index: 0;
    pointer-events: none;
}

.contact-hero-inner {
    background: rgb(255 255 255 / 65%);
    border-radius: 60px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero-inner::before {
    display: none; /* Removed the redundant inner background image */
}

.contact-hero-content {
    flex: 1;
    color: var(--charcoal-black);
    max-width: 500px;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--charcoal-black);
    font-weight: 900;
}

.contact-hero-content h1 span {
    color: #f16105;
}

.contact-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
}

.contact-checklist {
    margin-top: 40px;
}

.checklist-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--charcoal-black);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.checklist-item svg {
    width: 20px;
    height: 20px;
    color: #f16105;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 1rem;
    color: #444;
}

.contact-form-card {
    flex: 1;
    max-width: 580px;
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    z-index: 3;
}

.form-card-header h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 800;
}

.form-card-header p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-hero-visual {
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 500px;
    opacity: 0.2; /* Subtle background visual */
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .contact-hero-inner {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }
    .contact-hero-content {
        max-width: 100%;
    }
    .contact-form-card {
        width: 100%;
        max-width: 100%;
    }
    .contact-hero-visual {
        display: none;
    }
    .checklist-item {
        justify-content: center;
    }
}
/* Dual CTA Section (action.png style) */
.dual-cta-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff 0%, rgb(217 120 58 / 31%) 10%, rgb(217 120 58 / 31%) 90%, #ffffff 100%);
    text-align: center;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.2rem;
    color: rgb(7, 20, 45);
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-box p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 35px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.cta-action-btn svg {
    margin-left: 12px;
    width: 14px;
    height: 14px;
}

.btn-orange { 
    background-color: var(--fox-orange); 
    color: #fff;
    border: 2px solid var(--fox-orange);
}
.btn-orange:hover { 
    background-color: #fff !important; 
    color: var(--fox-orange) !important;
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(241, 97, 5, 0.15); 
}

.btn-blue { 
    background-color: #fff; 
    color: var(--fox-orange);
    border: 2px solid var(--fox-orange);
}
.btn-blue:hover { 
    background-color: var(--fox-orange) !important;
    color: #fff !important;
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(241, 97, 5, 0.3); 
}

@media (max-width: 768px) {
    .dual-cta-grid { grid-template-columns: 1fr; gap: 80px; }
    .cta-box h2 { font-size: 1.8rem; }
}.venue-highlights {
    padding: 50px 0 10px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.venue-highlights .section-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
}

.venue-highlights .section-header h2 {
    font-size: 3.5rem;
    color: var(--charcoal-black);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
    padding-left: 0;
}

.venue-nav-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.venue-tab {
    padding: 12px 28px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #eee;
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted-grey);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.venue-tab:hover {
    color: var(--charcoal-black);
    border-color: var(--fox-orange);
    transform: translateY(-2px);
}

.venue-tab.active {
    background: var(--fox-orange);
    color: #fff;
    border-color: var(--fox-orange);
    box-shadow: 0 10px 25px rgba(241, 97, 5, 0.25);
}


.venue-scroll-window {
    max-width: 1150px;
    margin: 0 auto;
    overflow: hidden; /* Strictly hide non-visible cards */
    border-radius: 60px;
    padding: 40px 0;
    background-color: #fff;
}

.venue-scroll-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.venue-scroll-container::-webkit-scrollbar {
    display: none;
}

.venue-highlights-flex {
    display: flex;
    gap: 100px; /* Increased gap to ensure only one card is in window */
    padding: 0 calc(50% - 500px);
    width: max-content;
}

.venue-card {
    width: 1000px;
    height: 450px; /* Increased height to ensure text fits */
    background: #fff;
    border-radius: 60px;
    border: 2px solid rgba(241, 97, 5, 0.15); /* Soft orange border */
    scroll-snap-align: center;
    transition: opacity 0.6s ease, border-color 0.4s ease;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    opacity: 0;
}

.venue-card.active-card {
    opacity: 1;
    border-color: rgba(241, 97, 5, 0.4); /* Slightly stronger border when active */
}

.venue-card-info {
    padding: 50px 60px; /* Refined padding for better text fit */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.venue-card-visual {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.venue-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 0 25px 0;
    background: rgba(241, 97, 5, 0.06);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fox-orange);
}

.venue-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.venue-card h3 {
    font-size: 1.8rem;
    color: var(--charcoal-black);
    margin-bottom: 15px;
    font-weight: 800;
}

.venue-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-grey);
    text-align: left;
    max-width: 100%;
}

@media (max-width: 1150px) {
    .venue-highlights-flex { padding: 0 20px; }
    .venue-card { 
        width: calc(100vw - 80px); 
        grid-template-columns: 1fr; 
        height: auto; /* Allow card to grow with content */
        min-height: 500px; 
    }
    .venue-card-visual { height: 300px; order: -1; }
    .venue-card-info { padding: 40px 30px; }
}

@media (max-width: 768px) {
    .venue-highlights-flex { padding: 0 15px; gap: 20px; }
    .venue-card { 
        width: calc(100vw - 40px); 
        height: auto;
        min-height: 400px;
    }
    .venue-card h3 { font-size: 1.8rem; }
    .venue-card p { font-size: 0.95rem; line-height: 1.5; }
    .venue-card-info { padding: 30px 20px; }
    .venue-icon-wrapper { width: 50px; height: 50px; margin-bottom: 15px; }
}

@media (max-width: 1100px) {
    .venue-card { width: 85vw; grid-template-columns: 1fr; min-height: auto; }
    .venue-card-info { padding: 30px; }
    .venue-card-visual { height: 200px; order: -1; }
    .venue-highlights-flex { padding: 0 7.5vw; }
}

/* Utilities & Scroll Indicator */
.scroll-indicator { display: none; justify-content: center; padding: 20px 0; color: var(--fox-orange); position: relative; z-index: 5; }
.scroll-indicator svg { width: 32px; height: 32px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(10px);} 60% {transform: translateY(5px);} }

/* Lightbox Modal */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 2000; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; cursor: zoom-out; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content { max-width: 90%; max-height: 85vh; border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border: 1px solid rgba(255,255,255,0.1); }
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 40px; right: 40px; color: var(--white); font-size: 3rem; cursor: pointer; font-weight: 200; line-height: 1; z-index: 2001; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.lightbox-close:hover { transform: scale(1.1); color: var(--fox-orange); }

/* Trusted By Section */
.trusted-by {
    padding: 60px 0 20px;
    background: #fff;
    overflow: hidden;
}

.trusted-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(217, 120, 58, 0.9);
    margin-bottom: 40px;
    opacity: 0.7;
}

.logo-carousel {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: logo-scroll 40s linear infinite;
    padding-left: 100px;
    width: max-content; /* Ensure track spans full content */
}

@keyframes logo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Scroll exactly half to create seamless loop */
}

.brand-logo, .brand-logo-img {
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.brand-logo:hover, .brand-logo-img:hover {
    transform: scale(1.05);
}

/* For text-based fallbacks */
span.brand-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--charcoal-black);
    display: inline-block;
}

/* Pricing Teaser Split Layout */
.pricing-teaser {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-visual {
    flex: 1.1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-bg-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(241, 97, 5, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
    filter: blur(20px);
}

.mockup-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
}

.main-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.magnified-callout {
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 220px;
    height: 220px;
    z-index: 2;
}

.callout-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    border: 2px solid rgba(241, 97, 5, 0.15); /* Matched soft orange border */
    box-shadow: 0 15px 45px rgba(241, 97, 5, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callout-card-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pricing-info {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.pricing-info h2 {
    font-size: 3.5rem;
    color: var(--charcoal-black);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.pricing-info h2 span {
    color: var(--fox-orange);
}

.pricing-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.4;
}

.pricing-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button.blue-btn {
    position: relative;
    overflow: hidden;
    background: var(--fox-gradient);
    color: #fff !important;
    font-size: 1.05rem;
    padding: 20px 48px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 
        0 20px 40px -10px rgba(241, 97, 5, 0.35),
        0 10px 20px -10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cta-button.blue-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--hover-orange);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cta-button.blue-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px -12px rgba(241, 97, 5, 0.5),
        0 15px 30px -10px rgba(0, 0, 0, 0.2);
    background: var(--fox-gradient); /* Keep base background */
}

.cta-button.blue-btn:hover::before {
    opacity: 1;
}

/* Responsive Pricing Split */
@media (max-width: 992px) {
    .hero-pricing .pricing-hero-title {
        font-size: 3rem !important;
    }
    .hero-pricing p {
        font-size: 1.1rem !important;
        padding: 0 20px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px !important;
        padding: 0 40px;
    }
    .hero-actions .cta-button {
        width: 100%;
        padding: 18px 32px !important;
    }

    .pricing-split {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    .pricing-info {
        text-align: center;
        padding-left: 0 !important;
    }
    .pricing-info h2 {
        font-size: 2.8rem !important;
    }
    .pricing-info h5 {
        font-size: 1.2rem !important;
    }
    .visual-bg-circle { width: 320px; height: 320px; }
    
    .integrations-circle {
        width: 100% !important;
        max-width: 300px !important;
        height: 300px !important;
        margin: 0 auto !important;
    }
    .center-host-img {
        width: 100% !important;
        max-width: 280px !important;
    }
    .visual-bg-circle {
        width: 100% !important;
        max-width: 280px !important;
        height: 280px !important;
    }
    
    .features-list-structured {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px;
    }
    .addons-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px;
    }
}

@media (max-width: 500px) {
    .roi-card {
        padding: 30px 20px !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .roi-results div {
        font-size: 2.5rem !important;
    }
    .hero-actions {
        padding: 0 20px;
    }
    .pricing-info h2 {
        font-size: 2.2rem !important;
    }
    .magnified-callout {
        display: none;
    }
}

/* Background Watermark */
.bg-logo-watermark {
    position: relative;
}

.bg-logo-watermark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url('../img/logogrey.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 800px auto;
    opacity: 0.02; /* Slightly more visible opacity */
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.mobile-feature-image {
    display: none;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .mobile-feature-image {
        display: block;
    }
}

.contact-hero.home-contact {
    padding: 120px 0 100px;
    background: linear-gradient(to bottom, #fdf8f4 0%, rgba(241, 97, 5, 0.9) 15%, rgba(241, 97, 5, 0.9) 85%, var(--charcoal-black) 100%);
}

.home-contact .contact-hero-inner {
    min-height: 600px;
    background: var(--charcoal-black);
    border: 1px solid rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-contact .contact-hero-content h1,
.home-contact .checklist-title {
    color: #fff;
}

.home-contact .contact-hero-content p,
.home-contact .checklist-item span {
    color: rgba(255, 255, 255, 0.9);
}

.modern-contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal-black) !important;
}

.home-contact .modern-contact-form input,
.home-contact .modern-contact-form select,
.home-contact .modern-contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.home-contact .modern-contact-form input:focus,
.home-contact .modern-contact-form select:focus,
.home-contact .modern-contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--fox-orange);
}

.home-contact .contact-hero-inner::before {
    opacity: 0.05; /* Even fainter background image for the inner box */
}

/* Online Booking Modal Specific Variation */
.booking-modal .contact-hero-inner {
    background: rgb(255, 255, 255);
    border-radius: 60px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(255, 255, 255);
}

.booking-modal .contact-hero-content h1,
.booking-modal .checklist-title,
.booking-modal .contact-form-card h3 {
    color: var(--charcoal-black);
}

.booking-modal .contact-hero-content p,
.booking-modal .checklist-item span,
.booking-modal .form-card-header p {
    color: #444;
}

.booking-modal .modern-contact-form label {
    color: var(--charcoal-black);
}

.booking-modal .modern-contact-form input,
.booking-modal .modern-contact-form select,
.booking-modal .modern-contact-form textarea {
    background: #f8f8f8;
    border-color: #eee;
    color: var(--charcoal-black);
}

/* About Page Styles */
.about-hero {
    padding: 180px 0 120px;
    background: linear-gradient(to bottom, #ffffff 0%, #fdf8f4 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: var(--charcoal-black);
    font-weight: 900;
    line-height: 1;
}

.about-hero h1 span {
    color: var(--fox-orange);
}

.hero-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #444;
}

.about-split {
    padding: 120px 0;
    background-color: #fff;
}

.about-split.alternate-bg {
    background-color: #fcf4f0; /* Soft brand orange tint */
}

.about-split .showcase-item {
    margin-bottom: 0;
}

.about-features {
    padding: 120px 0;
    background-color: #f8f8f8; /* Soft grey to make white cards pop */
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-card {
    padding: 60px;
    background: #fff;
    border-radius: 48px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.about-card:hover {
    transform: translateY(-15px);
    border-color: rgba(241, 97, 5, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--charcoal-black);
    font-weight: 800;
}

.about-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.about-mission {
    padding: 140px 0 120px;
    background: linear-gradient(to bottom, #f8f8f8 0%, rgba(241, 97, 5, 0.9) 15%, rgba(241, 97, 5, 0.9) 85%, var(--charcoal-black) 100%);
    text-align: center;
}

.mission-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 80px;
    background: var(--charcoal-black);
    border-radius: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.mission-box h2 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.1;
}

.mission-box h2 span {
    color: var(--fox-orange);
}

.mission-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .about-hero h1 { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .mission-box { padding: 60px 40px; }
    .mission-box h2 { font-size: 2.5rem; }
}

/* Back to Top Button */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--fox-orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 10px 30px rgba(241, 97, 5, 0.3); z-index: 2001; opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border: none; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Modern Pricing Section */
.pricing-main-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: #fff;
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.pricing-card-info {
    padding: 80px;
}

.pricing-card-info h2 {
    font-size: 3rem;
    margin: 20px 0;
    color: var(--charcoal-black);
}

.pricing-card-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.pricing-checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-card-plan {
    background: #fdf8f4; /* Subtle orange tint */
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid rgba(241, 97, 5, 0.1);
}

.price-box {
    margin-bottom: 40px;
}

.price-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--fox-orange);
    margin-bottom: 10px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--charcoal-black);
}

.price-display .currency {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 10px;
}

.price-display .amount {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
}

.price-display .period {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 15px;
    opacity: 0.5;
}

.vat-note {
    font-weight: 700;
    color: var(--muted-grey);
}

.plan-footer p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .pricing-card-modern { grid-template-columns: 1fr; }
    .pricing-card-info, .pricing-card-plan { padding: 60px 40px; }
    .pricing-card-plan { border-left: none; border-top: 1px solid rgba(241, 97, 5, 0.1); }
    .price-display .amount { font-size: 5rem; }
}

/* Responsive Support */
@media (max-width: 992px) {
    .floating-element { display: none !important; }
    .hero-split { min-height: auto; padding: 140px 0 100px; }
    .hero-split::before { width: 100%; height: 100%; clip-path: none; background: linear-gradient(to bottom, rgba(217, 120, 58, 0.9) 0%, rgba(217, 120, 58, 0.9) 100%); }
    .hero-split::after { clip-path: none; background-image: url('/assets/img/herobackground.png'); }
    .hero-pricing { min-height: auto; padding: 140px 0 100px; }
    .hero-pricing::before { width: 100%; height: 100%; clip-path: none; background: linear-gradient(to bottom, rgba(217, 120, 58, 0.9) 0%, rgba(217, 120, 58, 0.9) 100%); }
    .hero-pricing::after { clip-path: none; background-image: url('/assets/img/pricinghero.png'); }
    .hero-split .container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content { align-items: center; text-align: center; width: 100%; }
    .hero-content h1 { font-size: 3rem; min-height: auto; }
    
    .about-hero h1 { font-size: 3.2rem; }
    .about-hero { padding: 140px 0 60px; }
    
    .pricing-card { flex-direction: column; }
    .pricing-plan { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
    
    .features-content-wrapper { flex-direction: column; }
    .features-visual-sticky { display: none !important; }
    
    .features-header { text-align: left; padding-right: 0; padding-left: 20px; }
    .features-list { padding-left: 40px; }
    
    .venue-stage { flex-direction: column; text-align: center; padding: 40px; }
    
    .contact-wrapper { flex-direction: column; }
    
    /* Ensure About/Benefits splits stack correctly */
    .showcase-item { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; text-align: center; }
    .showcase-item.reverse { flex-direction: column; }
    .showcase-item:nth-child(even) { direction: ltr; } /* Disable RTL flip on mobile */
    .showcase-text { text-align: center; padding: 0; }
    .showcase-text h2 { font-size: 2.5rem; text-align: center; }
    .showcase-text p { text-align: center; }
    
    /* About/Benefits Grid */
    .about-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-card { padding: 40px 30px; border-radius: 32px; }
    
    /* Contact Section Responsive */
    .contact-hero-inner { flex-direction: column; padding: 30px 15px; gap: 40px; border-radius: 24px; width: 100%; }
    .contact-hero-content { max-width: 100%; text-align: center; padding: 0 10px; }
    .contact-hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
    .contact-form-card { padding: 30px 15px; width: 100%; border-radius: 24px; }
    .checklist-item { justify-content: flex-start; text-align: left; align-items: flex-start; }
    .form-grid { gap: 15px; }
    .modern-contact-form input, .modern-contact-form select { padding: 12px 15px; font-size: 16px; /* Prevents iOS zoom on focus */ }
    .form-card-header h3 { font-size: 1.5rem; }
    .blue-btn { width: 100%; justify-content: center; padding: 18px; }
    
    /* Pricing card overrides */
    .pricing-card-modern { grid-template-columns: 1fr; border-radius: 32px; }
    .pricing-card-info, .pricing-card-plan { padding: 40px 24px; }
    .pricing-card-plan { border-left: none; border-top: 1px solid rgba(241, 97, 5, 0.1); }
    .price-display .amount { font-size: 4.5rem; }
    
    /* Mission Box */
    .mission-box { padding: 60px 24px; border-radius: 32px; }
    .mission-box h2 { font-size: 2.5rem; }
    
    .dark-header-box h2 { font-size: 2.8rem; }
    .dark-header-box p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    nav { 
        position: sticky !important; /* Stays in location but follows scroll */
        top: 15px !important; 
        margin-bottom: -60px; /* Offset to prevent pushing content too far down */
    } 

    nav.shrunk-nav .container {
        max-width: calc(100% - 32px); /* Disable pill shrink on mobile */
        padding: 8px 16px;
        justify-content: space-between;
    }

    nav .container { 
        width: calc(100% - 32px); 
        padding: 8px 16px;
        justify-content: space-between;
    }
    
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 60px; /* Adjusted for top: 15px */
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        background: #fff;
        padding: 0;
        pointer-events: none;
        z-index: 1000;
    }
    
    .nav-links.active {
        max-height: 600px;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        padding: 24px;
        pointer-events: auto;
    }

    /* Adapt mobile menu for dark-nav */
    nav.dark-nav .nav-links {
        background-color: var(--charcoal-black) !important;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    nav.dark-nav .nav-links a:not(.cta-button):not(.login-btn) {
        color: var(--white) !important;
    }

    .nav-links a { width: 100%; text-align: center; }
    .nav-links .login-btn { margin: 5px 0; }
    .nav-links .cta-button { width: 100%; margin-top: 10px; }

    .logo-text { font-size: 1rem; }
    
    .about-hero h1 { font-size: 2.5rem; }
    .about-hero { padding: 120px 0 40px; }
    
    .showcase-text h2 { font-size: 2.2rem; }
    
    .venue-showcase-title { 
        font-size: 2.2rem; 
        padding: 0 15px;
        white-space: normal;
        line-height: 1.1;
        margin-bottom: 25px;
        display: block;
        max-width: 100%;
    }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-nav { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px 10px; 
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    .footer-nav a { font-size: 0.9rem; }
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--charcoal-black);
    font-size: 1rem;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    color: #28c840; /* Green check */
    flex-shrink: 0;
}

.enterprise-plan .feature-list li svg {
    color: var(--charcoal-black);
}

/* Pricing Trust Section */
.pricing-trust-section {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: #fdf8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fox-orange);
    margin: 0 auto 20px;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #fff;
}

.center-header {
    text-align: center;
    margin-bottom: 60px;
}

.center-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.center-header p {
    font-size: 1.2rem;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(241, 97, 5, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
    color: var(--fox-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if content is very long */
    padding-bottom: 24px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pricing-cards-wrapper { grid-template-columns: 1fr; max-width: 600px; gap: 60px; }
    .featured-plan { transform: scale(1.02); }
    .trust-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; }
    
    .pricing-card-modern { padding: 40px 30px; }
    .price-display-large .amount { font-size: 4rem; }
}

@media (max-width: 768px) {
    .center-header h2 { font-size: 2.2rem; }
    .featured-plan { transform: none; }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(241, 97, 5, 0.1);
    color: var(--fox-orange);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 0 0 1px rgba(241, 97, 5, 0.2);
}

/* Responsive Support */
@media (max-width: 992px) {
    .floating-element { display: none !important; }
    .hero-split { min-height: auto; padding: 140px 0 100px; }
    .hero-split::before { width: 100%; height: 100%; clip-path: none; background: linear-gradient(to bottom, rgba(217, 120, 58, 0.9) 0%, rgba(217, 120, 58, 0.9) 100%); }
    .hero-split::after { clip-path: none; background-image: url('/assets/img/herobackground.png'); }
    .hero-pricing { min-height: auto; padding: 140px 0 100px; }
    .hero-pricing::before { width: 100%; height: 100%; clip-path: none; background: linear-gradient(to bottom, rgba(217, 120, 58, 0.9) 0%, rgba(217, 120, 58, 0.9) 100%); }
    .hero-pricing::after { clip-path: none; background-image: url('/assets/img/pricinghero.png'); }
    .hero-split .container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content { align-items: center; text-align: center; width: 100%; }
    .hero-content h1 { font-size: 3rem; min-height: auto; }
    
    .about-hero h1 { font-size: 3.2rem; }
    .about-hero { padding: 140px 0 60px; }
    
    .pricing-card { flex-direction: column; }
    .pricing-plan { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
    
    .features-content-wrapper { flex-direction: column; }
    .features-visual-sticky { display: none !important; }
    
    .features-header { text-align: left; padding-right: 0; padding-left: 20px; }
    .features-list { padding-left: 40px; }
    
    .venue-stage { flex-direction: column; text-align: center; padding: 40px; }
    
    .contact-wrapper { flex-direction: column; }
    
    /* Ensure About/Benefits splits stack correctly */
    .showcase-item { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; text-align: center; }
    .showcase-item.reverse { flex-direction: column; }
    .showcase-item:nth-child(even) { direction: ltr; } /* Disable RTL flip on mobile */
    .showcase-text { text-align: center; padding: 0; }
    .showcase-text h2 { font-size: 2.5rem; text-align: center; }
    .showcase-text p { text-align: center; }
    
    /* About/Benefits Grid */
    .about-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-card { padding: 40px 30px; border-radius: 32px; }
    
    /* Contact Section Responsive */
    .contact-hero-inner { flex-direction: column; padding: 30px 15px; gap: 40px; border-radius: 24px; width: 100%; }
    .contact-hero-content { max-width: 100%; text-align: center; padding: 0 10px; }
    .contact-hero-content h1 { font-size: 2.2rem; line-height: 1.2; }
    .contact-form-card { padding: 30px 15px; width: 100%; border-radius: 24px; }
    .checklist-item { justify-content: flex-start; text-align: left; align-items: flex-start; }
    .form-grid { gap: 15px; }
    .modern-contact-form input, .modern-contact-form select { padding: 12px 15px; font-size: 16px; /* Prevents iOS zoom on focus */ }
    .form-card-header h3 { font-size: 1.5rem; }
    .blue-btn { width: 100%; justify-content: center; padding: 18px; }
    
    /* Pricing card overrides */
    .pricing-card-modern { grid-template-columns: 1fr; border-radius: 32px; }
    .pricing-card-info, .pricing-card-plan { padding: 40px 24px; }
    .pricing-card-plan { border-left: none; border-top: 1px solid rgba(241, 97, 5, 0.1); }
    .price-display .amount { font-size: 4.5rem; }
    
    /* Mission Box */
    .mission-box { padding: 60px 24px; border-radius: 32px; }
    .mission-box h2 { font-size: 2.5rem; }
    
    .dark-header-box h2 { font-size: 2.8rem; }
    .dark-header-box p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    nav { 
        position: sticky !important; /* Stays in location but follows scroll */
        top: 15px !important; 
        margin-bottom: -60px; /* Offset to prevent pushing content too far down */
    } 

    nav.shrunk-nav .container {
        max-width: calc(100% - 32px); /* Disable pill shrink on mobile */
        padding: 8px 16px;
        justify-content: space-between;
    }

    nav .container { 
        width: calc(100% - 32px); 
        padding: 8px 16px;
        justify-content: space-between;
    }
    
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 60px; /* Adjusted for top: 15px */
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        background: #fff;
        padding: 0;
        pointer-events: none;
        z-index: 1000;
    }
    
    .nav-links.active {
        max-height: 600px;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        padding: 24px;
        pointer-events: auto;
    }

    /* Adapt mobile menu for dark-nav */
    nav.dark-nav .nav-links {
        background-color: var(--charcoal-black) !important;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    nav.dark-nav .nav-links a:not(.cta-button):not(.login-btn) {
        color: var(--white) !important;
    }

    .nav-links a { width: 100%; text-align: center; }
    .nav-links .login-btn { margin: 5px 0; }
    .nav-links .cta-button { width: 100%; margin-top: 10px; }

    .logo-text { font-size: 1rem; }
    
    .about-hero h1 { font-size: 2.5rem; }
    .about-hero { padding: 120px 0 40px; }
    
    .showcase-text h2 { font-size: 2.2rem; }
    
    .venue-showcase-title { 
        font-size: 2.2rem; 
        padding: 0 15px;
        white-space: normal;
        line-height: 1.1;
        margin-bottom: 25px;
        display: block;
        max-width: 100%;
    }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-nav { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 20px 10px; 
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    .footer-nav a { font-size: 0.9rem; }
}/* --- New Pricing Page CSS --- */

/* Hero Section */
.pricing-hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: #0f0f0f; /* Dark background matching index footer/dark mode */
    text-align: center;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(241, 97, 5, 0.15), transparent 70%);
    z-index: 1;
}

.hero-overlay-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/grid.png'); /* Reusing existing grid asset */
    background-size: 60px 60px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pricing-hero h1 span {
    color: #f16105;
}

.pricing-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(241, 97, 5, 0.15);
    color: #f16105;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(241, 97, 5, 0.3);
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 80px 0 120px;
    background: #f8f8f8;
    margin-top: -60px; /* Overlap hero */
    position: relative;
    z-index: 3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 32px;
    padding: 50px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Light Card (Standard) */
.card-light {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Dark Card (Enterprise) */
.card-dark {
    background: #0f0f0f;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.popular-tag {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.card-light .plan-name { color: #0f0f0f; }
.card-dark .plan-name { color: #fff; }

.price-wrap {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    margin-right: 4px;
}

.amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.card-light .amount { color: #0f0f0f; }
.card-dark .amount { color: #fff; }

.period {
    font-size: 1.2rem;
    color: #888;
    margin-left: 4px;
}

.plan-desc {
    font-size: 1rem;
    color: #666;
}

.card-dark .plan-desc { color: rgba(255,255,255,0.6); }

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 30px;
    transition: 0.3s ease;
}

.btn-dark {
    background: #0f0f0f;
    color: #fff;
}
.btn-dark:hover { background: #333; }

.btn-orange {
    background: #f16105;
    color: #fff;
}
.btn-orange:hover { background: #ff7b29; }

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

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.check {
    color: #28c840; /* Green check */
    margin-right: 12px;
    font-weight: 800;
}

/* Benefits Section */
.pricing-benefits {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f0f0f;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

.icon-box {
    width: 60px; height: 60px;
    background: #fdf4ee;
    color: #f16105;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 120px;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.section-title h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    cursor: pointer;
}

.faq-q {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f0f0f;
    position: relative;
    padding-right: 30px;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 0; top: 0;
    color: #f16105;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item.active .faq-q::after {
    content: '-';
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    color: #666;
    margin-top: 0;
    transition: 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 100px;
    margin-top: 15px;
}

/* Footer CTA */
.footer-cta {
    background: #0f0f0f;
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.footer-cta .btn-pricing {
    display: inline-block;
    min-width: 200px;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-hero h1 { font-size: 3rem; }
    .pricing-cards-section { margin-top: 0; padding-top: 40px; }
}

/* --- Enhanced Pricing Page Styling --- */
.pricing-hero {
    position: relative;
    overflow: hidden;
}

.pricing-hero .about-hero-content {
    position: relative;
    z-index: 2;
}

/* Background Grid Overlay for Hero */
.hero-grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(to right, rgba(241, 97, 5, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(241, 97, 5, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.pricing-features-grid {
    padding: 100px 0;
    background: #fff;
}

.features-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-box-modern {
    padding: 40px;
    background: #fcfcfc;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.feature-box-modern:hover {
    transform: translateY(-10px);
    border-color: var(--fox-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.feature-box-modern .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(241, 97, 5, 0.1);
    color: var(--fox-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-box-modern h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.feature-box-modern p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-comparison-grid { grid-template-columns: 1fr; }
}


/* --- Clean Consolidated Pricing Page Styles --- */

.mt-20 { margin-top: 20px; }

.pricing-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
}

.pricing-features-comparison {
    padding: 140px 0 100px;
    background: linear-gradient(to bottom, #ffffff 0%, #fdf8f4 15%, #fdf8f4 85%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.bg-gradient-orange-fade {
    background: linear-gradient(to bottom, #ffffff 0%, #fdf8f4 15%, #fdf8f4 85%, #ffffff 100%);
    position: relative;
}

.bg-gradient-white-orange {
    background: linear-gradient(to bottom, #ffffff 0%, #fdf8f4 100%);
    position: relative;
}

.bg-gradient-orange-white {
    background: linear-gradient(to bottom, #fdf8f4 0%, #ffffff 100%);
    position: relative;
}

/* Master Plan Showcase */
.plan-showcase-box {
    background: #fff;
    border-radius: 40px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 6px solid var(--fox-orange);
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
}

.plan-showcase-info { flex: 1; }
.plan-showcase-features {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-mini-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fdf8f4;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal-black);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-mini-pill:hover {
    border-color: var(--fox-orange);
    background: #fff;
    transform: translateX(5px);
}

.feature-mini-pill svg {
    width: 18px;
    height: 18px;
    color: var(--fox-orange);
    flex-shrink: 0;
}

/* Integrations Visual with Clockwise Orbit */
.integrations-circle {
    width: 480px;
    height: 480px;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-host-img {
    width: 450px;
    height: auto;
    z-index: 1; /* Man sits behind the orbiting text */
    position: relative;
}

.logo-bubble {
    position: absolute;
    background: #fff;
    padding: 10px 24px;
    border-radius: 100px; /* Pill shape */
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--charcoal-black);
    font-size: 0.9rem;
    border: 1px solid rgba(241, 97, 5, 0.15);
    z-index: 10; /* Words float on top of man */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: float-gentle 4s ease-in-out infinite;
}

.logo-bubble::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fox-orange);
    display: block;
    box-shadow: 0 0 10px rgba(241, 97, 5, 0.4);
}

.logo-bubble:hover {
    transform: scale(1.05) translateY(-5px) !important;
    border-color: var(--fox-orange);
    box-shadow: 0 15px 35px rgba(241, 97, 5, 0.15);
}

/* Mixed styling for visual variety */
.b-2, .b-4 {
    background: var(--charcoal-black);
    color: #fff;
    border-color: #333;
}

.b-2::before, .b-4::before {
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.b-1 { top: 10%; left: 5%; animation-delay: 0s; }
.b-2 { top: 15%; right: 5%; animation-delay: -0.8s; }
.b-3 { top: 50%; left: -10%; animation-delay: -1.6s; }
.b-4 { top: 55%; right: -10%; animation-delay: -2.4s; }
.b-5 { bottom: 5%; left: 25%; animation-delay: -3.2s; }

/* Enhancement Cards */
.enhancement-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid var(--fox-orange);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.enhancement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(241, 97, 5, 0.12);
    border-color: var(--fox-orange);
}

.enhancement-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--charcoal-black);
}

.enhancement-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.enhancement-price {
    margin-top: auto;
    font-weight: 800;
    color: var(--fox-orange);
    font-size: 1.25rem;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* FAQ Styling */
.faq-section-mimic {
    background: #fdf8f4;
    padding: 120px 0;
}

.faq-header-mimic { text-align: center; margin-bottom: 60px; }
.faq-header-mimic h2 { font-size: 4rem; color: var(--charcoal-black); font-weight: 800; }

.faq-card-mimic {
    background: #fff;
    border-radius: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.faq-row-mimic { border-bottom: 1.5px solid #fdf8f4; }
.faq-row-mimic:last-child { border-bottom: none; }

.faq-trigger-mimic {
    width: 100%; text-align: left; padding: 30px 10px; background: none; border: none;
    font-size: 1.3rem; font-weight: 700; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; color: var(--charcoal-black);
}

.faq-arrow {
    width: 12px; height: 12px; border-right: 3px solid var(--fox-orange);
    border-bottom: 3px solid var(--fox-orange); transform: rotate(45deg); transition: transform 0.3s ease;
}

.faq-row-mimic.active .faq-arrow { transform: rotate(-135deg); }
.faq-content-mimic { max-height: 0; overflow: hidden; transition: all 0.4s ease; padding: 0 10px; color: #555; }
.faq-row-mimic.active .faq-content-mimic { max-height: 200px; padding-bottom: 30px; }

/* Responsive Overrides */
@media (max-width: 1100px) {
    .pricing-hero-title { font-size: 3rem !important; }
    .plan-showcase-box { flex-direction: column; padding: 60px 40px; gap: 60px; text-align: center; }
    .plan-showcase-features { width: 100%; }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-features-comparison { padding: 80px 0; }
}

@media (max-width: 768px) {
    .pricing-hero-title { font-size: 2.2rem !important; line-height: 1.2; }
    .plan-showcase-box { padding: 40px 20px; border-radius: 24px; }
    .plan-showcase-features { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .integrations-circle { width: 320px; height: 320px; margin: 0 auto; }
    .center-host-img { width: 300px; }
    .logo-bubble { font-size: 0.8rem; padding: 8px 12px; }
    @keyframes orbit-1 {
        from { transform: translate(-50%, -50%) rotate(0deg) translate(140px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translate(140px) rotate(-360deg); }
    }
    @keyframes orbit-2 {
        from { transform: translate(-50%, -50%) rotate(0deg) translate(160px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translate(160px) rotate(-360deg); }
    }
    @keyframes orbit-3 {
        from { transform: translate(-50%, -50%) rotate(0deg) translate(130px) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg) translate(130px) rotate(-360deg); }
    }
    .faq-header-mimic h2 { font-size: 2.5rem; }
    .faq-trigger-mimic { font-size: 1.1rem; }
}
