:root {
    --primary-orange: #FF4D00;
    --dark-bg: #0a0a05;
    --near-black: #21210A;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --card-green: #e6fffa;
    --card-blue: #ebf8ff;
    --card-purple: #faf5ff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #21210A;
}

header.sticky .nav-item {
    color: rgba(33, 33, 10, 0.75);
}

header.sticky .nav-item:hover,
header.sticky .nav-item:focus {
    color: #21210A;
}

header.sticky .header__menu-toggle {
    color: #21210A;
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
}

@media (min-width: 768px) {
    .header__container {
        padding: 0 2rem;
    }
}

.header__inner,
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 72px;
    position: relative;
}

.header__brand {
    flex-shrink: 0;
}

.header__logo-link,
.nav_logo-link {
    display: inline-flex;
    align-items: center;
}

.header__logo-image {
    height: 24px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .header__logo-image {
        height: 32px;
    }
}

.nav-logo--icon {
    display: none;
    height: 28px;
    width: auto;
}

.nav-logo--light {
    display: block;
}

.header.sticky .nav-logo--light {
    display: none;
}

.header.sticky .nav-logo--dark {
    display: block;
}

.header.sticky .header__menu-toggle {
    color: #21210A;
}

/* Protect logos from copying */
.nav_logo-link img,
.footer_logo_link img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

.footer_logo_link img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .footer_logo_link img {
        height: 92px;
    }
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button_inner-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
}

.button-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.button.black {
    background: #21210A;
    color: #ffffff;
}

.button.black:hover,
.button.black:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.12);
    outline: none;
}

