/* ===================================
   CSS Reset & Base Styles
   =================================== */

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

:root {
    --bg-dark: #050505;
    --bg-darker: #101213;
    --bg-hover: #33333f;
    --text-white: #ffffff;
    --text-light: #c6c6c6;
    --text-gray: #9d9d9d;
    --border-color: #c6c6c6;
    --accent-green: #acff6c;
    --transition: 0.3s ease;
}

/* Screen Reader Only - Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Container
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===================================
   Navigation Bar
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(5, 5, 5, 0);
}

.navbar.scrolled {
    background: rgba(16, 18, 19, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===================================
   Logo
   =================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    height: 30px;
}

@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        height: 24px;
    }
}

/* ===================================
   Navigation Menu
   =================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text-white);
}

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

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   Dropdown Menus
   =================================== */

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-btn i {
    font-size: 0.85rem;
    transition: transform var(--transition);
}

.dropdown:hover .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 1rem;
    background: rgba(16, 18, 19, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu a:hover::before {
    left: 100%;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(5px);
}

/* ===================================
   Navigation Actions
   =================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-signin {
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-signin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-signin:hover::before {
    width: 300px;
    height: 300px;
}

.btn-signin:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ===================================
   Language Switcher
   =================================== */

.language-switcher .language-btn {
    padding: 0.5rem;
    font-size: 1.5rem;
}

.language-menu {
    right: 0;
    left: auto;
    transform: none;
    min-width: 140px;
}

/* ===================================
   Mobile Menu Toggle
   =================================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 24px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* ===================================
   Mobile Menu Styles
   =================================== */

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        color: var(--text-white);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        width: calc(100% - 1rem);
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }

    .btn-signin {
        width: 100%;
        text-align: center;
    }

    .language-switcher {
        width: 100%;
    }

    .language-menu {
        position: static;
        margin-top: 0.5rem;
        margin-left: 1rem;
        width: calc(100% - 1rem);
    }
}

/* ===================================
   Hero Section with Slider
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #ffffff;
}


.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-0 {
    background: 
        linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.6) 50%, 
            rgba(0, 0, 0, 0.8) 100%
        ), /* dark overlay */
        url('https://speedpresta.com/assets/images/hero/wariflow.webp'); /* background image */
    background-size: cover;
    background-position: center;
}


.slide-1 {
    background: 
    linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    ), /* dark overlay */
    url('https://speedpresta.com/assets/images/hero/virtuax-studio.webp'); /* background image */
background-size: cover;
background-position: center;
}

.slide-2 {
    background: 
    linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    ), /* dark overlay */
    url('https://speedpresta.com/assets/images/hero/mimicx-ai.webp'); /* background image */
background-size: cover;
background-position: center;
}

.slide-3 {
    background: 
    linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    ), /* dark overlay */
    url('https://speedpresta.com/assets/images/hero/products.webp'); /* background image */
background-size: cover;
background-position: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 950px;
    animation: fadeInSlide 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

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

.hero-content small {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -3px;
    line-height: 1;
    color: white;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #aeaeae;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.95);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.slider-dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: #ffffff;
    width: 60px;
}

/* Responsive Styles for Hero */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
        letter-spacing: -2px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content small {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.7rem;
    }
    
    .slider-controls {
        bottom: 40px;
        gap: 12px;
    }
    
    .slider-dot {
        width: 30px;
    }
    
    .slider-dot.active {
        width: 45px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* ===================================
   News Section
   =================================== */

#news {
    background: #fafafa;
    padding: 4rem 4rem;
}

#news .container {
    max-width: 1400px;
    margin: 0 auto;
}

#news h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-weight: 300;
    letter-spacing: -2px;
}

.section-label {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #52525b;
    font-weight: 500;
    margin-bottom: 6rem;
}

.section-divider {
    width: 60px;
    /*height: 1px;*/
    background: #0a0a0a;
    margin: 4rem auto;
}

/* News Layout */
.news-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2px;
    background: #e4e4e7;
    min-height: 600px;
}

