:root {
    /* Colors */
    --kangaroo-orange: #FF914D;
    --kangaroo-orange-light: rgba(255, 145, 77, 0.15);
    --forest-green: #2E7D32;
    --forest-green-light: rgba(46, 125, 50, 0.15);
    --dark-purple: #211c33;
    --light-purple: #f5f3fa;
    --light-bg: #FDFDFD;
    --white: #ffffff;
    --text-primary: #211c33;
    --text-secondary: #5a556b;

    /* Layout */
    --border-radius-xl: 32px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-font,
.phase-badge,
.feature-number {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark-purple);
}

h1 span {
    color: var(--kangaroo-orange);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark-purple);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 64px;
}

.center {
    text-align: center;
}

.bg-light-purple {
    background-color: var(--light-purple);
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 24px 48px rgba(33, 28, 51, 0.04), 0 4px 12px rgba(33, 28, 51, 0.02);
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: 0 32px 64px rgba(33, 28, 51, 0.08), 0 8px 16px rgba(33, 28, 51, 0.04);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    border: 3px solid var(--dark-purple);
    box-shadow: 5px 5px 0px var(--dark-purple);
}

.btn-primary {
    background-color: var(--kangaroo-orange);
    color: var(--dark-purple);
}

.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px var(--dark-purple);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-purple);
}

.btn-secondary:hover {
    background-color: var(--light-purple);
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px var(--dark-purple);
}

/* Hero Wrapper - creates positioning context for nav overlay */
.hero-wrapper {
    position: relative;
}

/* Sticky Nav */
.sticky-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 12px;
    transition: var(--transition);
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 4px solid var(--dark-purple);
    border-radius: var(--border-radius-xl);
    box-shadow: 6px 6px 0px var(--dark-purple);
    padding: 11px 32px;
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 80px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-purple);
    font-size: 1.5rem;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding: 110px 0 0;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('./assets/hero-bg.png?v=3');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.0rem;
    margin-bottom: 24px;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;
    z-index: 2;
    padding: 24px;
    transform: rotate(2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    display: block;
}

.scribble {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.scribble-1 {
    top: -40px;
    right: -40px;
    width: 120px;
    transform: rotate(-10deg);
}

.scribble-2 {
    bottom: -30px;
    left: -20px;
    width: 80px;
    transform: rotate(15deg);
}

/* Dual Core Container */
.dual-core-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.core-card {
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
    border: 3px solid var(--dark-purple);
    box-shadow: 8px 8px 0px var(--dark-purple);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.core-card-content {
    max-width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.core-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--dark-purple);
}

.core-icon-container {
    position: absolute;
    bottom: -15px;
    right: -20px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.neo-core-icon {
    height: 300px;
    width: auto;
    margin-bottom: 0px;
}

.teacher-icon {
    height: 390px;
}

.core-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.orange-icon {
    background: var(--kangaroo-orange-light);
    color: var(--kangaroo-orange);
}

.green-icon {
    background: var(--forest-green-light);
    color: var(--forest-green);
}

.pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 2px solid var(--dark-purple);
    box-shadow: 2px 2px 0px var(--dark-purple);
}

.orange-pill {
    background: var(--kangaroo-orange-light);
    color: var(--kangaroo-orange);
}

.green-pill {
    background: var(--forest-green-light);
    color: var(--forest-green);
}

.core-card p {
    margin-bottom: 40px;
    flex-grow: 1;
}

.core-image-wrapper {
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 24px rgba(33, 28, 51, 0.1);
}

.core-image {
    width: 100%;
    display: block;
    transform: translateY(10%);
    transition: transform 0.3s ease;
}

.core-card:hover .core-image {
    transform: translateY(0);
}

/* Neuro-Rail section background */
#neuro-rail {
    background-image: url('./assets/RAIL WEBSITE.png?v=3');
    background-size: 45%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--white);
}

/* Neuro Rail Z-Pattern */
.z-pattern-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.z-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.z-row.reverse {
    grid-template-columns: 1.2fr 1fr;
    direction: rtl;
}

