:root {
    --bg-primary: #121212;
    --text-primary: #f5f5f5;
    --text-secondary: #999999;
    --accent-color: #b0b0b0;
    --accent-gradient: linear-gradient(135deg, #e0e0e0, #666666);
    --glass-bg: rgba(30, 30, 30, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Fluid Typography Scale - Further reduced for mobile */
    --fs-huge: clamp(2.2rem, 10vw, 8rem);
    --fs-title: clamp(1.6rem, 6vw, 4rem);
    --fs-body: clamp(0.9rem, 1vw, 1.1rem);
}

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

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Canvas Sequence */
#sequence-container {
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    overflow: hidden;
    position: relative;
    /* Fixed: Added relative positioning */
}

#sequence-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Fixed Sequence Overlay */
.fixed-sequence-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    /* Mobile browser bottom bar proof */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    /* Extremely high z-index */
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.overlay-item {
    position: absolute;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

.overlay-item .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.overlay-item .title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0;
}

/* Layout container */
.content-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10vh 5vw;
}

.section.hero {
    justify-content: center;
    text-align: center;
}

.section.right-align {
    justify-content: flex-end;
}

.section.left-align {
    justify-content: flex-start;
}

.section.outline {
    justify-content: center;
    min-height: 60vh;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    max-width: 600px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.glass-panel.transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* Typography */
.title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--fs-title);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero .title {
    font-size: var(--fs-huge);
    font-weight: 800;
    text-transform: uppercase;
}

.gradient-text {
    background-image: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.text {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-image: var(--accent-gradient);
    border: none;
    color: #121212;
}

.btn-primary:hover {
    background-image: linear-gradient(135deg, #ffffff, #999999);
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-panel {
        padding: 2.5rem;
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Higher z-index */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5vw;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5vw;
    }
}

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10010;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 10005;
    }

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

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

/* Premium Photography Layouts */
.photo-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.1);
}

/* Page Overlay Variants */
.photo-overlay-card {
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 550px;
    margin: 5vw;
}

.align-right {
    margin-left: auto;
}

.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.align-bottom {
    margin-top: auto;
    margin-bottom: 5vw;
}

/* Info Grid Layouts for Subpages */
.info-section {
    padding: 10vh 5vw;
    background: var(--bg-primary);
    z-index: 5;
    position: relative;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-item {
    border-bottom: 1px solid var(--text-secondary);
    padding-bottom: 1rem;
}

.spec-value {
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .photo-overlay-card {
        margin: 5vw;
        padding: 2rem;
        border-radius: 16px;
    }

    .photo-section {
        min-height: 80vh;
    }
}

/* Slideshow Container */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slideshow-container .slide {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slideshow-container .slide.active {
    opacity: 1;
}

/* Motion Graphics Sections */
.motion-section {
    min-height: 100vh;
    background: #080808;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 15vh 0;
    border-top: 1px solid var(--glass-border);
}

.scroll-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotate(-2deg);
}

.huge-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--fs-huge);
    font-weight: 800;
    white-space: normal;
    /* Changed from nowrap to avoid horizontal overflow */
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .huge-text {
        white-space: normal;
        font-size: clamp(2.5rem, 8vw, 5rem);
        word-break: break-word;
    }
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
}

.motion-desc {
    max-width: 600px;
    margin: 10vh auto 0 auto;
    text-align: center;
    padding: 0 5vw;
    z-index: 5;
}

.motion-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 5vh;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 3rem;
    padding: 0 10vw;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    transition: transform 0.3s;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.tech-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ── EYEBROW LABELS ─────────────────────────────────────────── */
.eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ── HERO TEXT BLOCK ────────────────────────────────────────── */
.hero-text-block {
    position: relative;
    z-index: 2;
    margin: 5vw;
    max-width: 620px;
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--fs-huge);
    font-weight: 800;
    line-height: 1.1;
    margin: 0.5rem 0 1.5rem;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem !important;
    }

    .title {
        font-size: 1.8rem !important;
    }

    .photo-overlay-card {
        padding: 1.5rem !important;
        margin: 1rem !important;
    }

    .navbar {
        padding: 0.8rem 1rem !important;
    }
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