/* Featured Article */
.news-featured {
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(10, 10, 10, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.news-featured::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0a0a0a, #666);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-featured:hover::before {
    opacity: 1;
}

.news-featured:hover::after {
    transform: scaleX(1);
}

.news-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-featured-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e4e4e7;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-featured-image::after, .news-small-image::after{
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.95));
    transition: opacity 0.5s ease;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-featured-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0a0a0a;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

.news-featured-content p:last-child {
    color: #52525b;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1rem;
}

/* News Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 100%;
}

.news-small {
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.news-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-small:hover::after {
    transform: scaleX(1);
}

.news-small:hover {
    background: #f9f9f9;
}

.news-small-image {
    width: 200px;
    min-height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e4e4e7;
}

.news-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-small:hover .news-small-image img {
    transform: scale(1.05);
}

.news-small-image .placeholder-text {
    font-size: 2.5rem;
    font-weight: 300;
    color: #0a0a0a;
    letter-spacing: -1px;
}

.news-small-content {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000000eb;
}

.news-small-content h4 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.4;
    margin: 0;
}

.news-date {
    color: #9999a1;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Explore More Button */
.news-footer {
    margin-top: 4rem;
    text-align: center;
}

.explore-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3.5rem;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #0a0a0a;
    position: relative;
    overflow: hidden;
}

.explore-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-more:hover::before {
    width: 400px;
    height: 400px;
}

.explore-more:hover {
    background: transparent;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.explore-more svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-more:hover svg {
    transform: translateX(5px);
}

/* News Section Responsive */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .news-featured-image {
        height: 350px;
    }
    
    .news-sidebar {
        height: auto;
    }
    
    .news-small {
        flex-direction: row;
        min-height: 180px;
    }
    
    .news-small-image {
        width: 200px;
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    #news {
        padding: 4rem 2rem;
    }
    
    #news h2 {
        font-size: 2.5rem;
    }
    
    .section-label {
        margin-bottom: 4rem;
    }
    
    .news-featured-content {
        padding: 2rem;
    }
    
    .news-featured-content h3 {
        font-size: 1.5rem;
    }
    
    .news-small-content {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    #news {
        padding: 4rem 1rem;
    }
    
    .news-layout {
        gap: 1px;
    }
    
    .news-featured-image {
        height: 250px;
    }
    
    .news-featured-content {
        padding: 1.5rem;
    }
    
    .news-featured-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .news-featured-content p:last-child {
        font-size: 0.9rem;
    }
    
    .news-small {
        flex-direction: column;
        min-height: auto;
    }
    
    .news-small-image {
        width: 100%;
        min-height: 200px;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid #e4e4e7;
    }
    
    .news-small-content {
        padding: 1.5rem;
    }
    
    .news-small-content h4 {
        font-size: 1rem;
    }
    
    .explore-more {
        padding: 1rem 2rem;
        font-size: 0.7rem;
    }
}

/* ===================================
   Products Section
   =================================== */

#products {
    background: #ffffff;
    padding: 6rem 0rem 0.1rem;
}

#products .container {
    max-width: 1400px;
    margin: 0 auto;
}

#products h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-weight: 300;
    letter-spacing: -2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e4e4e7;
}

.product-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0a0a0a, transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-icon {
    font-size: 3.5rem;
    color: #0a0a0a;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-icon {
    transform: translateY(-5px);
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: #0a0a0a;
}

.product-card p {
    color: #52525b;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Products Section Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #products {
        padding: 4rem 2rem;
    }
    
    #products h2 {
        font-size: 2.5rem;
    }
    
    .product-card {
        padding: 3rem 2rem;
        min-height: 320px;
    }
    
    .product-icon {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    #products {
        padding: 4rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .product-card {
        padding: 2.5rem 2rem;
        min-height: 280px;
    }
    
    .product-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Hiring/Careers Section
   =================================== */

#careers {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

#careers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

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

#careers .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.careers-text {
    padding-right: 2rem;
}

.careers-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a1a1aa;
    font-weight: 500;
    margin-bottom: 2rem;
}

.careers-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -3px;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1;
}

.careers-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a1a1aa;
    margin-bottom: 3rem;
    font-weight: 400;
}