.z-row.reverse>* {
    direction: ltr;
}

.feature-number {
    font-size: 4rem;
    color: var(--kangaroo-orange);
    line-height: 1;
    margin-bottom: 16px;
}

.z-content.glass-card {
    padding: 40px;
    height: fit-content;
    align-self: center;
    background-color: var(--white);
    border: 3px solid var(--dark-purple);
    box-shadow: 8px 8px 0px var(--dark-purple);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.z-content.glass-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--dark-purple);
}

.z-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-img-card {
    padding: 24px;
    position: relative;
    width: 100%;
}

.feature-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    display: block;
    box-shadow: 0 16px 32px rgba(33, 28, 51, 0.08);
}

.z-scribble-1 {
    top: -20px;
    right: -20px;
    width: 100px;
}

/* Strategic Roadmap Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 28px;
}

.roadmap-neo {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: url('./assets/roadmap.png?v=1');
    background-size: 100% auto;
    background-position: left bottom;
    background-repeat: no-repeat;
    /* Aspect ratio height calculation based on 5031x1931 image */
    padding-top: 14vw;
    padding-bottom: 6vw;
}

.train-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

/* Spacer for locomotive and first gap */
.locomotive-spacer {
    flex: 0 0 32%;
}

.wagon-slot {
    flex: 0 0 19%; /* Give wagons slightly more width to let the 70% scale match perfectly */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 9.5vw; /* Lift right into the optical center of the wagon box graphics */
}

.coupling-spacer {
    flex: 0 0 0.5%;
}

.bento-item {
    width: 68%;
    aspect-ratio: 1.4 / 1;
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--white);
    border: 3px solid var(--dark-purple);
    border-radius: var(--border-radius-lg);
    box-shadow: 8px 8px 0px var(--dark-purple);
    transition: all 0.3s ease;
    overflow: hidden;
}

.bento-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--dark-purple);
}

.bento-title {
    font-size: 1.05vw;
    margin: 0;
    line-height: 1.4;
    text-align: left;
    color: #000;
}

/* Specific optical nudges for Wagons to account for drawing irregularities */
.bento-item.phase-1 {
    position: relative;
    bottom: 1.2vw;
}

.bento-item.phase-2 {
    position: relative;
    right: 1.2vw;
    bottom: 1.2vw;
}

.bento-item.phase-3 {
    position: relative;
    right: 2.4vw;
    bottom: 1.2vw;
}

#roadmap .section-header {
    position: relative;
    top: 2vw;
    z-index: 2;
}

#roadmap {
    padding-bottom: 0px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

#team {
    padding-top: 0;
    margin-top: -20px;
    padding-bottom: 80px;
}

.team-card {
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    border: 3px solid var(--dark-purple);
    box-shadow: 8px 8px 0px var(--dark-purple);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.team-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--dark-purple);
}

.team-name-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    width: 100%;
}

.team-name-wrap h3 {
    margin: 0;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    color: var(--dark-purple);
    transition: all 0.2s ease;
    text-decoration: none;
}

.linkedin-link:hover {
    color: var(--kangaroo-orange);
    transform: scale(1.1);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: 'Fredoka', sans-serif;
    color: var(--white);
    margin-bottom: 24px;
    border: 3px solid var(--dark-purple);
    box-shadow: 4px 4px 0px var(--dark-purple);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 24px;
    border: 3px solid var(--dark-purple);
    box-shadow: 4px 4px 0px var(--dark-purple);
    display: block;
}

.bg-orange {
    background-color: var(--kangaroo-orange);
}

.bg-green {
    background-color: var(--forest-green);
}

.bg-purple {
    background-color: var(--dark-purple);
}

.role {
    color: var(--kangaroo-orange);
    font-weight: 500;
    margin-top: 8px;
}

