/* =========================================
   STYLE-VISION.CSS
   Branding & Vision Page Styles
   Based on "Dominanz im Digitalen" Concept
   ========================================= */

/* --- VARIABLES & RESET --- */
:root {
    /* Inherit from style.css where possible, map local vars */
    --brand-gold: var(--color-gold, #D4AF37);
    --brand-gold-dim: rgba(212, 175, 55, 0.1);
    --bg-dark: var(--color-bg-dark, #050505);
    --text-main: var(--color-text-main, #ffffff);
    --text-muted: var(--color-text-muted, #9ca3af);
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Specific overrides for this page content */
/* Use .container from style.css but ensure it has the relative positioning for this layout */
.sch-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.bg-grid {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.text-gold { color: var(--brand-gold); }
.text-white { color: #fff; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

/* --- TYPOGRAPHY (Mobile Optimized) --- */
.headline-xl {
    font-size: clamp(2.5rem, 8vw, 6rem); /* Responsive sizing */
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-family: var(--font-display);
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.headline-lg {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive sizing */
    line-height: 1.1;
    font-weight: 700;
    font-family: var(--font-display);
    color: #fff;
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--brand-gold-dim);
    border-radius: 100px;
    background: rgba(212, 175, 55, 0.05);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Space for fixed header */
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }
}

.hero-text-col p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}
.text-gradient-gold {
    background: linear-gradient(135deg, #fff 30%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.availability-badge {
    position: absolute;
    top: 120px;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    z-index: 10;
}

@media (max-width: 768px) {
    .availability-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-flex;
        margin-bottom: 2rem;
    }
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0% {opacity:1;} 50% {opacity:0.4;} 100% {opacity:1;} }

/* --- SHOWCASE SECTION --- */
.showcase-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bg-text-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14vw;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--font-display);
    z-index: 1;
    user-select: none;
}

.section-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header-content {
    max-width: 800px;
}

.highlight-box {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 0 0.5rem;
    transform: skewX(-10deg);
}

/* Tabs Grid */
.style-switcher {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 0 auto 4rem;
    max-width: 1000px;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .style-switcher {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.style-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.style-btn span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.style-btn i {
    font-size: 1.4rem;
    opacity: 0.4;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s ease;
}

.style-btn:hover { 
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.style-btn:hover i {
    transform: translateY(-3px);
    opacity: 1;
}

.style-btn.active {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8962c 100%);
    color: #000;
    border-color: var(--brand-gold);
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4);
}

.style-btn.active i { 
    opacity: 1; 
    transform: scale(1.1);
}

/* Loader Styling */
.loader-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 100;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-top-color: var(--brand-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Browser Mockup */
.browser-mockup {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 20px 70px -10px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05); /* Outer ring */
    position: relative;
    z-index: 2;
    transition: all 0.6s var(--ease-out-expo);
}

.browser-mockup::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.browser-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 100px -20px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.browser-mockup:hover::before {
    opacity: 1;
}

.browser-chrome {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots { display: flex; gap: 0.6rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; box-shadow: 0 0 8px rgba(255, 95, 87, 0.3); }
.dot-yellow { background: #ffbd2e; box-shadow: 0 0 8px rgba(255, 189, 46, 0.3); }
.dot-green { background: #27c93f; box-shadow: 0 0 8px rgba(39, 201, 63, 0.3); }

.browser-url {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.browser-url svg {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    color: #27c93f;
}

.preview-viewport {
    height: 1100px;
    background: #000;
    position: relative;
    overflow-y: auto;
    scroll-behavior: smooth;
    color: white;
}

/* Custom Scrollbar for Viewport */
.preview-viewport::-webkit-scrollbar {
    width: 10px;
}
.preview-viewport::-webkit-scrollbar-track {
    background: #000;
}
.preview-viewport::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #000;
    border-radius: 10px;
}
.preview-viewport::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gold);
}

@media (max-width: 768px) {
    .preview-viewport {
        height: 800px;
    }
}

/* --- ARSENAL / TECH SECTION --- */
.arsenal-section {
    padding: 100px 0;
    position: relative;
    background: #080808;
}

.arsenal-head {
    max-width: 820px;
    margin-bottom: 2.4rem;
}

.arsenal-kicker {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
    font-family: var(--font-display);
    font-weight: 700;
}

.arsenal-main {
    color: var(--brand-gold);
    font-size: clamp(2rem, 6vw, 4.2rem);
    line-height: 0.95;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1rem;
}

.arsenal-main span {
    color: var(--brand-gold);
}

.arsenal-subtext {
    max-width: 640px;
    color: var(--text-muted);
    font-size: 1.45rem;
    line-height: 1.3;
}

.arsenal-grid {
    display: grid;
    gap: 1rem;
}

.arsenal-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.arsenal-card-v2 {
    border: 1px solid rgba(255,255,255,0.1);
    background: #090909;
    padding: 1rem;
    min-height: 220px;
    border-radius: 16px;
}

.arsenal-card-v2 h4 {
    color: #fff;
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 0.9rem;
    font-family: var(--font-display);
}

.arsenal-card-meta {
    color: var(--brand-gold);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.7rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tool-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    color: #e4e4e4;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 0.33rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.arsenal-bottom-cta {
    margin-top: 2rem;
    background: var(--brand-gold);
    color: #000;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
    border-radius: 20px;
}

.arsenal-bottom-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: #0a0a0a;
    color: #fff;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.arsenal-bottom-cta h4 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 0.95;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.arsenal-bottom-cta p {
    color: rgba(0,0,0,0.82);
    font-weight: 600;
}

.btn-rect-dark {
    background: #0a0a0a;
    border: 1px solid #111;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-rect-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* --- CV / VITA SECTION --- */
.cv-section {
    padding: 100px 0;
}

.vita-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.4rem;
    align-items: start;
}

.vita-profile-card {
    border: 1px solid rgba(255,255,255,0.12);
    background: #070707;
    padding: 1rem;
    border-radius: 18px;
}

.vita-profile-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 0.85rem;
}

.vita-profile-card h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 0.95;
    margin-bottom: 0.35rem;
}

.vita-profile-card p {
    color: #a7a7a7;
    margin-bottom: 1rem;
}

.vita-linkedin-btn,
.vita-cv-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 0.85rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
    border-radius: 10px;
}

.vita-linkedin-btn {
    background: #1387c9;
    color: #fff;
}

.vita-cv-btn {
    background: #0a0a0a;
    color: #fff;
    border: 1px solid #fff;
}

.vita-main .section-tag {
    margin-bottom: 1rem;
}

.vita-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1rem;
}

