/* ==========================================================================
   STREETPLAY / ELYNDOR APPS - DEDICATED VISUAL IDENTITY STYLESHEET
   Aesthetic: Cyber-Athletic, Dark GPS Tech, Neon Cyan & Magenta Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --sp-bg-base: #030712;
    --sp-bg-dark: #070d1d;
    --sp-bg-card: rgba(13, 23, 44, 0.75);
    --sp-border-subtle: rgba(0, 229, 255, 0.15);
    --sp-border-bright: rgba(0, 229, 255, 0.4);
    
    /* Brand Colors matching demo mockup */
    --sp-cyan: #00e5ff;
    --sp-teal: #00c2cb;
    --sp-teal-gradient: linear-gradient(135deg, #00e5ff 0%, #00b4d8 100%);
    --sp-magenta: #ec4899;
    --sp-magenta-gradient: linear-gradient(135deg, #f43f5e 0%, #d946ef 100%);
    --sp-violet: #8b5cf6;
    
    --sp-text-main: #f8fafc;
    --sp-text-muted: #94a3b8;
    --sp-text-dim: #64748b;
    
    --font-sp-heading: 'Outfit', sans-serif;
    --font-sp-body: 'Plus Jakarta Sans', sans-serif;
    
    --sp-shadow-glow: 0 0 35px rgba(0, 229, 255, 0.25);
    --sp-shadow-magenta: 0 0 35px rgba(236, 72, 153, 0.25);
}

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

body.apps-body {
    background-color: var(--sp-bg-base);
    color: var(--sp-text-main);
    font-family: var(--font-sp-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(236, 72, 153, 0.08) 0%, transparent 45%),
        linear-gradient(rgba(3, 7, 18, 0.85) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 7, 18, 0.85) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    background-attachment: fixed;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #030712;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--sp-teal);
}

/* Header & Navigation */
.apps-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 2rem;
    transition: all 0.3s ease;
}

.apps-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apps-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.apps-brand-logo {
    height: 48px;
    width: auto;
}

.apps-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--sp-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
}

.apps-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.apps-nav-links a {
    color: var(--sp-text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.apps-nav-links a:hover,
.apps-nav-links a.active {
    color: var(--sp-cyan);
}

.apps-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-studio-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}

.btn-studio-back:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-cta-cyan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sp-teal-gradient);
    color: #030712;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 18px rgba(0, 229, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-cta-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 229, 255, 0.55);
    filter: brightness(1.08);
}

/* Hero Section */
.apps-hero {
    min-height: 100vh;
    padding: 140px 1.5rem 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.apps-hero-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-glow-cyan {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-glow-magenta {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    filter: blur(70px);
}

.apps-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sp-cyan);
    text-transform: uppercase;
}

.hero-eyebrow span.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sp-cyan);
    box-shadow: 0 0 10px var(--sp-cyan);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title-group {
    max-width: 900px;
}