.careers-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    border: 2px solid #ffffff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}

.careers-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.careers-image::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, transparent 100%);*/
    z-index: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers-image:hover::before {
    opacity: 0;
}

.careers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.careers-image:hover img {
    transform: scale(1.05);
}

/* Careers Section Responsive */
@media (max-width: 1024px) {
    #careers {
        padding: 6rem 3rem;
    }

    .careers-content {
        gap: 4rem;
    }

    .careers-title {
        font-size: 3.5rem;
    }

    .careers-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    #careers {
        padding: 5rem 2rem;
    }

    .careers-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .careers-text {
        padding-right: 0;
    }

    .careers-title {
        font-size: 2.5rem;
        letter-spacing: -2px;
    }

    .careers-description {
        font-size: 1rem;
    }

    .careers-image {
        height: 400px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #careers {
        padding: 4rem 1rem;
    }

    .careers-title {
        font-size: 2rem;
    }

    .careers-image {
        height: 300px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.7rem;
    }
}

/* ===================================
   Footer
   =================================== */

#footer {
    background-color: #000;
    padding: 70px 0 0;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr 0.8fr 0.7fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    letter-spacing: 1.5px;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    bottom: -10px;
    background-color: #2d2d2d;
    height: 1px;
    width: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 58px;
    height: 58px;
}

.footer-logo-text {
    height: 40px;
}

.footer-description {
    color: #bbbbbb;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.newsletter-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    padding: 0.5rem 0;
}

.newsletter-input::placeholder {
    color: rgba(187, 187, 187, 0.7);
}

.newsletter-submit {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    align-items: center;
}

.newsletter-submit:hover {
    transform: translateX(5px) scale(1.1);
    color: #ffffff;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: white;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: #bbbbbb;
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 12px;
}

.footer-col ul li a:hover::before {
    width: 6px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(45, 45, 45, 0.8);
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    color: #24262b;
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.subfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #2d2d2d;
    font-size: 0.9rem;
    color: #bbbbbb;
}

.subfooter-left{
    display: block;
}

.subfooter-right{
    display: flex;
}
.subfooter-left,
.subfooter-right {
    align-items: center;
    gap: 1.5rem;
}

.subfooter a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.subfooter a:hover {
    color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .subfooter {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .subfooter-left,
    .subfooter-right {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 574px) {
    #footer {
        padding: 50px 0 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }
}

/* ================================
   MORE FROM SPEEDPRESTA CAROUSEL
   ================================ */

   .platforms-carousel-section {
    padding: 2rem 0 0;
    background: #fafafa;
}

.platforms-carousel-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-align: left;
}

.platforms-carousel-section .section-label {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #71717a;
    margin-bottom: 4rem;
}

.platforms-carousel .owl-stage {
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.platforms-carousel .platform-item {
    width: 340px;
    height: 480px;
    display: flex;
    align-items: flex-end;
    background: #343434 no-repeat center center / cover;
    border-radius: 0;
    border: 1px solid #e4e4e7;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin: 0 10px;
}

.platforms-carousel .platform-item::after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.95));
    transition: opacity 0.5s ease;
}

.platforms-carousel .platform-item:hover::after {
    opacity: 0.95;
}

.platforms-carousel .platform-item.active {
    width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.platforms-carousel .platform-desc {
    padding: 0 2.5rem 2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateY(calc(100% - 80px));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.platforms-carousel .platform-item.active .platform-desc {
    transform: none;
}

.platforms-carousel .platform-desc h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.platforms-carousel .platform-desc p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #d4d4d8;
}

.platforms-carousel .platform-item.active .platform-desc p {
    opacity: 1;
    transform: translateY(0);
}

.platforms-carousel .platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.platforms-carousel .platform-item.active .platform-link {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease 0.2s;
}

.platforms-carousel .platform-link:hover {
    background: #0a0a0a;
    color: #ffffff;
    transform: translateY(-2px);
}

.platforms-carousel .platform-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.platforms-carousel .platform-link:hover i {
    transform: translateX(5px);
}

/* Owl Carousel Custom Styling */
.platforms-carousel.owl-theme .owl-dots {
    margin-top: 3rem;
    text-align: center;
}

.platforms-carousel.owl-theme .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.platforms-carousel.owl-theme .owl-dot span {
    width: 40px;
    height: 2px;
    background: #d4d4d8;
    display: block;
    transition: all 0.3s ease;
    border-radius: 0;
}

.platforms-carousel.owl-theme .owl-dot:hover span,
.platforms-carousel.owl-theme .owl-dot.active span {
    background: #0a0a0a;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .platforms-carousel .platform-item {
        width: 300px;
        height: 420px;
    }
    
    .platforms-carousel .platform-item.active {
        width: 460px;
    }
}