/* ── SPEC UNIT SUPERSCRIPT ──────────────────────────────────── */
.spec-unit {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 3px;
}

/* ── OVERVIEW SECTION ───────────────────────────────────────── */
.overview-section {
    padding: 15vh 8vw;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.overview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.overview-reversed {
    direction: rtl;
}

.overview-reversed>* {
    direction: ltr;
}

.overview-text h2 {
    margin-bottom: 2rem;
}

.overview-text p.text {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.overview-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(0.75) contrast(1.1);
}

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.feature-item {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.feature-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

/* ── GALLERY GRID ───────────────────────────────────────────── */
.gallery-section {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.placeholder-img {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.placeholder-img:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .overview-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 5vw;
    }

    .overview-reversed {
        direction: ltr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        padding: 0 5vw;
        gap: 1.5rem;
    }

    .motion-section {
        padding: 8vh 0;
    }

    .scroll-wrapper {
        transform: rotate(0);
    }

    .overlay-item .title {
        font-size: 2rem;
    }
}


/* ── AWESOME AERO ANIMATION PANEL ───────────────────────────── */
.overview-anim {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0, 120, 255, 0.05);
}

.anim-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.anim-sublabel {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 1.5rem;
}

.aero-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(0, 150, 255, 0.1));
}

.pressure-glow {
    filter: blur(8px);
    opacity: 0.4;
}

.air-streamline {
    transition: stroke 0.3s ease;
}

/* ── AWESOME WHEELS ANIMATION STYLES ────────────────────────── */
.wheel-svg {
    width: 260px;
    height: 260px;
    filter: drop-shadow(0 0 20px rgba(100, 200, 255, 0.1));
}

.wheel-speed-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-top: 1rem;
    letter-spacing: 2px;
}

.wheel-speed-label .wheel-kmh {
    font-size: 2.5rem;
    color: rgba(0, 150, 255, 0.9);
}

.brake-disc-glow {
    filter: blur(4px);
    opacity: 0;
}

/* ── AWESOME ENGINE ANIMATION STYLES ────────────────────────── */
.gauge-svg {
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 0 30px rgba(255, 100, 0, 0.15));
}

.gear-row {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.gear-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.gear-dot.active {
    background: #ff4400;
    border-color: #ffaa00;
    box-shadow: 0 0 15px #ff4400, inset 0 0 5px rgba(255, 255, 255, 0.5);
}

.rpm-counter {
    font-variant-numeric: tabular-nums;
}

/* ── OVERVIEW IMAGE fallback ──────── */
.overview-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(0.75) contrast(1.1);
}

/* ── MASONRY GALLERY ── */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #151515;
    border: 1px solid var(--glass-border);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.85);
}

.gallery-card.tall {
    grid-row: span 2;
}

.gallery-card.wide {
    grid-column: span 2;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-card:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.gallery-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.card-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.card-overlay .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-card.tall,
    .gallery-card.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* ── STATS SECTION ── */
.stats-section {
    padding: 15vh 10vw;
    background: #0a0a0a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-value {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ── SPLIT SECTION ── */
.split-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 80vh;
    border-top: 1px solid var(--glass-border);
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.split-content {
    padding: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0d0d0d;
}

@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        height: 60vh;
    }
}

/* ── MAIN FOOTER ── */
.main-footer {
    background: #050505;
    padding: 15vh 10vw 5vh;
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 10vw;
    margin-bottom: 10vh;
}

.footer-brand .nav-brand {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.link-col h4 {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.link-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.link-col a:hover {
    color: var(--text-primary);
}

.newsletter-wrap {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-wrap input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    color: white;
    font-family: inherit;
    flex: 1;
    border-radius: 8px;
}

.btn-cta {
    background: white;
    color: black;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5vh;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}