.hero-app-title {
    font-family: var(--font-sp-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #ffffff 30%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.hero-app-byline {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--sp-cyan);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-tagline {
    font-family: var(--font-sp-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.hero-tagline span.cyan-glow {
    color: var(--sp-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.hero-tagline span.magenta-glow {
    color: var(--sp-magenta);
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--sp-text-muted);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

/* Device Mockup Showcase */
.mockup-showcase-wrapper {
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
}

.mockup-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.22) 0%, rgba(236, 72, 153, 0.12) 50%, transparent 75%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.mockup-img-container {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 13, 29, 0.6);
    backdrop-filter: blur(10px);
}

.mockup-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-img-container:hover .mockup-banner-img {
    transform: scale(1.015);
}

/* Live Stats Badges Floating around Hero */
.hero-floating-badge {
    position: absolute;
    z-index: 3;
    background: rgba(13, 23, 44, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 16px;
    padding: 0.9rem 1.4rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 229, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatAnim 6s ease-in-out infinite;
}

.badge-left {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.badge-right {
    bottom: 20%;
    right: -20px;
    animation-delay: 3s;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.badge-cyan {
    background: rgba(0, 229, 255, 0.15);
    color: var(--sp-cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.badge-magenta {
    background: rgba(236, 72, 153, 0.15);
    color: var(--sp-magenta);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.badge-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.badge-content p {
    font-size: 0.75rem;
    color: var(--sp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections General */
.sp-section {
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 2;
}

.section-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sp-cyan);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-sp-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--sp-text-muted);
    line-height: 1.65;
}

/* Screen Features Carousel / Grid */
.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screen-card {
    background: rgba(10, 19, 36, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.screen-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sp-teal-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screen-card:nth-child(2)::before,
.screen-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--sp-cyan), var(--sp-magenta));
}

.screen-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 229, 255, 0.12);
}

.screen-card:hover::before {
    opacity: 1;
}

.screen-img-wrapper {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #02060f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
}

.screen-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.screen-card:hover .screen-thumb-img {
    transform: scale(1.04);
}

.screen-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sp-cyan);
    margin-bottom: 0.5rem;
}

.screen-title {
    font-family: var(--font-sp-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.screen-desc {
    font-size: 0.88rem;
    color: var(--sp-text-muted);
    line-height: 1.55;
}

/* Interactive Map Territory Claim Mini-Widget */
.territory-demo-card {
    background: rgba(7, 13, 29, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    max-width: 1000px;
    margin: 0 auto;
}

.territory-hud {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.hud-stat-item {
    display: flex;
    flex-direction: column;
}

.hud-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sp-text-dim);
}

.hud-stat-val {
    font-family: var(--font-sp-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.hud-stat-val.cyan {
    color: var(--sp-cyan);
}

.hud-stat-val.magenta {
    color: var(--sp-magenta);
}

.interactive-map-canvas {
    position: relative;
    background: #040814;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    min-height: 380px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.map-zone-tile {
    background: rgba(13, 23, 44, 0.6);
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.map-zone-tile.owned {
    background: rgba(0, 229, 255, 0.12);
    border: 1.5px solid var(--sp-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.map-zone-tile.rival {
    background: rgba(236, 72, 153, 0.1);
    border: 1.5px solid var(--sp-magenta);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.map-zone-tile:hover {
    transform: translateY(-4px) scale(1.02);
}

.zone-badge-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.map-zone-tile.owned .zone-badge-status {
    color: var(--sp-cyan);
}

.map-zone-tile.rival .zone-badge-status {
    color: var(--sp-magenta);
}

.zone-name {
    font-family: var(--font-sp-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.zone-points {
    font-size: 0.82rem;
    color: var(--sp-text-muted);
}

.zone-action-btn {
    margin-top: 1rem;
    padding: 0.45rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.map-zone-tile.owned .zone-action-btn {
    background: rgba(0, 229, 255, 0.2);
    color: var(--sp-cyan);
}

.map-zone-tile.rival .zone-action-btn {
    background: var(--sp-magenta-gradient);
    color: #fff;
}

.map-zone-tile.rival .zone-action-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Feature Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: rgba(10, 19, 36, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(13, 25, 48, 0.8);
    transform: translateY(-4px);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: var(--sp-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-family: var(--font-sp-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pillar-desc {
    font-size: 0.92rem;
    color: var(--sp-text-muted);
    line-height: 1.6;
}

/* Beta Pre-Registration Section */
.beta-card {
    background: linear-gradient(135deg, rgba(13, 23, 44, 0.95), rgba(7, 13, 29, 0.95));
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 28px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 229, 255, 0.15);
}

.beta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.beta-form {
    max-width: 550px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

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

.sp-input {
    background: rgba(3, 7, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-sp-body);
    font-size: 0.95rem;
    transition: all 0.25s ease;
    width: 100%;
}

.sp-input:focus {
    outline: none;
    border-color: var(--sp-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.sp-select {
    background: rgba(3, 7, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-sp-body);
    font-size: 0.95rem;
    width: 100%;
    cursor: pointer;
}

.sp-select:focus {
    outline: none;
    border-color: var(--sp-cyan);
}

.btn-submit-beta {
    background: var(--sp-teal-gradient);
    color: #030712;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-family: var(--font-sp-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-submit-beta:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.6);
}

/* Store Badges */
.store-badges-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.65rem 1.4rem;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
}

.store-badge svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Apps Dedicated Footer */
.apps-footer {
    background: #02050c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 1.5rem 2rem;
}

.apps-footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.apps-footer-brand p {
    color: var(--sp-text-muted);
    font-size: 0.92rem;
    margin-top: 1rem;
    max-width: 400px;
}

.apps-footer-col h4 {
    font-family: var(--font-sp-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.apps-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.apps-footer-col a {
    color: var(--sp-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.apps-footer-col a:hover {
    color: var(--sp-cyan);
}

.apps-footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--sp-text-dim);
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .badge-left {
        left: 0;
    }
    .badge-right {
        right: 0;
    }
    .apps-footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .apps-nav-links {
        display: none;
    }
    .hero-floating-badge {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .apps-hero {
        padding-top: 120px;
    }
}
