/* =========================================================
   JUST BETWEEN US (JBU) - PREMIUM OFFICIAL STYLESHEET
   Apple Keynote / Netflix / TED Aesthetic
   ========================================================= */

:root {
    /* Brand Colors */
    --primary-red: #B5282A;
    --red-glow: rgba(181, 40, 42, 0.4);
    --black: #000000;
    --dark-grey: #0a0a0a;
    --charcoal: #141414;
    --white: #FFFFFF;
    --text-muted: #999999;
    --silver: #cccccc;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.3s ease;
}

/* Base Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1,
h2,
h3,
h4,
.brand-line {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    color: var(--silver);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-fast);
}

/* Helpers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 2rem;
}

.mt-40 {
    margin-top: 4rem;
}

.pb-60 {
    padding-bottom: 6rem;
}

.pb-0 {
    padding-bottom: 0 !important;
}

/* Sections */
.section {
    padding: 100px 0;

}

.guests-section {
    padding-top: 10px;
}

.dark-grey-bg {
    background-color: var(--dark-grey);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 3rem;
}

/* =========================================================
   NAVIGATION (Sticky Premium)
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 30px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.navbar.scrolled,
.navbar.solid {
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    /* Adjust based on your logo design */
    width: auto;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--silver);
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-fast);
}

.nav-item:hover,
.nav-item.active {
    color: var(--white);
}

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover,
.glow-effect:hover {
    background-color: #d13032;
    box-shadow: 0 0 30px var(--red-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* =========================================================
   CONTACT CTA & WATCH NOW BUTTON
   ========================================================= */
.nav-cta {
    background-color: var(--primary-red) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
    border: none !important;
    letter-spacing: 1px !important;
}

.nav-cta:hover {
    background-color: #d13032 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 40, 42, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* =========================================================
   MOBILE MENU TOGGLE
   ========================================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.watch-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid var(--primary-red);
    color: var(--white);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.watch-now-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(181, 40, 42, 0.4);
    transform: translateY(-2px);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

/* Premium Moving Background Glows */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    opacity: 0.6;
    animation: floatGlow 15s ease-in-out infinite;
    pointer-events: none;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-red) 0%, rgba(181, 40, 42, 0) 70%);
    top: -15%;
    left: -10%;
}

.hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff1a1e 0%, rgba(255, 26, 30, 0) 70%);
    bottom: -15%;
    right: -5%;
    animation-delay: -7.5s;
    opacity: 0.4;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, -60px) scale(1.1);
    }

    66% {
        transform: translate(-60px, 80px) scale(0.9);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    padding: 0 20px;
    margin-top: 10rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--silver);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.brand-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: inline-block;
}

/* =========================================================
   LAYOUTS (Split & Grids)
   ========================================================= */
.split-layout {
    display: flex;
    gap: 80px;
}

.split-layout.align-center {
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    min-height: 500px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
}

.highlight-block {
    background: rgba(181, 40, 42, 0.05);
    border-left: 3px solid var(--primary-red);
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 30px;
}

/* Image Placeholders (Premium empty state) */
.img-placeholder {
    /* background-color: var(--charcoal); */
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    background-size: cover;
    background-position: center;
}

.placeholder-about {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.placeholder-format {
    background-image: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?auto=format&fit=crop&q=80');
}

.placeholder-guest {
    background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&q=80');
}

.placeholder-team {
    background-image: url('https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&q=80');
}

/* =========================================================
   WHY JBU (Cards)
   ========================================================= */
.vision-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--black);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.why-card.border-red {
    border-top: 2px solid var(--primary-red);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   WHAT MAKES JBU DIFFERENT
   ========================================================= */
.feature-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: var(--charcoal);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: #1a1a1a;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.5;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* =========================================================
   FORMAT SECTION
   ========================================================= */
.format-list {
    list-style: none;
    margin-top: 30px;
}

.format-list li {
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.format-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
}

.format-list li strong {
    color: var(--white);
    font-weight: 600;
}

.highlight-text-small {
    font-style: italic;
    color: var(--white);
    border-left: 2px solid var(--primary-red);
    padding-left: 15px;
}

/* =========================================================
   GUESTS SECTION
   ========================================================= */
.guests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 4rem;
}

