:root {
    --color-brand-orange: #F26522;
    --color-brand-black: #000000;
    --color-neon-green: #FFA500;

    --color-bg-dark: #0f0f0f;
    --color-bg-card: rgba(30, 30, 30, 0.6);
    --color-text-main: #ffffff;
    --color-text-muted: #b0b0b0;

    --font-primary: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism */
.glass-nav,
.glass-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-brand-orange);
}

.glass-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.15);
    border-color: var(--color-brand-orange);
}

/* Typography & Titles */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight-text {
    color: var(--color-brand-orange);
}

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

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--color-brand-orange), #d94e10);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-small {
    background: var(--color-brand-orange);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
}

/* Updated Hero for Video/Logo Layout */
.b2b-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center everything */
    padding: 0;
    /* Removing padding to let BG take over, content centered */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-video-sim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: panZoom 20s infinite alternate;
}

@keyframes panZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-bg-overlay {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
}

.hero-main-logo {
    width: 250px;
    max-width: 80vw;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(242, 101, 34, 0.3));
    /* Orange glow */
}

.hero-content h1 {
    font-size: 2.5rem;
    /* Smaller than before because Logo is main */
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-hero:hover {
    background: white;
    color: black;
}

/* Navbar Logo Adjustment */
.glass-nav .logo img {
    height: 50px;
    /* Slightly larger in nav too */
    transition: transform 0.3s;
}

.glass-nav .logo:hover img {
    transform: scale(1.1);
}

/* Benefits Grid */
.benefits-section {
    padding: 5rem 10%;
    background: #141414;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.icon-gradient {
    font-size: 2.5rem;
    color: var(--color-brand-orange);
    margin-bottom: 1rem;
}

/* Process Steps */
.process-section {
    padding: 5rem 10%;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--color-brand-orange);
    color: black;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-connector {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    flex: 1;
    margin-top: 25px;
    display: none;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 10%;
    background: #141414;
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Vision & Footer */
.vision-section {
    padding: 5rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-balloon-small {
    width: 200px;
    animation: float 5s infinite;
}

footer {
    padding: 3rem 10%;
    background: black;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.social-links {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.social-links a {
    color: gray;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-brand-orange);
}

/* Responsive */
@media(max-width: 768px) {
    .b2b-hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-main-logo {
        width: 180px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-outline-hero {
        width: 100%;
    }

    .nav-links {
        display: none;
    }
}

/* Improved Nav Logo */
.nav-logo-img {
    height: 60px;
    /* Bigger as requested */
    filter: drop-shadow(0 0 8px rgba(242, 101, 34, 0.6));
    /* Stronger effect to "note mas" */
    transition: transform 0.3s, filter 0.3s;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(242, 101, 34, 0.8));
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--color-brand-orange);
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px rgba(242, 101, 34, 0.2);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-brand-orange);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--color-brand-orange);
    font-weight: 600;
}

.form-group input {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: white;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--color-brand-orange);
    box-shadow: 0 0 10px rgba(242, 101, 34, 0.2);
}