.button-ripple {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.button-ripple_span {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.button.black:hover .button-ripple_span,
.button.black:focus-visible .button-ripple_span {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.button--waitlist {
    min-width: 0;
    white-space: nowrap;
}

.button--waitlist .button-text {
    letter-spacing: 0.18em;
}

.button--waitlist:hover,
.button--waitlist:focus-visible {
    color: #ffff05;
}

.button-picto {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.85rem 0.85rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(33, 33, 10, 0.85);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
    overflow: hidden;
}

.button-picto_circle-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
}

.button-picto_space {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0.45;
}

.button-picto_circle {
    position: relative;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: #ffff05;
    color: #21210A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.button-picto .button_inner-wrap {
    z-index: 2;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.button-picto .button-text {
    font-size: 0.82rem;
}

.button-picto_text {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.button-picto .button-ripple_span {
    background: rgba(255, 255, 255, 0.22);
}

.button-picto:hover,
.button-picto:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.22);
    outline: none;
}

.button-picto:hover .button-picto_circle,
.button-picto:focus-visible .button-picto_circle {
    transform: scale(1.08);
}

.button-picto--waitlist {
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.95), rgba(255, 77, 0, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-picto--waitlist .button-picto_circle {
    background: #21210A;
    color: #ffff05;
}

.button-picto--waitlist .button_inner-wrap {
    color: #121206;
    mix-blend-mode: screen;
}

.button-picto--waitlist .button-text {
    color: #0b0b05;
    font-weight: 700;
}

.button-picto--waitlist:hover,
.button-picto--waitlist:focus-visible {
    color: #ffffff;
}

.button-picto--waitlist:hover .button-text,
.button-picto--waitlist:focus-visible .button-text {
    color: #ffffff;
}

.button-picto--waitlist .button-ripple_span {
    background: rgba(255, 255, 255, 0.28);
}

.shopify-buy__btn {
    margin-top: 0.85rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #FF4D00, #FF9440);
    color: #21210A;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.shopify-buy__btn:hover,
.shopify-buy__btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 77, 0, 0.35);
    outline: none;
}

.home2-hero_button {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 240px;
}

.home2-hero_button .button-picto {
    width: 100%;
    justify-content: space-between;
}

.button-shopify {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.shopify-buy__layout-vertical {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.shopify-buy__btn-wrapper {
    display: flex;
    width: 100%;
}

@media (max-width: 991px) {
    .header {
        color: #ffffff;
    }

    .header__inner {
        justify-content: flex-end;
    }

    .header__brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .nav-logo--icon {
        display: block;
    }

    .nav-logo--light,
    .nav-logo--dark {
        display: none;
    }

    .nav_right-wrap {
        justify-content: flex-end;
        gap: 1.25rem;
    }

    .nav_button-wrapper {
        width: 48px;
        height: 48px;
        display: none;
    }

    .home2-hero_button {
        max-width: 100%;
        align-items: stretch;
    }

    .home2-hero_button .button-picto {
        justify-content: center;
    }

    .header__menu-toggle {
        display: inline-flex;
    }

    .header__nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(10, 10, 5, 0.95);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        z-index: 200;
    }

    .header__nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .dropdown-link {
        padding: 0.375rem 0;
    }

    .dropdown-trigger svg {
        width: 1rem;
        height: 1rem;
    }

    .header__cta-link {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;

    /* Say Hi Button */
    .button-pill:hover {
        background-color: #ffff05 !important;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .tagline {
        font-size: 1.5rem;
        color: var(--primary-orange);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s forwards;
    }

    .hero h1 {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s 0.2s forwards;
    }

    .price-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        backdrop-filter: blur(5px);
        margin-top: 2rem;
        font-weight: 600;
        opacity: 0;
        animation: fadeIn 1s 1s forwards;
    }

    .hero-img {
        width: 100%;
        max-width: 600px;
        margin-top: -50px;
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
        animation: float 6s ease-in-out infinite;
    }

    /* Cards Grid */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .card {
        border-radius: 2rem;
        padding: 3rem;
        position: relative;
        overflow: hidden;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: var(--transition);
        cursor: pointer;
    }

    .card:hover {
        transform: translateY(-10px);
    }

    .card.yellow {
        background: linear-gradient(rgba(255, 77, 0, 0.9), rgba(255, 77, 0, 0.9)), url('blind-swap.PNG');
        background-size: cover;
        background-position: center;
        color: var(--near-black);
    }

    .card.green {
        background: #b5f5ec;
        color: var(--near-black);
    }

    .card.blue {
        background: #bee3f8;
        color: var(--near-black);
    }

    .card.purple {
        background: #e9d8fd;
        color: var(--near-black);
    }

    .cards-section .card-content-wrapper {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cards-section .card-heading {
        margin: 0;
        line-height: 1.1;
        font-size: 2.4rem;
    }

    .cards-section .card-icon {
        width: 96px;
        height: 96px;
        border-radius: 24px;
        object-fit: contain;
        display: block;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .cards-section .card p {
        margin-top: 0.75rem;
        line-height: 1.55;
        opacity: 0.85;
    }

    .cards-section .card-image {
        width: 100%;
        max-width: 360px;
        border-radius: 32px;
        margin: 0 auto;
        display: block;
        object-fit: cover;
        filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.35));
    }

    .cards-section .card-image--small {
        max-width: 280px;
    }

    .cards-section .card-description {
        margin: 1.75rem auto 0;
        padding: 0 1.5rem;
        font-size: 1.05rem;
        line-height: 1.6;
        color: inherit;
        opacity: 0.85;
        text-align: center;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 2rem;
    }

    .card h3 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .card p {
        color: inherit;
        opacity: 0.8;
        font-size: 1.2rem;
    }

    /* Specs Section */
    .specs {
        background: #111;
        border-radius: 3rem;
        margin: 4rem 2rem;
        padding: 6rem;
    }

    .specs-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .specs-list {
        list-style: none;
    }

    .specs-item {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
    }

    .specs-label {
        color: var(--text-dim);
        font-weight: 500;
    }

    .specs-value {
        font-weight: 700;
    }

    /* What's in the box */
    .box-items-wrapper {
        margin-top: 4rem;
    }

    .box-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        justify-content: center;
    }

    .box-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        opacity: 1;
        /* Override potential waitlist opacity */
    }

    .box-item-icon svg {
        width: 6rem;
        height: 6rem;
        display: block;
    }

    .box-item-heading {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-white);
    }

    .box-item-text {
        font-size: 1rem;
        color: var(--text-dim);
    }

    /* FAQ */
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 1rem;
        overflow: hidden;
        transition: var(--transition);
    }

    .faq-header {
        padding: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .faq-header h4 {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        transition: var(--transition);
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        padding: 0 2rem;
    }

    .faq-content p {
        padding-bottom: 2rem;
    }

    .faq-item.active .faq-content {
        max-height: 1000px;
        transition: max-height 1s ease-in;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq_answer {
        display: none;
    }

    .faq-item.active .faq_answer {
        display: block;
    }

    /* Mundus Redesign */
    .about-section-1-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 6rem 2rem;
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 3rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: var(--primary-orange);
    }

    .about-hero-img {
        width: 100%;
        height: 400px;
        object-fit: contain;
        border-radius: 1.5rem;
        margin-bottom: 4rem;
        display: block;
        background: radial-gradient(circle at center, #1a1a15, #0a0a05);
    }

    .about-hero-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
        align-items: start;
    }

    .about-hero-content-wrapper.center-vertical {
        align-items: center;
    }

    .hero-content-col {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .heading-3 {
        font-size: clamp(2rem, 3.5vw, 2.75rem);
        line-height: 1.25;
        font-weight: 700;
    }

    .paragraph-4 {
        font-size: 1.25rem;
        line-height: 1.6;
        color: var(--text-dim);
    }

    @media (max-width: 900px) {
        .about-section-1-wrapper {
            padding: 4rem 1.5rem;
        }

        .about-hero-content-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .about-hero-img {
            height: 300px;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
    }

    /* Waitlist Modal */
    .waitlist-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999999;
    }

    .waitlist-modal.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .waitlist-modal__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 5, 0.85);
        backdrop-filter: blur(8px);
    }

    .waitlist-modal__dialog {
        position: relative;
        background: linear-gradient(135deg, rgba(33, 33, 10, 0.95), rgba(10, 10, 5, 0.92));
        color: var(--text-white);
        padding: clamp(2rem, 5vw, 3rem);
        border-radius: 1.75rem;
        max-width: min(840px, 92vw);
        width: 100%;
        box-shadow: 0 30px 80px rgba(10, 10, 5, 0.55);
        transform: scale(0.95);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(18px);
    }

    .waitlist-modal.is-active .waitlist-modal__dialog {
        transform: scale(1);
    }

    .waitlist-modal__close {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: transparent;
        border: none;
        color: var(--text-white);
        font-size: 1.75rem;
        cursor: pointer;
        line-height: 1;
        transition: color 0.2s ease;
    }

    .waitlist-modal__close:hover,
    .waitlist-modal__close:focus-visible {
        color: var(--primary-orange);
        outline: none;
    }

    .waitlist-modal__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .waitlist-modal__copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .waitlist-modal__eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.2rem;
        text-transform: uppercase;
        color: var(--primary-orange);
        font-weight: 700;
    }

    .waitlist-modal__subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    .waitlist-modal__form {
        display: grid;
        gap: 1rem;
        width: 100%;
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .waitlist-modal__label {
        display: none;
    }

    .waitlist-modal__input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.75rem;
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        color: var(--text-white);
        text-align: center;
        transition: all 0.2s ease;
    }

    .waitlist-modal__input:focus {
        background: rgba(255, 255, 255, 0.1);
        outline: none;
        border-color: var(--primary-orange);
        box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.1);
    }

    .waitlist-modal__submit {
        background: var(--primary-orange);
        color: var(--near-black);
        border: none;
        border-radius: 0.75rem;
        padding: 1rem 1.5rem;
        font-weight: 800;
        font-size: 1.1rem;
        cursor: pointer;
        transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
        width: 100%;
    }

    .waitlist-modal__submit:hover {
        transform: translateY(-2px) scale(1.02);
    }

    .waitlist-modal__privacy {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 1rem;
    }

    .waitlist-modal__confirmation {
        margin-top: 1rem;
        font-size: 1rem;
        color: var(--primary-orange);
        font-weight: 600;
        background: rgba(255, 77, 0, 0.1);
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
    }

    body.waitlist-modal-open {
        overflow: hidden;
    }

    @media (max-width: 900px) {
        .waitlist-modal__content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .waitlist-modal__copy {
            gap: 0.75rem;
        }
    }

    @media (max-width: 600px) {
        .waitlist-modal__dialog {
            padding: 1.5rem;
            border-radius: 1.5rem;
        }

        .waitlist-modal__form {
            padding: 1rem;
        }

        .waitlist-modal__perks li::before {
            width: 0.6rem;
            height: 0.6rem;
            margin-right: 0.5rem;
            box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.12);
        }

        .waitlist-modal__subtitle {
            font-size: 0.95rem;
        }

        .waitlist-modal__privacy {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 991px) {

        .cards-grid,
        .specs-grid {
            grid-template-columns: 1fr;
        }

        .specs {
            padding: 3rem 2rem;
            margin: 2rem 1rem;
        }

        .nav-links {
            display: none;
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }

        100% {
            transform: translateY(0);
        }
    }

    /* Footer */
    .footer {
        padding: 6rem 0 3rem;
        background: #0a0a05;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer_navigation {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 4rem;
        padding-bottom: 4rem;
    }

    .footer_logo_link {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        color: var(--text-white);
        transition: opacity 0.2s;
    }

    .footer_logo_link:hover {
        opacity: 0.8;
    }

    .footer-brand-text {
        font-weight: 700;
        font-size: 1.25rem;
        letter-spacing: -0.02em;
    }

    .footer-navigation_wrap {
        gap: 3rem;
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-bottom .button-picto {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

    .footer-navigation_wrapper {
        display: flex;
        gap: 4rem;
        flex-wrap: wrap;
    }

    .margin-small {
        margin-top: 1rem;
    }

    .footer-brand-text {
        font-weight: 700;
        font-size: 1.25rem;
        letter-spacing: -0.02em;
        color: var(--text-white);
    }

    /* Force footer text to white as requested */
    .footer_list,
    .footer-list_item,
    .footer-list_title,
    .footer-bottom-text {
        color: #ffffff !important;
    }