/* ============================================= */
/* GLOBAL STYLES & VARIABLES */
/* ============================================= */
:root {
    --dark-bg: #080808;
    --light-text: #F5F5F5;
    --primary-accent: #007BFF;
    --primary-accent-hover: #0056b3;
    --font-headline: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --bibe-gradient: linear-gradient(90deg, #D6007E, #A300C3, #4E54FF);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}
body.no-scroll { overflow: hidden; }
/* ============================================= */
/* BUSINESS CATEGORY BAR (TOP BAR) */
/* ============================================= */
.business-category {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1100;
    background-color: #000000;
    display: flex;
    justify-content: left; /* Centered for mobile */
    align-items: left;
    padding: 0.75rem 5%;
    transition: top 0.4s ease-in-out;
}

.business-category.hidden { top: -100px; }
.nav-logo-main { display: none; } /* Hide this logo as it's now in the main header */

.persona-nav {
    display: flex;
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: 20px;
    padding: 5px;
    gap: 5px;
}

.persona-tab {
    padding: 0.5rem 1.5rem;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.persona-tab:hover { background-color: #222; }

.persona-tab.active { 
    background: var(--bibe-gradient); 
    color: white;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================= */
/* HEADER (HERO OVERLAY & STICKY NAV) */
/* ============================================= */
.header-overlay {
    position: absolute;
    top: 65px; 
    left: 0;
    width: 100%;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}


.header-overlay.sticky {
    position: fixed;
    top: 0;
    padding: 1rem 5%;
    background-color: rgba(30, 29, 29, 0.9);
    backdrop-filter: blur(10px);
}

.hero-logo { 
    margin-left: 0; 
    display: block;  
    background-image: url('assets/Bibe-Logo-Main.png'); 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: left center;
    width: 150px;
    height: 65px; 
    transition: height 0.4s ease-in-out, width 0.4s ease-in-out;
    z-index: 500;
}
.hero-logo img { display: none; }
.header-overlay.sticky .hero-logo {
    height: 40px;
    width: 120px;
}

.hero-links { display: flex; align-items: center; gap: 2rem; }
.hero-link { color: var(--light-text); text-decoration: none; font-weight: 500; font-size: 1rem; position: relative; padding: 8px 12px; border-radius: 8px; display: flex; align-items: center; gap: 0.25rem; transition: background-color 0.3s ease; }
.hero-link:hover { background-color: #222; }
.hero-link.active { background-color: #2F0E2F; }

.hero-link-dropdown {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: -25px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 0.5rem;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.hero-link-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}
.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}
.dropdown-menu a:hover {
    background-color: #333;
}

.hamburger { display: none; cursor: pointer; background-color: rgba(30, 29, 29, 0.9); backdrop-filter: blur(10px); z-index: 2102;}
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--light-text); }

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
}

.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.video-background video { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); }
.hero-content { z-index: 1; max-width: 800px; padding-top: 120px; }

.hero-headline { 
    font-family: var(--font-headline); 
    font-size: 4.5rem; 
    margin-bottom: 0.5rem; 
    line-height: 1.1;
}
.hero-tagline {
    font-family: var(--font-headline);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ddd;
    font-weight: 700;
    line-height: 1.2;
}
.hero-aware {font-family: var(--font-body);
    font-size: 1rem;
    margin-top: 3rem;}
.hero-subheadline { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
}

.hero-top-button {
    padding: 0.8rem 2rem !important;
    border-radius: 25px !important;
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
}

/* ============================================= */
/* GLOBAL BUTTON STYLES */
/* ============================================= */
.button-group {
    display: inline-flex;
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: 20px;
    padding: 5px;
    margin-top: 1rem;
    gap: 5px;
}

.button-primary, .button-secondary {
    padding: 0.5rem 1.5rem;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
    cursor: pointer;
}

.button-primary { background: var(--bibe-gradient); }
.button-primary:hover { filter: brightness(1.2); }

.button-secondary { background-color: transparent; }
.button-group .button-secondary:hover { background-color: #222; }

.store-buttons { gap: 1rem; background-color: transparent; padding: 0; }
.store-buttons a { display: inline-block; transition: transform 0.2s ease; }
.store-buttons a:hover { transform: scale(1.05); }
.store-buttons img { height: 50px; width: auto; }

/* ============================================= */
/* GENERAL SECTION & CARD STYLES */
/* ============================================= */
section{padding:6rem 5%;text-align:center}
.section-title{font-family:var(--font-headline);font-size:2.5rem;margin-bottom:3rem}

.features-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    flex-basis: 22%; 
    min-width: 280px;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--light-text);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.feature-card-text {
    background: linear-gradient(180deg, #222, #111);
    padding: 1.5rem;
    margin: 0 0 10px 0;
    border-radius: 8px;
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.feature-card h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.feature-card p {
    margin-bottom: 0;
}

/* ============================================= */
/* VENUE SOLUTIONS SECTION (IMAGE CARDS) */
/* ============================================= */
.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-tile {
    flex-basis: 22%;
    min-width: 280px;
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--light-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.solution-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.solution-tile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.3s ease;
}

.solution-tile:hover img { transform: scale(1.05); }

.solution-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
}

.solution-tile span {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    z-index: 3;
    line-height: 1.2;
}


/* ============================================= */
/* CONTACT PAGE STYLES */
/* ============================================= */
.contact-page-hero {
    background-image: url('assets/bibe-hero-bg-contact.png');
    background-size: cover;
    background-position: center;
    height: auto; /* Changed from 100vh */
}

.contact-page-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 190px;
    z-index: 2;
    position: relative;
}
.contact-hero-text {
    flex: 1;
    text-align: left;
}
.contact-form-container {
    flex: 1;
    position: relative;
}
.contact-form {
    width: 100%;
    background-color: rgba(26, 26, 26, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
}
.contact-form .form-row {
    display: flex;
    gap: 1.5rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1rem;
    color: var(--light-text);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.contact-form .submit-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
}


/* ============================================= */
/* FINAL CTA & FOOTER */
/* ============================================= */
.final-cta{background-color:#1a1a1a}.final-cta p{max-width:600px;margin:-2rem auto 2rem}

footer {
    background-color: #000;
    padding: 4rem 5% 2rem;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact-info a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.footer-contact-info a:hover {
    color: #aaa;
}
.footer-socials {
    display: flex;
    gap: 1.5rem;
}
.footer-socials a {
    color: var(--light-text);
    transition: color 0.2s;
}
.footer-socials a:hover {
    color: #aaa;
}
.footer-socials svg {
    width: 28px;
    height: 28px;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--light-text);
}
.footer-copyright {
    color: #888;
    margin-top: 2rem;
}


.inner-page-hero { padding-top: 150px; padding-bottom: 4rem; background-color: #1a1a1a; }
.placeholder-content { padding: 4rem 5%; }
.legal-content { max-width: 800px; margin: 0 auto; text-align: left; padding-bottom: 6rem; }
.legal-content h2 { font-family: var(--font-headline); font-size: 2rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--light-text); }
.legal-content p { color: #ccc; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style-position: inside; padding-left: 1rem; }
.legal-content ul li { margin-bottom: 0.5rem; }

/* ============================================= */
/* USER FEATURES PAGE STYLES */
/* ============================================= */
.user-hero {
    padding: 10rem 5% 6rem;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.user-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('assets/Bibe-Logo-User-Hero.png'),
        radial-gradient(circle at 15% 25%, rgba(163, 0, 195, 0.25), transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(78, 84, 255, 0.25), transparent 50%);
    background-repeat: no-repeat;
    background-position: center center, center center, center center;
    background-size: 50% auto, cover, cover;
    opacity: 0.8;
    z-index: 1;
}

.user-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 120px;
}
.user-hero-text {
    flex-basis: 50%;
    text-align: left;
}
.user-hero-text h1 {
    font-family: var(--font-headline);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.user-hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}
.user-hero-visual {
    flex-basis: 50%;
    align-self: flex-end;
}
.user-hero-visual img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.user-feature-section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}
.user-feature-section.alt-bg {
    background-image: url('assets/bibe-user-pic-bg-sect1.jpg');
    background-size: cover;
    background-position: center;
}
.user-feature-section.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}
.user-feature-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.user-feature-content.right-align {
    flex-direction: row-reverse;
}
.user-feature-text {
    flex-basis: 50%;
    text-align: left;
}
.user-feature-text h2 {
    font-family: var(--font-headline);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.user-feature-text p {
    font-size: 1.1rem;
    color: #ccc;
}
.user-feature-visual {
    flex-basis: 50%;
}
.user-feature-visual img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* ============================================= */
/* GET STARTED CTA SECTION */
/* ============================================= */
.get-started-section {
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(163, 0, 195, 0.15), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(78, 84, 255, 0.15), transparent 40%);
    z-index: 1;
}
.get-started-content {
    position: relative;
    z-index: 2;
}
.get-started-logo {
    height: 80px;
    margin-bottom: 1.5rem;
}
.get-started-section h3 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* ============================================= */
/* ABOUT PAGE STYLES */
/* ============================================= */
.about-hero {
    background-image: url('assets/bibe-about-hero-bg.png');
    background-size: cover;
    background-position: center;
}
.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 120px;
    z-index: 2;
    position: relative;
}
.about-hero-text {
    flex-basis: 50%;
    text-align: left;
}
.about-hero-text h1 {
    font-family: var(--font-headline);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.about-hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}
.about-hero-visual {
    flex-basis: 50%;
}
.about-hero-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}