@media (max-width: 992px) {
    .platforms-carousel-section h2 {
        font-size: 2.5rem;
    }
    
    .platforms-carousel .platform-item {
        width: 280px;
        height: 400px;
    }
    
    .platforms-carousel .platform-item.active {
        width: 400px;
    }
    
    .platforms-carousel .platform-desc {
        padding: 0 2rem 1.5rem;
        transform: translateY(calc(100% - 70px));
    }
}

@media (max-width: 768px) {
    .platforms-carousel-section {
        padding: 4rem 0;
    }
    
    .platforms-carousel-section h2 {
        font-size: 2rem;
    }
    
    .platforms-carousel .platform-item {
        width: 260px;
        height: 380px;
        margin: 0 8px;
    }
    
    .platforms-carousel .platform-item.active {
        width: 340px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }
    
    .platforms-carousel .platform-desc {
        padding: 0 1.5rem 1.5rem;
        transform: translateY(calc(100% - 65px));
    }
    
    .platforms-carousel .platform-desc h3 {
        font-size: 1.5rem;
    }
    
    .platforms-carousel .platform-desc p {
        font-size: 0.9rem;
    }
    
    .platforms-carousel .platform-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .platforms-carousel .platform-item {
        width: 220px;
        height: 340px;
    }
    
    .platforms-carousel .platform-item.active {
        width: 280px;
    }
    
    .platforms-carousel .platform-desc {
        transform: translateY(calc(100% - 60px));
    }
}

/* ================================
   OUR PLATFORMS SHOWCASE SECTION
   ================================ */

   .our-platforms-section {
    padding: 4rem 0;
    background: #fafafa;
}

.platforms-header {
    margin-bottom: 4rem;
}

.platforms-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.platforms-header-content h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
    letter-spacing: -2px;
    line-height: 1;
}

.platforms-header-content h2 span {
    display: block;
    font-weight: 300;
    margin-top: 0.5rem;
}

.explore-platforms-btn {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    width: 140px;
    height: 48px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.explore-platforms-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.platforms-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.showcase-card {
    position: relative;
    height: 480px;
    /*border-radius: 16px;*/
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #e4e4e7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    inset: 0;
    /*background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #0a0a0a;
}

.showcase-card:hover::before {
    opacity: 0.9;
}

.showcase-card:hover .card-overlay {
    opacity: 1;
}

.card-badge {
    display: none;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 3;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .card-content {
    transform: translateY(-10px);
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.card-content p {
    font-size: 1rem;
    color: #d4d4d8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .platforms-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .showcase-card {
        height: 420px;
    }
}

@media (max-width: 992px) {
    .our-platforms-section {
        padding: 4rem 0;
    }
    
    .platforms-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .platforms-header-content h2 {
        font-size: 3rem;
    }
    
    .platforms-showcase {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
    
    .showcase-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .platforms-header-content h2 {
        font-size: 2.5rem;
    }
    
    .explore-platforms-btn {
        width: 130px;
        height: 44px;
        font-size: 0.7rem;
    }
    
    .platforms-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .showcase-card {
        height: 380px;
    }
    
    .card-badge {
        top: 1rem;
        left: 1rem;
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .platforms-header-content h2 {
        font-size: 2rem;
    }
    
    .showcase-card {
        height: 340px;
    }
}


.news-header-section{
    display: flex;
    margin: 10px 0;
    justify-content: space-between;
}