.vita-headline span {
    color: var(--brand-gold);
}

.vita-intro {
    color: var(--text-muted);
    max-width: 850px;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    background: var(--bg-dark);
    border: 1px solid var(--brand-gold);
    border-radius: 50%;
}

.t-year {
    font-family: var(--font-mono);
    color: var(--brand-gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.t-role {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.t-company {
    font-size: 1.05rem;
    color: #d7d7d7;
    margin-bottom: 0.5rem;
}

.t-desc {
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- PARTNER SECTION --- */
.partner-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.niche-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.niche-card {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    border-radius: 14px;
}

.niche-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.niche-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.image-showcase {
    width: 100%;
}

.aspect-ratio-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: #0b0b0b;
    border-radius: 18px;
}

.aspect-ratio-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stat-overlay {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 1rem 1.2rem;
    backdrop-filter: blur(6px);
    border-radius: 14px;
}

.vita-profile-row {
    margin-top: 2rem;
}

.profile-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.4rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    border-radius: 16px;
}

.profile-card-image {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.profile-card-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.profile-card-content p {
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    opacity: 0.5;
    filter: grayscale(100%);
}

.partner-logos img {
    height: 40px;
    width: auto;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

/* Security & Copyright Overlay (If needed later) */

.faq-title {
    font-family: 'Space Grotesk', sans-serif; 
    font-size: 1.2rem; 
    font-weight: 700; 
    margin-bottom: 2rem; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    border-left: 3px solid var(--brand-gold); 
    padding-left: 1rem; 
    color: white; 
}

/* Contact Bar Fixes */
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

.contact-item--green {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-item--green:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

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

    .hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-content {
        gap: 3rem;
        text-align: center;
    }

    .hero-text-col p {
        margin: 0 auto 3rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-cta-group .electric-wrapper,
    .cta-actions .electric-wrapper {
        width: 100%;
        max-width: 400px;
    }

    .hero-cta-group .btn,
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .style-switcher {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .browser-chrome {
        padding: 0.8rem 1.2rem;
        gap: 1rem;
    }

    .preview-viewport {
        height: 600px;
    }

    .arsenal-grid-six {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .arsenal-subtext {
        font-size: 1.2rem;
    }

    .vita-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vita-aside {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .profile-card {
        grid-template-columns: 1fr;
    }

    .profile-card-image {
        max-height: 400px;
    }
}

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

    .headline-xl {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
        margin-bottom: 1.5rem;
    }

    .headline-lg {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .style-switcher {
        display: flex;
        overflow-x: auto;
        gap: 0.8rem;
        padding: 0 0.5rem 1rem;
        margin: 0 -1.25rem 3rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .style-switcher::-webkit-scrollbar {
        display: none;
    }

    .style-btn {
        min-width: 130px;
        flex-shrink: 0;
        padding: 1rem 0.8rem;
    }

    .browser-chrome {
        padding: 0.7rem 1rem;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .browser-dots {
        order: 1;
    }

    .browser-url {
        order: 3;
        width: 100%;
        font-size: 0.65rem;
        padding: 0.5rem 0.75rem;
    }

    .preview-viewport {
        height: 400px; /* Even smaller for very small phones */
    }

    .headline-xl {
        font-size: clamp(2rem, 12vw, 2.8rem);
    }

    .availability-badge {
        padding: 0.6rem 1rem;
        transform: scale(0.9);
    }
}

/* Fix for footer mobile stacking if not covered in style.css */
@media (max-width: 768px) {
    .main-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
}

    .arsenal-card-v2 {
        min-height: auto;
        padding: 1.5rem;
    }

    .arsenal-card-v2 h4 {
        font-size: 1.75rem;
    }

    .arsenal-bottom-cta {
        padding: 1.5rem;
        text-align: center;
        justify-content: center;
    }

    .arsenal-bottom-cta h4 {
        font-size: 1.8rem;
    }

    .btn-rect-dark {
        width: 100%;
        padding: 1.1rem;
    }

    .niche-grid {
        grid-template-columns: 1fr;
    }

    .aspect-ratio-box {
        aspect-ratio: 1 / 1;
    }

    .stat-overlay {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.8rem;
    }

    .profile-card-image {
        max-height: 300px;
    }

    .profile-actions {
        flex-direction: column;
    }

    .profile-actions .btn {
        width: 100%;
    }
}