.about-feature-section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}
.about-feature-section.alt-bg {
    background-color: #000; /* A slightly different dark bg for variety */
}
.about-feature-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.about-feature-content.right-align {
    flex-direction: row-reverse;
}
.about-feature-text {
    flex-basis: 50%;
    text-align: left;
}
.about-feature-text h2 {
    font-family: var(--font-headline);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.about-feature-text p {
    font-size: 1.1rem;
    color: #ccc;
}
.about-feature-visual {
    flex-basis: 50%;
}
.about-feature-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.team-section {
    padding: 6rem 5%;
    background-color: #000;
}
.team-section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.team-section-container h2 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.team-section-container p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ccc;
}
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.team-member-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-align: left;
    width: 100%;
    max-width: 350px;
}
.team-member-image {
    width: 100%;
    height: 350px; /* Force a consistent height */
    overflow: hidden;
}
.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will crop the image to fit, not stretch it */
    object-position: top; /* Crop from the bottom, keeping the head visible */
}
.team-member-card h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.25rem;
}
.team-member-card h4 {
    font-size: 1rem;
    color: #aaa;
    margin: 0 1.5rem 1rem;
}
.team-member-card p {
    margin: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.where-we-work-section {
    padding: 6rem 5%;
    position: relative;
    background-color: #000;
}
.where-we-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.8), rgba(26, 0, 0, 0.8)),
        url('assets/bibe-user-pic-bg-sect1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.where-we-work-section .team-section-container {
    position: relative;
    z-index: 2;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}
