/* ============================================
   ASKEVE - HOMEPAGE STYLES
   Dynamic Green Neon Theme
   ============================================ */

@import url('shared.css?v=4');

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

    /* Hier wurde der Gradient hinzugefügt */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../assets/images/hero-landscape.jpg') no-repeat center center / 100% auto;

    /* Fallback Hintergrundfarbe separat oder als letzte Schicht */
    background-color: var(--bg-darker);

    padding: 100px var(--space-lg) 80px;
}

/* --- Logo Container --- */
.logo-container {
    z-index: 10;
    transform-origin: center center;
    will-change: transform, top, left, width;
    filter: none !important;
    /* No glow */
}

.logo-container.hero-position {
    position: relative;
    width: 306px;
    flex-shrink: 0;
    filter: none !important;
}

/* Horizontal layout wrapper */
.hero-inner {
    display: flex;
    flex-direction: row;
    /* Logo on left, text on right */
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    max-width: 1100px;
    width: 100%;
    z-index: 10;
    padding: 0 var(--space-lg);
}

/* Background - Subtle glow (grid removed) */
.hero-grid {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 70% 30%, rgba(68, 214, 165, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 20% 70%, rgba(68, 214, 165, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Grid lines removed per user request */

/* Scan lines effect */
.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom,
            transparent 0px,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px);
    pointer-events: none;
    opacity: 0.3;
}

/* Neon gradient orb */
.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(68, 214, 165, 0.15) 0%, transparent 50%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Corner decorations */
.hero-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 5;
}

.hero-corner--tl {
    top: 40px;
    left: 40px;
    border-left: 2px solid rgba(68, 214, 165, 0.4);
    border-top: 2px solid rgba(68, 214, 165, 0.4);
}

.hero-corner--br {
    bottom: 40px;
    right: 40px;
    border-right: 2px solid rgba(68, 214, 165, 0.4);
    border-bottom: 2px solid rgba(68, 214, 165, 0.4);
}


.logo-container.nav-position {
    top: 20px;
    left: 40px;
    width: 45px;
    transform: translate(0, 0);
    z-index: 1001;
}

/* Spacer for logo in nav */
.logo-spacer {
    width: 50px;
    height: 45px;
    flex-shrink: 0;
}

#main-logo {
    display: block;
    width: 100%;
    height: auto;
    margin-inline: auto;
    overflow: visible;
}

/* Logo Intro Animation States */
#whole-body {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out);
}

#whole-head {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s var(--ease-bounce);
    transition-delay: 0.3s;
}

#eyes path {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s var(--ease-bounce);
    transition-delay: 0.6s;
}

/* Animated state */
.logo-animated #whole-body {
    opacity: 1;
    transform: translateY(0);
}

.logo-animated #whole-head {
    opacity: 1;
    transform: scale(1);
}

.logo-animated #eyes path {
    opacity: 1;
    transform: scale(1);
}

/* Glow animation removed */

/* --- Hero Text Content --- */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    flex: 1;
    max-width: 650px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s var(--ease-out);
    transition-delay: 0.5s;
}

.hero-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-tagline {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    animation: neonFlicker 5s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero-title span {
    display: block;
}

.hero-title .line-2 {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Scroll Indicator - Hidden */
.scroll-indicator {
    display: none;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ============================================
   SERVICES SECTION - BENTO GRID
   ============================================ */

.services-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-dark);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-darker), transparent);
    pointer-events: none;
}

/* Override the bento-grid for services */
.services-section .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 180px 180px 230px 230px;
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

/* Service cards span 2 rows */
.service-card {
    grid-row: span 2;
}

/* Service card base */
.service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s var(--ease-out);
    z-index: 10;
}

.service-card:hover {
    border-color: rgba(68, 214, 165, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(68, 214, 165, 0.15), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleY(1);
}

/* Background image container */
.service-card-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    filter: grayscale(30%) brightness(0.6);
}

.service-card:hover .service-card-bg img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.7);
}

.service-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(65, 68, 65, 0.3) 0%,
            rgba(17, 17, 17, 0.95) 70%);
}

/* Card content */
.service-card-content {
    position: relative;
    z-index: 2;
    padding: var(--space-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Icon styling */
.icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-sm);
    transition: all 0.4s var(--ease-out);
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: var(--neon);
}

.icon-box-lg {
    width: 72px;
    height: 72px;
}

.icon-box-lg svg {
    width: 40px;
    height: 40px;
}

.service-card:hover .icon-box {
    background: rgba(68, 214, 165, 0.2);
    box-shadow: 0 0 25px rgba(68, 214, 165, 0.25);
}

/* 3D Icon Container */
.icon-3d-container {
    overflow: visible;
    background: transparent;
    border: none;
}

.icon-3d-container canvas {
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.service-card:hover .service-link svg {
    transform: translateX(5px);
}

.service-card-logo {
    width: 40px;
    height: 53px;
}

/* Featured badge */
.featured-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--neon);
    color: var(--bg-darker);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    align-self: flex-start;
}

/* Featured card special styling */
.service-card.featured {
    border-color: rgba(68, 214, 165, 0.3);
}

.service-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(68, 214, 165, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Stats card styling */
.stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: 100%;
}

.stats-card .stat-item {
    text-align: center;
}