.guest-card {
    background: var(--dark-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(181, 40, 42, 0.3);
}

.guest-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--primary-red);
}

.guest-img-wrapper .img-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.guest-card:hover .img-placeholder {
    transform: scale(1.05);
}

.guest-info {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
}

.guest-info h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.guest-role {
    color: var(--silver);
    font-size: 1rem;
    margin-bottom: 15px;
}

.guest-highlight {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

/* Ensure watch button stays at bottom of card */
.guest-info .watch-now-btn {
    margin-top: auto;
    align-self: center;
}

/* =========================================================
   VEL TECH CONNECTION
   ========================================================= */
.badge {
    display: inline-block;
    background: rgba(181, 40, 42, 0.1);
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.center-text-large {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--white);
    line-height: 1.8;
}

.support-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.support-box {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--silver);
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
}

/* =========================================================
   GROWTH & PARTNERS
   ========================================================= */
.bold-impact {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    margin-top: 30px;
    border-left: 3px solid var(--primary-red);
    padding-left: 20px;
}

.partner-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.partner-list li {
    background: var(--charcoal);
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--white);
}

.btn-group {
    display: flex;
    gap: 15px;
}

/* =========================================================
   CONTACT SECTION & FORM
   ========================================================= */
.contact-section {
    background: var(--dark-grey);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--charcoal);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.split-form-group {
    display: flex;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 16px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(181, 40, 42, 0.05);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 18px;
}

@media (max-width: 768px) {
    .split-form-group {
        flex-direction: column;
        gap: 20px;
    }

    .form-container {
        padding: 30px 20px;
    }
}

/* =========================================================
   FLOW SECTION
   ========================================================= */
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.flow-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--black);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 0 20px rgba(181, 40, 42, 0.2);
}

.step-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.4;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #030303;
    padding: 80px 0 0;
    border-top: 1px solid #111;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;

    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 60px;
    /* Adjust height based on logo proportions */
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 100px;
    /* Separates the logo side from the nav side */
}

.link-group h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 0;
}

/* =========================================================
   TEAM DIRECTORY (team.html specifics)
   ========================================================= */
.team-directory {
    padding-top: 50px;
}

.team-page-body {
    background: var(--dark-grey);
}

.team-hero {
    padding: 150px 0 50px;
}

/* Premium Flexbox/Grid for Team layout */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

}

/* Control widths for equal 3-column layout on desktop */
.team-member-card {
    width: calc(33.333% - 20px);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--charcoal);
    cursor: pointer;
}

.tm-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
    filter: grayscale(0%) contrast(1);
}

/* The Cinematic Overlay */
.tm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Smooth dark overlay */
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px 20px;
}

.team-member-card:hover .tm-image {
    transform: scale(1.08);
    /* slight zoom underneath */
    filter: grayscale(100%) contrast(1.1);
}

.team-member-card:hover .tm-overlay {
    opacity: 1;
    /* reveal overlay */
}

.tm-content {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-member-card:hover .tm-content {
    transform: translateY(0);
}

.tm-name {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.tm-designation {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tm-line {
    width: 30px;
    height: 2px;
    background: var(--white);
    margin-bottom: 15px;
    opacity: 0.3;
}

.tm-desc {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.5;
    margin-bottom: 0;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVENESS
   ========================================================= */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .feature-layout {
        grid-template-columns: 1fr;
    }

    .guests-grid {
        grid-template-columns: 1fr;
    }

    .team-member-card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .nav-cta {
        font-size: 1.2rem !important;
        padding: 15px 30px !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .flow-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .flow-container::before {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-top: 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead-text,
    .center-text-large {
        font-size: 1rem;
    }

    body {
        font-size: 0.95rem;
    }

    .hero-buttons,
    .btn-group {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .team-member-card {
        width: calc(50% - 15px);
    }

    .partner-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .lead-text,
    .center-text-large {
        font-size: 0.95rem;
    }

    .nav-cta {
        padding: 12px 24px !important;
        font-size: 1rem !important;
    }

    .team-member-card {
        width: 100%;
        aspect-ratio: 1/1;
        /* Square for mobile team cards */
    }
}