<<<<<<< HEAD
html{scroll-behavior:smooth;scroll-padding-top:80px}
/*FONTS (imported in HTML head)*/

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*NAVBAR*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 150px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a86b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

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

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

.nav-btn {
    padding: 10px 24px;
    background: #00a86b;
    color: #fff;
    border: 2px solid #00a86b;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.nav-btn:hover {
    background: transparent;
    color: #00a86b;
    transform: translateY(-1px);
}

/* Language Toggle */
.nav-language {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.language-switch {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-switch-btn {
    position: relative;
    padding: 6px 14px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    min-width: 40px;
}

.lang-switch-btn.active {
    color: #fff;
}

.switch-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: #00a86b;
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*NAVBAR RESPONSIVE*/
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        padding: 24px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 14px 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-language {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.95);
        padding: 6px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        margin-left: 0;
    }

    .hamburger {
        display: flex;
    }
}

/*HERO SECTION*/
.hero {
    position: relative;
    color: white;
    padding: 160px 20px 100px;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    width: 475px;
    height: auto;
    display: block;
    margin-bottom: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero h2 {
    font-size: 1.95rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero p {
    font-size: 1.56rem;
    max-width: 900px;
    margin: 0 auto 40px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    text-align: center;
}

.hero p:last-of-type {
    font-size: 1.43rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: inherit;
}

.btn:hover {
    background: white;
    color: #00a86b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/*ABOUT SECTION*/
.about {
    padding: 60px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 168, 107, 0.2);
    color: #00a86b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.read-more-btn:hover {
    background: rgba(0, 168, 107, 0.3);
}

/*WHY CHOOSE US*/
.why-choose {
    background: linear-gradient(to bottom, #d4f4dd 0%, #b8f5cd 100%);
    padding: 60px 20px;
}

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

.why-choose h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #00a86b;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card-container {
    perspective: 1000px;
    height: 300px;
}

.feature-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.feature-card-container:hover .feature-card {
    transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card-front {
    z-index: 2;
}

.feature-card-back {
    transform: rotateY(180deg);
    background: white;
}

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

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-card-front h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #333;
}

.feature-card-back p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.testimonial {
    font-style: italic;
    color: #555;
    padding: 20px;
    border-left: 3px solid #00a86b;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 30px;
}

/*SOLUTIONS*/
.solutions {
    background: linear-gradient(to bottom, #b8f5cd 0%, #d4f4dd 100%);
    padding: 60px 20px;
    text-align: center;
}

.solutions h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #00a86b;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card-container:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}

.solution-card-container {
    height: 250px;
    perspective: 1000px;
}

.solution-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.solution-card-container:hover .solution-card {
    transform: rotateY(180deg);
}

.solution-card-front,
.solution-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solution-card-front {
    background: white;
}

.solution-card-back {
    background: #00a86b;
    color: white;
    transform: rotateY(180deg);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: #00a86b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
}

.solution-icon svg {
    width: 40px;
    height: 40px;
}

.solution-card-front h3 {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin: 0;
}

.solution-card-back p {
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #00a86b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.explore-btn:hover {
    background: #00925d;
    transform: translateY(-2px);
}

/*INTERACTIVE MEDIA*/
.interactive-media {
    background: linear-gradient(to bottom, #d4f4dd 0%, #00a86b 50%);
    padding: 60px 20px;
    text-align: center;
}

.interactive-media h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #00a86b;
}

.media-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.media-visual {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.media-visual li {
    margin-bottom: 8px;
    color: #333;
}

.media-visual li::before {
    content: "• ";
    color: #00a86b;
    font-weight: bold;
    margin-right: 5px;
}

.video-container {
    width: 100%;
    height: 300px;
    background: #00a86b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border-radius: 8px;
    margin-bottom: 20px;
}

.interaction-note {
    font-style: italic;
    color: #666;
    padding: 15px;
    border-left: 3px solid #00a86b;
    background: #f9f9f9;
    margin: 20px 0;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    color: #00a86b;
    border: 2px solid #00a86b;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.secondary-btn:hover {
    background: #00a86b;
    color: white;
}

/*FEATURED VIDEO*/
.featured-video {
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.featured-video h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.featured-video h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-video-element {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #00a86b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.video-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.video-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video-wrapper:hover .video-controls,
.video-controls.show {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.control-btn:hover {
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-filled {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

/*INNOVATION / CAROUSEL*/
.innovation {
    background: linear-gradient(to bottom, #d4f4dd 0%, #b8f5cd 100%);
    padding: 60px 20px;
    text-align: center;
}

.innovation h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: #00a86b;
    font-style: italic;
}

.innovation p {
    margin-bottom: 40px;
    color: #333;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-container {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-icon {
    width: 100px;
    height: 100px;
    background: #4db88e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-icon.dark {
    background: #1a5c4a;
}

.carousel-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.carousel-slide h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.carousel-slide p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 600px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4db88e;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: #00a86b;
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #4db88e;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: #00a86b;
}

/*PLAYLAB*/
.playlab {
    background: linear-gradient(to bottom, #b8f5cd 0%, #d4f4dd 100%);
    padding: 60px 20px;
    text-align: center;
}

.playlab h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #00a86b;
}

.playlab-visual {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.playlab-visual p {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.playlab-visual ul {
    list-style: none;
    padding-left: 0;
}

.playlab-visual li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.playlab-visual li::before {
    content: "\2022";
    color: #00a86b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.playlab-content {
    background: #00a86b;
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.playlab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.playlab-content ul {
    list-style: none;
    padding-left: 0;
}

.playlab-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.playlab-content li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.playlab-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-playlab-primary {
    padding: 15px 35px;
    font-size: 1rem;
    background: #00a86b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
    font-family: inherit;
}

.btn-playlab-primary:hover {
    background: #00925d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
}

.btn-playlab-primary svg {
    width: 24px;
    height: 24px;
}

.btn-playlab-secondary {
    padding: 15px 35px;
    font-size: 1rem;
    background: white;
    color: #00a86b;
    border: 2px solid #00a86b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-playlab-secondary:hover {
    background: #00a86b;
    color: white;
    transform: translateY(-2px);
}

/*PARTNERS*/
.partners {
    background: linear-gradient(to bottom, #d4f4dd 0%, #b8f5cd 100%);
    padding: 60px 20px;
    text-align: center;
}

.partners h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #00a86b;
}

.partners-description {
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.partners-carousel {
    display: flex;
    gap: 60px;
    animation: scroll-partners 20s linear infinite;
    width: fit-content;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 250px;
    height: 120px;
}

.partner-slide:hover {
    transform: scale(1.05);
}

.partner-slide img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/*METRICS SECTION*/
.metrics-section {
    background: linear-gradient(to bottom, #b8f5cd 0%, #d4f4dd 50%, #d4f4dd 100%);
    padding: 70px 20px 80px;
    text-align: center;
}

.metrics-tagline {
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 40px 24px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 168, 107, 0.15);
}

.metric-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #00a86b;
    line-height: 1;
    display: inline;
    letter-spacing: 2px;
}

.metric-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #00a86b;
    vertical-align: super;
    margin-left: 2px;
    line-height: 1;
}

.metric-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 16px 0 8px;
    line-height: 1.4;
}

.metric-desc {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-number {
        font-size: 3.2rem;
    }

    .metric-plus {
        font-size: 2rem;
    }
}

/*CTA SECTION*/
.cta-section {
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    min-width: 200px;
    justify-content: center;
    font-family: inherit;
}

.cta-btn svg {
    width: 22px;
    height: 22px;
}

.cta-btn-primary {
    background: white;
    color: #00a86b;
    border: 2px solid white;
}

.cta-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #00a86b;
    transform: translateY(-2px);
}

.cta-btn-tertiary {
    background: white;
    color: #00a86b;
    border: 2px solid white;
}

.cta-btn-tertiary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/*FOOTER NAV*/
.footer-nav {
    background: #000000;
    color: white;
    padding: 80px 60px;
}

.footer-nav .container {
    max-width: 1400px;
}

.footer-nav-logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    width: 400px;
    height: auto;
}

.footer-nav-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-connect {
    font-size: 1.2rem;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: block;
    transition: transform 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
}

.footer-social-icons img {
    width: 35px;
    height: 35px;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 100px;
    margin-bottom: 40px;
}

.footer-nav-column h3 {
    font-size: 1.32rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #a8e6cf;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.14rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-nav-double {
    display: contents;  /* makes its children participate in the parent grid */
}

.footer-nav-subcolumn {
    min-width: 0;
}

.footer-nav-subcolumn h3 {
    font-size: 1.32rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #a8e6cf;
}

.downloads-subtitle {
    font-size: 1.08rem;
    font-weight: 500;
    margin: 20px 0 10px 0;
    color: rgba(255, 255, 255, 0.7);
}

/*ECOSYSTEM*/
.ecosystem {
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    padding: 60px 20px;
}

.ecosystem-card {
    background: transparent;
    border-radius: 0;
    padding: 50px 40px;
    text-align: left;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: none;
}

.ecosystem-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    display: block;
}

.ecosystem-card h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: white;
}

.ecosystem-card > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: white;
    opacity: 0.95;
    line-height: 1.5;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 60px;
    margin-bottom: 35px;
}

.ecosystem-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ecosystem-links a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    padding: 0;
}

.ecosystem-links a:hover {
    opacity: 0.8;
}

.ecosystem-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ecosystem-btn-dark {
    padding: 15px 35px;
    font-size: 1.15rem;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-family: inherit;
}

.ecosystem-btn-dark:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.ecosystem-btn-light {
    padding: 15px 35px;
    font-size: 1.15rem;
    background: white;
    color: #00a86b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-family: inherit;
}

.ecosystem-btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

/*FOOTER*/
.footer {
    background: #000000;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-top {
    margin: 0;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/*NEWSLETTER POPUP*/
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.newsletter-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    display: flex;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.4s ease-out;
}

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

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.popup-image {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.popup-image img {
    width: 100%;
    max-width: 250px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.popup-form {
    flex: 1;
    padding: 60px 50px;
    overflow-y: auto;
    position: relative;
}

.popup-form::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url('Media/VR.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.popup-header,
.popup-description,
.newsletter-form {
    position: relative;
    z-index: 1;
}

.popup-header {
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin: 0;
    font-weight: 600;
}

.popup-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00a86b;
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
}

.newsletter-form input::placeholder {
    color: #999;
}

.recaptcha-placeholder {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.recaptcha-links {
    margin-top: 5px;
}

.recaptcha-links a {
    color: #00a86b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recaptcha-links a:hover {
    color: #00925d;
    text-decoration: underline;
}

.popup-submit-btn {
    padding: 18px 40px;
    background: #00a86b;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
}

.popup-submit-btn:hover {
    background: #00925d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 120px 20px 60px;
    }

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

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero p:last-of-type {
        font-size: 1rem;
    }

    .logo {
        width: 282px;
    }

    .features-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }

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

    .solution-card-container {
        height: 230px;
    }

    .feature-card-container {
        height: 280px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .carousel-wrapper {
        gap: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-slide {
        padding: 40px 20px;
    }

    .carousel-slide h3 {
        font-size: 1.4rem;
    }

    .carousel-slide p {
        font-size: 1rem;
    }

    .carousel-icon {
        width: 80px;
        height: 80px;
    }

    .carousel-icon svg {
        width: 40px;
        height: 40px;
    }

    .playlab-content h3 {
        font-size: 1.4rem;
    }

    .playlab-buttons {
        flex-direction: column;
    }

    .btn-playlab-primary,
    .btn-playlab-secondary {
        width: 100%;
    }

    .partner-slide {
        min-width: 200px;
        height: 100px;
    }

    .partner-slide img {
        max-height: 60px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }

    .footer-nav {
        padding: 40px 20px;
    }

    .footer-nav-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav-double {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ecosystem-card {
        padding: 40px 25px;
    }

    .ecosystem-card h2 {
        font-size: 1.5rem;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ecosystem-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ecosystem-btn-dark,
    .ecosystem-btn-light {
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .popup-content {
        flex-direction: column;
        max-width: 95%;
        max-height: 95vh;
    }

    .popup-image {
        flex: 0 0 auto;
        padding: 40px 30px;
    }

    .popup-image img {
        max-width: 150px;
    }

    .popup-form {
        padding: 30px 25px;
    }

    .popup-form::before {
        width: 90%;
        height: 70%;
    }

    .popup-header h2 {
        font-size: 2rem;
    }

    .popup-description {
        font-size: 0.95rem;
    }

    .newsletter-form input {
        padding: 12px 15px;
    }
}

/* ══════════════════════════════════════
   AUTH POPUP (Signup / Login)
   ══════════════════════════════════════ */

/* Navbar Auth Button */
.nav-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    margin-left: 12px;
}

.nav-auth-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-auth-btn:hover {
    background: #00a86b;
    border-color: #00a86b;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
}

/* Auth Popup Overlay */
.auth-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.auth-popup.active {
    display: flex;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Auth Card — Green background */
.auth-card {
    position: relative;
    width: 380px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    background: #00a86b;
    border-radius: 20px;
    padding: 44px 32px 36px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    animation: authSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

@keyframes authSlideUp {
    from {
        transform: translateY(30px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Close Button */
.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.auth-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Logo — white on green */
.auth-logo {
    text-align: center;
    margin-bottom: 20px;
}

.auth-logo img {
    height: 90px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* View Toggle */
.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
}

/* Titles — hidden (design only shows subtitle) */
.auth-title {
    display: none;
}

.auth-subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 22px;
    font-weight: 400;
    line-height: 1.4;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: all 0.25s ease;
    outline: none;
}

.auth-input:focus {
    border-color: #004d33;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.auth-input::placeholder {
    color: #aaa;
}

/* Submit Button — dark/black */
.auth-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.auth-submit-btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Divider — white lines */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.auth-divider span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    font-weight: 400;
}

/* Google Button — white with dark text */
.auth-google-btn {
    width: 100%;
    padding: 13px 24px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-google-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer & Links — white text on green */
.auth-footer {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 22px;
    line-height: 1.6;
}

.auth-footer a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration-color: #fff;
}

.auth-switch {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 14px;
}

.auth-switch a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.auth-switch a:hover {
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* ── Auth Popup Responsive ─────────── */
@media (max-width: 768px) {
    .nav-auth-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        gap: 5px;
        margin-left: 8px;
    }

    .nav-auth-btn svg {
        width: 16px;
        height: 16px;
    }

    .auth-card {
        width: 95vw;
        padding: 36px 22px 28px;
        border-radius: 16px;
    }

    .auth-logo img {
        height: 75px;
    }

    .auth-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-auth-btn span.auth-btn-text {
        display: none;
    }

    .nav-auth-btn {
        padding: 8px;
        border-radius: 50%;
        margin-left: 6px;
    }
}

/* ══════════════════════════════════════
   PAGES DROPDOWN
   ══════════════════════════════════════ */
.pages-dropdown {
    position: relative;
    margin-left: 12px;
}

.pages-dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: #00a86b;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.pages-dd-btn:hover {
    background: #00925d;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
}

.pages-dd-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pages-dropdown.open .pages-dd-btn svg {
    transform: rotate(180deg);
}

.pages-dd-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: rgba(10, 26, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 2000;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.pages-dropdown.open .pages-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pages-dd-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.2s ease;
    text-decoration: none;
}

.pages-dd-menu a:hover {
    background: rgba(0, 168, 107, 0.12);
    color: #fff;
}

.pages-dd-menu a.dd-active {
    color: #00d485;
    background: rgba(0, 168, 107, 0.08);
}

.pages-dd-menu a span {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pages-dropdown {
        display: none;
    }
}

/* ══════════════════════════════════════
   UNIFIED NAVBAR - Constructor Style
   ══════════════════════════════════════ */
.navbar{position:fixed;top:0;width:100%;height:72px;background:#000;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);z-index:1000;border-bottom:1px solid rgba(255,255,255,0.07);transition:all 0.3s ease}
.navbar.scrolled{box-shadow:0 4px 30px rgba(0,0,0,0.5)}
.nav-container{max-width:1320px;margin:0 auto;padding:0 40px;display:flex;justify-content:space-between;align-items:center;height:100%}
.nav-logo a{display:flex;align-items:center;text-decoration:none}
.nav-logo img{height:150px;width:auto;transition:transform 0.3s ease}
.nav-logo img:hover{transform:scale(1.04)}
.nav-menu{display:flex;list-style:none;gap:6px;align-items:center;margin:0;padding:0}
.nav-item{position:relative}
.nav-link{color:rgba(255,255,255,0.7);font-size:0.9rem;font-weight:500;transition:all 0.3s ease;padding:8px 16px;border-radius:8px;display:inline-flex;align-items:center;gap:6px;text-decoration:none;cursor:pointer}
.nav-link:hover{color:#fff;background:rgba(255,255,255,0.06)}
.nav-link svg{transition:transform 0.3s ease;stroke:currentColor;fill:none;stroke-width:2}
.nav-dropdown:hover .nav-link svg{transform:rotate(180deg)}

/* Mega dropdown */
.nav-mega{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);min-width:200px;background:rgba(10,26,18,0.97);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border:1px solid rgba(255,255,255,0.1);border-radius:14px;padding:10px;opacity:0;visibility:hidden;transition:all 0.25s ease;z-index:2000;box-shadow:0 20px 60px rgba(0,0,0,0.5);pointer-events:none}
.nav-dropdown:hover .nav-mega{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);pointer-events:auto}
.nav-mega a{display:block;padding:11px 16px;border-radius:10px;font-size:0.88rem;font-weight:500;color:rgba(255,255,255,0.75);transition:all 0.2s ease;text-decoration:none;white-space:nowrap}
.nav-mega a:hover{background:rgba(0,168,107,0.12);color:#fff}

/* Right side group */
.nav-right-group{display:flex;align-items:center;gap:10px}
.nav-language{display:flex;align-items:center}
.language-switch{position:relative;display:flex;background:rgba(255,255,255,0.08);border-radius:50px;padding:3px;border:1px solid rgba(255,255,255,0.15)}
.lang-switch-btn{position:relative;padding:6px 14px;background:transparent;border:none;color:rgba(255,255,255,0.5);border-radius:50px;cursor:pointer;font-size:0.8rem;font-weight:600;font-family:var(--fm,'Space Mono',monospace);transition:color 0.3s ease;z-index:2;min-width:40px}
.lang-switch-btn.active{color:#fff}
.switch-slider{position:absolute;top:3px;left:3px;width:calc(50% - 3px);height:calc(100% - 6px);background:var(--green,#00a86b);border-radius:50px;transition:transform 0.3s ease;z-index:1}
.nav-auth-btn{display:inline-flex;align-items:center;gap:8px;padding:9px 20px;background:transparent;color:rgba(255,255,255,0.85);border:1.5px solid rgba(255,255,255,0.25);border-radius:50px;font-size:0.82rem;font-weight:600;font-family:inherit;cursor:pointer;transition:all 0.3s ease;white-space:nowrap}
.nav-auth-btn svg{width:18px;height:18px;flex-shrink:0}
.nav-auth-btn:hover{background:var(--green,#00a86b);border-color:var(--green,#00a86b);color:#fff}
.nav-get-started{display:inline-flex;align-items:center;padding:9px 20px;background:var(--green,#00a86b);color:#fff;border:1.5px solid var(--green,#00a86b);border-radius:50px;font-size:0.82rem;font-weight:600;font-family:inherit;cursor:pointer;transition:all 0.3s ease;white-space:nowrap;text-decoration:none}
.nav-get-started:hover{background:transparent;color:var(--green,#00a86b)}
.hamburger{display:none;flex-direction:column;cursor:pointer;gap:5px;padding:8px}
.hamburger .bar{width:24px;height:2px;background:#fff;transition:all 0.3s ease;border-radius:2px}

/* Mobile navbar */
@media(max-width:768px){
.nav-container{padding:0 20px}
.nav-menu{position:fixed;left:-100%;top:72px;flex-direction:column;background:rgba(0,0,0,0.98);backdrop-filter:blur(20px);width:100%;height:calc(100vh - 72px);text-align:left;transition:left 0.3s ease;gap:0;padding:24px 20px;overflow-y:auto;z-index:999}
.nav-menu.active{left:0}
.nav-item{width:100%;border-bottom:1px solid rgba(255,255,255,0.06)}
.nav-link{font-size:1.05rem;padding:16px 0;width:100%;border-radius:0}
.nav-mega{position:static;transform:none;opacity:1;visibility:visible;pointer-events:auto;background:transparent;border:none;box-shadow:none;backdrop-filter:none;-webkit-backdrop-filter:none;padding:0 0 8px 16px;min-width:auto;display:none}
.nav-dropdown.mob-open .nav-mega{display:block}
.nav-mega a{padding:10px 0;font-size:0.95rem;border-radius:0}
.nav-right-group{display:none}
.hamburger{display:flex}
}

/* ══════════════════════════════════════
   UNIFIED FOOTER
   ══════════════════════════════════════ */
.footer-nav{background:#000;color:#fff;padding:80px 0 40px;border-top:1px solid rgba(255,255,255,0.07)}
.footer-nav-logo-section{text-align:center;margin-bottom:30px}
.footer-logo{height:100px;width:auto;opacity:0.9}
.footer-nav-top{display:flex;align-items:center;justify-content:center;gap:22px;margin-bottom:40px;padding-bottom:30px;border-bottom:1px solid rgba(0,168,107,0.2)}
.footer-connect{font-size:1.125rem;color:rgba(255,255,255,0.6);white-space:nowrap}
.footer-social-icons{display:flex;gap:18px}
.footer-social-icons a{width:45px;height:45px;display:flex;align-items:center;justify-content:center;border-radius:8px;transition:all 0.3s ease}
.footer-social-icons a:hover{background:rgba(0,168,107,0.15);transform:translateY(-2px)}
.footer-social-icons img{width:30px;height:30px;filter:brightness(0) invert(1);opacity:0.7;transition:opacity 0.3s ease}
.footer-social-icons a:hover img{opacity:1}
.footer-nav-grid{display:grid;grid-template-columns:1fr 1fr 1fr 1.5fr;gap:40px}
.footer-nav-column h3{font-family:var(--fb,'DM Sans',sans-serif);font-size:1.15rem;font-weight:600;color:var(--green-light,#00d485);margin-bottom:18px;letter-spacing:0.5px}
.footer-nav-column ul{list-style:none;padding:0;margin:0}
.footer-nav-column li{margin-bottom:10px}
.footer-nav-column a{color:rgba(255,255,255,0.7);font-size:1.1rem;transition:color 0.2s ease;text-decoration:none}
.footer-nav-column a:hover{color:#fff}
.footer-nav-double{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.footer-nav-subcolumn h3{font-family:var(--fb,'DM Sans',sans-serif);font-size:1.15rem;font-weight:600;color:var(--green-light,#00d485);margin-bottom:18px;letter-spacing:0.5px}
.footer-nav-subcolumn ul{list-style:none;padding:0;margin:0}
.footer-nav-subcolumn li{margin-bottom:10px}
.footer-nav-subcolumn a{color:rgba(255,255,255,0.7);font-size:1.1rem;transition:color 0.2s ease;text-decoration:none}
.footer-nav-subcolumn a:hover{color:#fff}
.footer{background:#000;color:#fff;padding:20px;text-align:center;border-top:1px solid rgba(255,255,255,0.05)}
.footer-copyright{font-size:1.06rem;opacity:0.5;line-height:1.7}

@media(max-width:1024px){.footer-nav-grid{grid-template-columns:1fr 1fr;gap:30px}}
@media(max-width:768px){.footer-nav-grid{grid-template-columns:1fr}.footer-nav-double{grid-template-columns:1fr}.footer-nav-top{flex-direction:column;gap:12px}}
=======
html{scroll-behavior:smooth;scroll-padding-top:80px}
/*FONTS (imported in HTML head)*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*NAVBAR*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 150px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo img:hover {
    transform: scale(1.04);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a86b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-btn {
    padding: 10px 24px;
    background: #00a86b;
    color: #fff;
    border: 2px solid #00a86b;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.nav-btn:hover {
    background: transparent;
    color: #00a86b;
    transform: translateY(-1px);
}

/* Language Toggle */
.nav-language {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.language-switch {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-switch-btn {
    position: relative;
    padding: 6px 14px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    min-width: 40px;
}

.lang-switch-btn.active {
    color: #fff;
}

.switch-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: #00a86b;
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*NAVBAR RESPONSIVE*/
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        padding: 24px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 14px 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-language {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.95);
        padding: 6px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        margin-left: 0;
    }

    .hamburger {
        display: flex;
    }
}

/*HERO SECTION*/
.hero {
    position: relative;
    color: white;
    padding: 160px 20px 100px;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    width: 475px;
    height: auto;
    display: block;
    margin-bottom: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero h2 {
    font-size: 1.95rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero p {
    font-size: 1.56rem;
    max-width: 900px;
    margin: 0 auto 40px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    text-align: center;
}

.hero p:last-of-type {
    font-size: 1.43rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: inherit;
}

.btn:hover {
    background: white;
    color: #00a86b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/*ABOUT SECTION*/
.about {
    padding: 60px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 168, 107, 0.2);
    color: #00a86b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.read-more-btn:hover {
    background: rgba(0, 168, 107, 0.3);
}

/*WHY CHOOSE US*/
.why-choose {
    background: linear-gradient(to bottom, #d4f4dd 0%, #b8f5cd 100%);
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #00a86b;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card-container {
    perspective: 1000px;
    height: 300px;
}

.feature-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.feature-card-container:hover .feature-card {
    transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card-front {
    z-index: 2;
}

.feature-card-back {
    transform: rotateY(180deg);
    background: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #00a86b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-card-front h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #333;
}

.feature-card-back p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.testimonial {
    font-style: italic;
    color: #555;
    padding: 20px;
    border-left: 3px solid #00a86b;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 30px;
}

/*SOLUTIONS*/
.solutions {
    background: linear-gradient(to bottom, #b8f5cd 0%, #d4f4dd 100%);
    padding: 60px 20px;
    text-align: center;
}

.solutions h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
    color: #00a86b;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card-container:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
}

.solution-card-container {
    height: 250px;
    perspective: 1000px;
}

.solution-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.solution-card-container:hover .solution-card {
    transform: rotateY(180deg);
}

.solution-card-front,
.solution-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solution-card-front {
    background: white;
}

.solution-card-back {
    background: #00a86b;
    color: white;
    transform: rotateY(180deg);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: #00a86b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
}

.solution-icon svg {
    width: 40px;
    height: 40px;
}

.solution-card-front h3 {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin: 0;
}

.solution-card-back p {
    font-size: 1.05rem;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #00a86b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.explore-btn:hover {
    background: #00925d;
    transform: translateY(-2px);
}

/*INTERACTIVE MEDIA*/
.interactive-media {
    background: linear-gradient(to bottom, #d4f4dd 0%, #00a86b 50%);
    padding: 60px 20px;
    text-align: center;
}

.interactive-media h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #00a86b;
}

.media-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.media-visual {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.media-visual li {
    margin-bottom: 8px;
    color: #333;
}

.media-visual li::before {
    content: "• ";
    color: #00a86b;
    font-weight: bold;
    margin-right: 5px;
}

.video-container {
    width: 100%;
    height: 300px;
    background: #00a86b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border-radius: 8px;
    margin-bottom: 20px;
}

.interaction-note {
    font-style: italic;
    color: #666;
    padding: 15px;
    border-left: 3px solid #00a86b;
    background: #f9f9f9;
    margin: 20px 0;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    color: #00a86b;
    border: 2px solid #00a86b;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.secondary-btn:hover {
    background: #00a86b;
    color: white;
}

/*FEATURED VIDEO*/
.featured-video {
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.featured-video h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.featured-video h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-video-element {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #00a86b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.video-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.video-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video-wrapper:hover .video-controls,
.video-controls.show {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.control-btn:hover {
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-filled {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

/*INNOVATION / CAROUSEL*/
.innovation {
    background: linear-gradient(to bottom, #d4f4dd 0%, #b8f5cd 100%);
    padding: 60px 20px;
    text-align: center;
}

.innovation h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: #00a86b;
    font-style: italic;
}

.innovation p {
    margin-bottom: 40px;
    color: #333;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-container {
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-icon {
    width: 100px;
    height: 100px;
    background: #4db88e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-icon.dark {
    background: #1a5c4a;
}

.carousel-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.carousel-slide h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.carousel-slide p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 600px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4db88e;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: #00a86b;
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #4db88e;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: #00a86b;
}

/*PLAYLAB*/
.playlab {
    background: linear-gradient(to bottom, #b8f5cd 0%, #d4f4dd 100%);
    padding: 60px 20px;
    text-align: center;
}

.playlab h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #00a86b;
}

.playlab-visual {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.playlab-visual p {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.playlab-visual ul {
    list-style: none;
    padding-left: 0;
}

.playlab-visual li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.playlab-visual li::before {
    content: "\2022";
    color: #00a86b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.playlab-content {
    background: #00a86b;
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.playlab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.playlab-content ul {
    list-style: none;
    padding-left: 0;
}

.playlab-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.playlab-content li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.playlab-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-playlab-primary {
    padding: 15px 35px;
    font-size: 1rem;
    background: #00a86b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
    font-family: inherit;
}

.btn-playlab-primary:hover {
    background: #00925d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
}

.btn-playlab-primary svg {
    width: 24px;
    height: 24px;
}

.btn-playlab-secondary {
    padding: 15px 35px;
    font-size: 1rem;
    background: white;
    color: #00a86b;
    border: 2px solid #00a86b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-playlab-secondary:hover {
    background: #00a86b;
    color: white;
    transform: translateY(-2px);
}

/*PARTNERS*/
.partners {
    background: linear-gradient(to bottom, #d4f4dd 0%, #b8f5cd 100%);
    padding: 60px 20px;
    text-align: center;
}

.partners h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #00a86b;
}

.partners-description {
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.partners-carousel {
    display: flex;
    gap: 60px;
    animation: scroll-partners 20s linear infinite;
    width: fit-content;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 250px;
    height: 120px;
}

.partner-slide:hover {
    transform: scale(1.05);
}

.partner-slide img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/*METRICS SECTION*/
.metrics-section {
    background: linear-gradient(to bottom, #b8f5cd 0%, #d4f4dd 50%, #d4f4dd 100%);
    padding: 70px 20px 80px;
    text-align: center;
}

.metrics-tagline {
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    border-radius: 12px;
    padding: 40px 24px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 168, 107, 0.15);
}

.metric-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #00a86b;
    line-height: 1;
    display: inline;
    letter-spacing: 2px;
}

.metric-plus {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #00a86b;
    vertical-align: super;
    margin-left: 2px;
    line-height: 1;
}

.metric-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 16px 0 8px;
    line-height: 1.4;
}

.metric-desc {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-number {
        font-size: 3.2rem;
    }

    .metric-plus {
        font-size: 2rem;
    }
}

/*CTA SECTION*/
.cta-section {
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    min-width: 200px;
    justify-content: center;
    font-family: inherit;
}

.cta-btn svg {
    width: 22px;
    height: 22px;
}

.cta-btn-primary {
    background: white;
    color: #00a86b;
    border: 2px solid white;
}

.cta-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #00a86b;
    transform: translateY(-2px);
}

.cta-btn-tertiary {
    background: white;
    color: #00a86b;
    border: 2px solid white;
}

.cta-btn-tertiary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/*FOOTER NAV*/
.footer-nav {
    background: #000000;
    color: white;
    padding: 80px 60px;
}

.footer-nav .container {
    max-width: 1400px;
}

.footer-nav-logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-nav-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-connect {
    font-size: 1.2rem;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: block;
    transition: transform 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
}

.footer-social-icons img {
    width: 35px;
    height: 35px;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    margin-bottom: 40px;
}

.footer-nav-column h3 {
    font-size: 1.32rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #a8e6cf;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.14rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-nav-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.footer-nav-subcolumn {
    min-width: 0;
}

.footer-nav-subcolumn h3 {
    font-size: 1.32rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: #a8e6cf;
}

.downloads-subtitle {
    font-size: 1.08rem;
    font-weight: 500;
    margin: 20px 0 10px 0;
    color: rgba(255, 255, 255, 0.7);
}

/*ECOSYSTEM*/
.ecosystem {
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    padding: 60px 20px;
}

.ecosystem-card {
    background: transparent;
    border-radius: 0;
    padding: 50px 40px;
    text-align: left;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: none;
}

.ecosystem-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    display: block;
}

.ecosystem-card h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: white;
}

.ecosystem-card > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: white;
    opacity: 0.95;
    line-height: 1.5;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 60px;
    margin-bottom: 35px;
}

.ecosystem-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ecosystem-links a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    padding: 0;
}

.ecosystem-links a:hover {
    opacity: 0.8;
}

.ecosystem-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ecosystem-btn-dark {
    padding: 15px 35px;
    font-size: 1.15rem;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-family: inherit;
}

.ecosystem-btn-dark:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.ecosystem-btn-light {
    padding: 15px 35px;
    font-size: 1.15rem;
    background: white;
    color: #00a86b;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-family: inherit;
}

.ecosystem-btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

/*FOOTER*/
.footer {
    background: #000000;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-top {
    margin: 0;
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/*NEWSLETTER POPUP*/
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.newsletter-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    display: flex;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.popup-image {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #00925d 0%, #00a86b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.popup-image img {
    width: 100%;
    max-width: 250px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.popup-form {
    flex: 1;
    padding: 60px 50px;
    overflow-y: auto;
    position: relative;
}

.popup-form::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url('Media/VR.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.popup-header,
.popup-description,
.newsletter-form {
    position: relative;
    z-index: 1;
}

.popup-header {
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin: 0;
    font-weight: 600;
}

.popup-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00a86b;
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
}

.newsletter-form input::placeholder {
    color: #999;
}

.recaptcha-placeholder {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.recaptcha-links {
    margin-top: 5px;
}

.recaptcha-links a {
    color: #00a86b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recaptcha-links a:hover {
    color: #00925d;
    text-decoration: underline;
}

.popup-submit-btn {
    padding: 18px 40px;
    background: #00a86b;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
}

.popup-submit-btn:hover {
    background: #00925d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero p:last-of-type {
        font-size: 1rem;
    }

    .logo {
        width: 282px;
    }

    .features-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-container {
        height: 230px;
    }

    .feature-card-container {
        height: 280px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .carousel-wrapper {
        gap: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-slide {
        padding: 40px 20px;
    }

    .carousel-slide h3 {
        font-size: 1.4rem;
    }

    .carousel-slide p {
        font-size: 1rem;
    }

    .carousel-icon {
        width: 80px;
        height: 80px;
    }

    .carousel-icon svg {
        width: 40px;
        height: 40px;
    }

    .playlab-content h3 {
        font-size: 1.4rem;
    }

    .playlab-buttons {
        flex-direction: column;
    }

    .btn-playlab-primary,
    .btn-playlab-secondary {
        width: 100%;
    }

    .partner-slide {
        min-width: 200px;
        height: 100px;
    }

    .partner-slide img {
        max-height: 60px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }

    .footer-nav {
        padding: 40px 20px;
    }

    .footer-nav-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav-double {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ecosystem-card {
        padding: 40px 25px;
    }

    .ecosystem-card h2 {
        font-size: 1.5rem;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ecosystem-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ecosystem-btn-dark,
    .ecosystem-btn-light {
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .popup-content {
        flex-direction: column;
        max-width: 95%;
        max-height: 95vh;
    }

    .popup-image {
        flex: 0 0 auto;
        padding: 40px 30px;
    }

    .popup-image img {
        max-width: 150px;
    }

    .popup-form {
        padding: 30px 25px;
    }

    .popup-form::before {
        width: 90%;
        height: 70%;
    }

    .popup-header h2 {
        font-size: 2rem;
    }

    .popup-description {
        font-size: 0.95rem;
    }

    .newsletter-form input {
        padding: 12px 15px;
    }
}

/* ══════════════════════════════════════
   AUTH POPUP (Signup / Login)
   ══════════════════════════════════════ */

/* Navbar Auth Button */
.nav-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    margin-left: 12px;
}

.nav-auth-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-auth-btn:hover {
    background: #00a86b;
    border-color: #00a86b;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
}

/* Auth Popup Overlay */
.auth-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.auth-popup.active {
    display: flex;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Auth Card — Green background */
.auth-card {
    position: relative;
    width: 380px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    background: #00a86b;
    border-radius: 20px;
    padding: 44px 32px 36px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    animation: authSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

@keyframes authSlideUp {
    from {
        transform: translateY(30px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Close Button */
.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.auth-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Logo — white on green */
.auth-logo {
    text-align: center;
    margin-bottom: 20px;
}

.auth-logo img {
    height: 90px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* View Toggle */
.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
}

/* Titles — hidden (design only shows subtitle) */
.auth-title {
    display: none;
}

.auth-subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 22px;
    font-weight: 400;
    line-height: 1.4;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: all 0.25s ease;
    outline: none;
}

.auth-input:focus {
    border-color: #004d33;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.auth-input::placeholder {
    color: #aaa;
}

/* Submit Button — dark/black */
.auth-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.auth-submit-btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Divider — white lines */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.auth-divider span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    font-weight: 400;
}

/* Google Button — white with dark text */
.auth-google-btn {
    width: 100%;
    padding: 13px 24px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-google-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer & Links — white text on green */
.auth-footer {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 22px;
    line-height: 1.6;
}

.auth-footer a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration-color: #fff;
}

.auth-switch {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 14px;
}

.auth-switch a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.auth-switch a:hover {
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* ── Auth Popup Responsive ─────────── */
@media (max-width: 768px) {
    .nav-auth-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        gap: 5px;
        margin-left: 8px;
    }

    .nav-auth-btn svg {
        width: 16px;
        height: 16px;
    }

    .auth-card {
        width: 95vw;
        padding: 36px 22px 28px;
        border-radius: 16px;
    }

    .auth-logo img {
        height: 75px;
    }

    .auth-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-auth-btn span.auth-btn-text {
        display: none;
    }

    .nav-auth-btn {
        padding: 8px;
        border-radius: 50%;
        margin-left: 6px;
    }
}

/* ══════════════════════════════════════
   PAGES DROPDOWN
   ══════════════════════════════════════ */
.pages-dropdown {
    position: relative;
    margin-left: 12px;
}

.pages-dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: #00a86b;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.pages-dd-btn:hover {
    background: #00925d;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
}

.pages-dd-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.pages-dropdown.open .pages-dd-btn svg {
    transform: rotate(180deg);
}

.pages-dd-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: rgba(10, 26, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 2000;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.pages-dropdown.open .pages-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pages-dd-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.2s ease;
    text-decoration: none;
}

.pages-dd-menu a:hover {
    background: rgba(0, 168, 107, 0.12);
    color: #fff;
}

.pages-dd-menu a.dd-active {
    color: #00d485;
    background: rgba(0, 168, 107, 0.08);
}

.pages-dd-menu a span {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pages-dropdown {
        display: none;
    }
}
>>>>>>> 3878ec00bd1c39dac5b0cca620d30479deba0550