.location-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-align: left;
}
.location-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-card-text {
    padding: 20px;
}
.location-card h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.location-card p {
    color: #ccc;
    line-height: 1.6;
}

/* ============================================= */
/* PRODUCT SUITE PAGE STYLES */
/* ============================================= */
.product-suite-hero {
    background-image: url('assets/bibe-hero-bg-psuite.png');
    background-size: cover;
    background-position: center;
}
.product-suite-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 200px;
    z-index: 2;
    position: relative;
}
.product-suite-hero-text {
    flex-basis: 50%;
    text-align: left;
}
.product-suite-hero-text h1 {
    font-family: var(--font-headline);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.product-suite-hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}
.product-suite-hero-visual {
    flex-basis: 50%;
}
.product-suite-hero-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
}

.product-suite-section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}
.product-suite-section.alt-bg {
    background-color: #000; /* A slightly different dark bg for variety */
}
.product-suite-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.product-suite-content.right-align {
    flex-direction: row-reverse;
}
.product-suite-text {
    flex-basis: 50%;
    text-align: left;
}
.product-suite-text h2 {
    font-family: var(--font-headline);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.product-suite-text p {
    font-size: 1.1rem;
    color: #ccc;
}
.product-suite-visual {
    flex-basis: 50%;
}
.product-suite-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* ============================================= */
/* DEMO PAGE STYLES */
/* ============================================= */
.demo-hero {
    background-image: url('assets/bibe-demo-hero-bg.png');
    background-size: cover;
    background-position: center;
}
.demo-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 120px;
    z-index: 2;
    position: relative;
}
.demo-hero-text {
    flex-basis: 50%;
    text-align: left;
}
.demo-hero-text h1 {
    font-family: var(--font-headline);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.demo-hero-text p {
    font-size: 1.1rem;
    color: #ccc;
}
.demo-hero-visual {
    flex-basis: 50%;
}
.demo-hero-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

.calendly-section {
    padding: 0 5% 6rem; /* Reduced top padding */
    background-color: #000;
}
.calendly-inline-widget{ background-color: #000;}



/* ============================================= */
/* RESPONSIVE DESIGN (FOR MOBILE) */
/* ============================================= */
.nav-menu{position:fixed;top:0;right:-100vw;flex-direction:column;justify-content:flex-start;background-color:#1a1a1a;width:75vw;max-width:400px;height:100vh;text-align:left;transition:.3s ease-in-out;list-style:none; z-index: 1101; padding: 6rem 2rem 2rem;}.nav-menu.active{right:0}.nav-item{margin:1.5rem 0}.nav-link{font-size:1.5rem;color:var(--light-text);text-decoration:none}.nav-item-divider{height:1px;width:100%;background-color:#333;margin:1rem 0}
.nav-item .submenu {list-style: none;padding-left: 1rem;max-height: 0;overflow: hidden;transition: max-height 0.3s ease-out;}
.nav-item.open .submenu {max-height: 200px;}
.nav-item .submenu .nav-link {font-size: 1.2rem;color: #ccc;}
@media (max-width: 992px) {
    .header-overlay .hero-links { display: none; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2){opacity:0}
    .hamburger.active .bar:nth-child(1){transform:translateY(8px) rotate(45deg)}
    .hamburger.active .bar:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
    .hero-headline{font-size:2.8rem}
    .hero-tagline{font-size: 1.5rem;}
    .hero-aware{font-size: 1rem;}
    .contact-page-hero .hero-content { flex-direction: column; text-align: center; }
    .contact-hero-text { text-align: center; }
    .user-hero-content, .user-feature-content, .user-feature-content.right-align { flex-direction: column; text-align: center;}
    .user-hero-text, .user-feature-text { text-align: center; }
    .product-suite-hero-content { flex-direction: column; text-align: center; }
    .product-suite-hero-text { text-align: center; }
    .product-suite-content, .product-suite-content.right-align { flex-direction: column; text-align: center;}
    .product-suite-text { text-align: center; }
    .about-hero-content, .about-feature-content, .about-feature-content.right-align { flex-direction: column; text-align: center;}
    .about-hero-text, .about-feature-text { text-align: center; }
    .demo-hero-content { flex-direction: column; text-align: center; }
    .demo-hero-text { text-align: center; }
}
@media (max-width: 768px) {
    .hero-headline{font-size:2.5rem}
    .hero-tagline{font-size: 1.2rem;}
    .hero-aware{font-size: 1rem;}
    .button-group{display:flex;flex-direction:column;align-items:center;gap:1rem; background: transparent; padding: 0;}
    .store-buttons { flex-direction: column; }
    .contact-form .form-row { flex-direction: column; gap: 0; }
    .user-hero-text h1 { font-size: 3rem; }
    .user-hero::before { background-size: 80% auto, cover, cover; } /* Make logo bigger on mobile */
    .team-grid { grid-template-columns: 1fr; } /* Stack team members on mobile */
}