/* Responsive Mobile Experience - Single Column Vertical Scroll */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    #neuro-rail {
        background-image: url('./assets/ck rail vertical mobile.png?v=3');
        background-position: top center;
    }

    .hero-container,
    .dual-core-container,
    .z-row,
    .z-row.reverse,
    .bento-grid,
    .team-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .bento-item,
    .phase-1,
    .phase-2,
    .phase-3 {
        grid-column: 1 / -1;
    }

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

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

    .core-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .core-card-content {
        max-width: 100%;
        align-items: center;
    }

    .core-icon-container {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 32px;
    }

    .phase-badge {
        align-self: center;
    }

    .z-visual {
        order: -1;
        /* Always put visual above text on mobile */
    }
}

/* ============================================================
   Contact Section
   ============================================================ */

.neo-card {
    background-color: var(--white);
    border: 3px solid var(--dark-purple);
    box-shadow: 8px 8px 0px var(--dark-purple);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

/* Trusted By Strip */
.trusted-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 24px;
    background-color: var(--dark-purple);
    border-top: 3px solid var(--dark-purple);
    border-bottom: 3px solid var(--dark-purple);
    overflow: hidden;
}

.trusted-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-track-wrap {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    flex-shrink: 0;
}

.ticker-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.ticker-item:hover .ticker-img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.become-partner-link {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kangaroo-orange);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 14px;
    border: 2px solid var(--kangaroo-orange);
    border-radius: 6px;
    margin-right: 20px;
    transition: all 0.2s ease;
}

.become-partner-link:hover {
    background-color: var(--kangaroo-orange);
    color: var(--dark-purple);
}

/* Contact section background */
#contact {
    background-image: url('./assets/contact background .png?v=3');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-form-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.contact-blurb {
    padding: 40px 36px;
    height: 100%;
}

.contact-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-blurb h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--dark-purple);
}

.contact-blurb p {
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.contact-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
}

.contact-points li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: var(--light-purple);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--kangaroo-orange);
}

.contact-points li strong {
    color: var(--dark-purple);
}

.contact-form {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    background-color: var(--white);
    border: 3px solid var(--dark-purple);
    border-radius: var(--border-radius-sm);
    box-shadow: 4px 4px 0px var(--dark-purple);
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0aabb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--kangaroo-orange);
    box-shadow: 4px 4px 0px var(--kangaroo-orange);
    background-color: #fffaf6;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23211c33' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    width: 100%;
    padding: 11px;
    font-size: 1rem;
    margin-top: 4px;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    border: 3px solid var(--dark-purple);
    box-shadow: 5px 5px 0px var(--dark-purple);
    transition: all 0.2s ease;
}

/* Thank-you panel */
.contact-thankyou {
    display: none;
    padding: 40px 32px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-thankyou.visible {
    display: flex;
}

.thankyou-icon {
    font-size: 3rem;
    line-height: 1;
}

.contact-thankyou h3 {
    font-size: 1.6rem;
    color: var(--dark-purple);
    margin: 0;
}

.contact-thankyou p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.contact-submit:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px var(--dark-purple);
}

/* Footer */
.site-footer {
    background-color: var(--dark-purple);
    padding: 80px 0 0;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
    align-self: center;
}

.nvidia-card-mini {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    /* Premium lighter background */
    border: 1px solid rgba(118, 185, 0, 0.3);
    /* Subtle NVIDIA green border */
    border-radius: 8px;
    padding: 12px 16px;
    align-self: center;
    box-shadow: 0 4px 16px rgba(118, 185, 0, 0.1);
    /* Subtle green glow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nvidia-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    /* Highly visible light text */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.nvidia-badge-mini {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.footer-nav,
.legal-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.contact-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover,
.contact-link:hover {
    color: var(--kangaroo-orange);
}

.legal-list li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-list li strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 992px) {
    .contact-form-wrap {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-logo,
    .nvidia-card-mini {
        align-self: center;
        /* Center the logo and card */
    }

    .nvidia-card-mini {
        align-items: center;
        /* Center text/badge inside card */
    }

    .footer-nav,
    .legal-list,
    .contact-list {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}