.stats-card .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon);
    text-shadow: 0 0 30px rgba(68, 214, 165, 0.5);
    margin-bottom: 0.25rem;
}

.stats-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stats-card .stat-label-with-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.stats-card .stat-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(68, 214, 165, 0.55);
    background: rgba(68, 214, 165, 0.08);
    color: var(--neon);
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    cursor: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.stats-card .stat-info .stat-info-glyph {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(0.00em);
    pointer-events: none;
}

.stats-card .stat-info::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(20, 24, 22, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 16;
}

.stats-card .stat-info::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    min-width: 180px;
    max-width: 240px;
    padding: 0.45rem 0.55rem;
    border-radius: 0;
    clip-path: var(--clip-angular-sm);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, rgba(48, 48, 48, 0.8) 0%, rgba(20, 25, 20, 0.9) 100%);
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: normal;
    text-transform: none;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 15;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.stats-card .stat-info:hover::before,
.stats-card .stat-info:hover::after,
.stats-card .stat-info:focus-visible::before,
.stats-card .stat-info:focus-visible::after {
    opacity: 1;
    visibility: visible;
}

.stats-card .stat-info:hover::after,
.stats-card .stat-info:focus-visible::after {
    transform: translateX(-50%) translateY(0);
}

.stats-card .stat-info:hover,
.stats-card .stat-info:focus-visible {
    transform: scale(1.12);
    background: rgba(68, 214, 165, 0.16);
    border-color: rgba(68, 214, 165, 0.85);
    color: var(--neon);
    box-shadow: 0 0 14px rgba(68, 214, 165, 0.35);
}

.stats-card .stat-info:focus-visible {
    outline: 2px solid rgba(68, 214, 165, 0.45);
    outline-offset: 2px;
}

/* Wider stats card - single row */
.stats-card.stats-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Custom Solutions Card - single row */
.custom-solutions-card {
    background: linear-gradient(135deg, rgba(68, 214, 165, 0.05) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(68, 214, 165, 0.2);
    padding: 0;
    display: flex;
    flex-direction: column;
    grid-row: span 1;
}

.custom-solutions-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.custom-solutions-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.custom-solutions-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    flex-grow: 1;
}

/* ============================================
   ABOUT / WHO WE ARE SECTION
   ============================================ */

.about-section {
    background: #1e2320;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.about-image {
    height: 70vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.section-label-dark {
    color: var(--neon);
    background: rgba(68, 214, 165, 0.15);
    border-color: rgba(68, 214, 165, 0.3);
}

.about-highlights {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
    text-align: center;
}

.highlight-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon);
    margin-bottom: 0.25rem;
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .stats-card.stats-wide {
        grid-column: span 1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image {
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .about-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   JOURNEY SECTION
   ============================================ */

.journey-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto var(--space-xl);
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-item:nth-child(even) {
    direction: rtl;
}

.journey-item:nth-child(even)>* {
    direction: ltr;
}

.journey-content h2 {
    margin-bottom: var(--space-md);
}

.journey-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.journey-visual {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(68, 214, 165, 0.2);
    clip-path: var(--clip-angular);
}

.journey-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon);
    z-index: 2;
}

.journey-visual img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%) brightness(0.8);
    transition: all 0.6s var(--ease-out);
}

.journey-visual:hover img {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.05);
}

/* ============================================
   MARQUEE / TECH BANNER
   ============================================ */

.marquee-section {
    padding: var(--space-md) 0;
    background: var(--bg-accent);
    border-top: 1px solid rgba(68, 214, 165, 0.1);
    border-bottom: 1px solid rgba(68, 214, 165, 0.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
}

.marquee-item {
    padding: 0 var(--space-lg);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: color 0.3s;
}

.marquee-item:hover {
    color: var(--neon);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section moved to shared.css */

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(68, 214, 165, 0.15);
    padding: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    background: var(--bg-dark);
    border: 1px solid rgba(68, 214, 165, 0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .services-section .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .journey-item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .journey-item:nth-child(even) {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Hero layout stacks on tablet */
    .hero {
        min-height: var(--viewport-height);
        padding: calc(var(--nav-height) + 28px) var(--space-sm) 56px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
        padding: 0;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .logo-container.hero-position {
        width: 255px;
        align-self: center;
        margin-inline: auto;
        display: flex;
        justify-content: center;
    }

    #main-logo {
        /* Optical center: mascot silhouette is slightly right-heavy on small screens */
        transform: translateX(-2px);
    }

    .services-section .bento-grid {
        grid-template-columns: 1fr;
    }

    .hero-corner {
        display: none;
    }

    .stats-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--nav-height) + 20px) var(--space-sm) 40px;
        min-height: var(--viewport-height);
    }

    .hero-content {
        margin-top: 0;
        padding: 0 var(--space-sm);
    }

    .logo-container.hero-position {
        width: 200px;
        align-self: center;
        margin-inline: auto;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator {
        display: none;
    }

    .service-card {
        min-height: 200px;
    }

    .cta-content {
        padding: var(--space-md);
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm);
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-content {
        margin-top: 0;
    }

    .logo-container.hero-position {
        width: 140px;
        align-self: center;
        margin-inline: auto;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .nav-logo-text {
        display: none;
    }
}
