/* ==========================================================================
   MixHaven Marketing Website - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties - Design Tokens
   ========================================================================== */
:root {
    /* Brand Colors */
    --mh-primary: #FF6B35;
    --mh-primary-hover: #E85A28;
    --mh-secondary: #2DD4BF;
    --mh-accent-purple: #A78BFA;

    /* Neutral Palette */
    --mh-bg-dark: #0D0D0F;
    --mh-bg-card: #18181B;
    --mh-bg-card-hover: #1F1F23;
    --mh-bg-elevated: #27272A;
    --mh-border: #3F3F46;

    /* Text Colors */
    --mh-text-primary: #FAFAFA;
    --mh-text-secondary: #A1A1AA;
    --mh-text-muted: #71717A;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-elevated: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--mh-bg-dark);
    color: var(--mh-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.display-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--mh-text-secondary);
    font-weight: 400;
    max-width: 600px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--mh-primary) 0%, var(--mh-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    background: rgba(13, 13, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(63, 63, 70, 0.5);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--mh-text-primary) !important;
}

/* MixHaven Logo Mark */
.logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.nav-link {
    color: var(--mh-text-secondary) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--mh-text-primary) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28250, 250, 250, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary-mh {
    background: var(--mh-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.btn-primary-mh:hover {
    background: var(--mh-primary-hover);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-secondary-mh {
    background: transparent;
    color: var(--mh-text-primary);
    border: 1px solid var(--mh-border);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.btn-secondary-mh:hover {
    background: var(--mh-bg-card);
    color: var(--mh-text-primary);
    border-color: var(--mh-text-muted);
}

.btn-lg-mh {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(45, 212, 191, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mh-text-secondary);
    margin-bottom: 1.5rem;
}

.hero-tagline i {
    color: var(--mh-primary);
    margin-right: 0.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--mh-text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-platforms {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mh-text-muted);
    font-size: 0.875rem;
}

.hero-platforms i {
    font-size: 1.5rem;
    color: var(--mh-text-secondary);
}

/* Hero Image/Device Mockup */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-device {
    width: 100%;
    max-width: 860px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--mh-border);
    overflow: hidden;
    transition: transform 0.35s ease;
}

.hero-image-wrapper:hover .hero-device {
    transform: scale(1.04);
}

/* App screenshot placeholder */
.app-screenshot {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--mh-bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Fallback pattern for missing images */
.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, var(--mh-bg-card) 0%, var(--mh-bg-elevated) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--mh-text-muted);
}

.screenshot-placeholder i {
    font-size: 4rem;
    opacity: 0.3;
}

/* ==========================================================================
   Problems Section
   ========================================================================== */
.problems-section {
    padding: var(--section-padding) 0;
    background: var(--mh-bg-dark);
}

.problems-intro-row {
    margin-bottom: 4rem;
}

.problem-intro {
    margin-bottom: 0;
}

.problem-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.problem-intro-image {
    width: 100%;
    max-width: 700px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--mh-border);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--mh-bg-card);
    transition: transform 0.35s ease;
}

.problem-visual:hover .problem-intro-image {
    transform: scale(1.04);
}

.problem-intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.problem-card {
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: var(--mh-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--mh-primary);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--mh-primary);
}

.problem-card p {
    color: var(--mh-text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

/* ==========================================================================
   Solution/Features Section
   ========================================================================== */
.solution-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--mh-bg-dark) 0%, var(--mh-bg-card) 50%, var(--mh-bg-dark) 100%);
}

.solution-header {
    text-align: center;
    margin-bottom: 5rem;
}

/* Feature Row Layout */
.feature-row {
    margin-bottom: 6rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.feature-label {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--mh-primary);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--mh-text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--mh-text-secondary);
}

.feature-list li i {
    color: var(--mh-secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-list li strong {
    color: var(--mh-text-primary);
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--mh-border);
    transition: transform 0.35s ease;
}

.feature-visual:hover .feature-image {
    transform: scale(1.04);
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

/* Organize & Collaborate: borderless image, cropped at right edge of viewport */
.solution-section {
    overflow-x: hidden;
}

.feature-row-organize .feature-col-bleed,
.feature-row-collaborate .feature-col-bleed {
    padding-right: 0;
    overflow: visible;
}

.feature-row-organize .feature-visual-bleed,
.feature-row-collaborate .feature-visual-bleed {
    width: 50vw;
    max-width: none;
    margin-left: 0;
    justify-content: flex-start;
}

.feature-row-organize .feature-image-bleed,
.feature-row-organize .feature-image-bleed img,
.feature-row-collaborate .feature-image-bleed,
.feature-row-collaborate .feature-image-bleed img {
    width: 100%;
    max-width: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.feature-row-organize .feature-image-bleed,
.feature-row-collaborate .feature-image-bleed {
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    transition: transform 0.35s ease;
}

.feature-row-organize .feature-visual-bleed:hover .feature-image-bleed,
.feature-row-collaborate .feature-visual-bleed:hover .feature-image-bleed {
    transform: scale(1.04);
}

.feature-row-organize .feature-image-bleed img,
.feature-row-collaborate .feature-image-bleed img {
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

@media (max-width: 991.98px) {
    .feature-row-organize .feature-visual-bleed,
    .feature-row-collaborate .feature-visual-bleed {
        width: 100%;
    }
    .feature-row-organize .feature-col-bleed,
    .feature-row-collaborate .feature-col-bleed {
        overflow: hidden;
    }
}

/* Feature image placeholder */
.feature-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--mh-bg-elevated);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mh-border);
}

.feature-placeholder i {
    font-size: 4rem;
    color: var(--mh-text-muted);
    opacity: 0.3;
}

/* ==========================================================================
   Dashboard Preview Section
   ========================================================================== */
.dashboard-section {
    padding: var(--section-padding) 0;
    background: var(--mh-bg-dark);
    position: relative;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dashboard-showcase {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--mh-border);
    transition: transform 0.35s ease;
}

.dashboard-showcase:hover .dashboard-image {
    transform: scale(1.04);
}

.dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
}

/* Callout annotations */
.dashboard-callouts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .dashboard-callouts {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.callout-icon {
    width: 48px;
    height: 48px;
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.callout-icon i {
    font-size: 1.25rem;
    color: var(--mh-secondary);
}

.callout-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.callout-item p {
    font-size: 0.875rem;
    color: var(--mh-text-muted);
    margin: 0;
}

/* ==========================================================================
   Privacy Section
   ========================================================================== */
.privacy-section {
    padding: var(--section-padding) 0;
    background: var(--mh-bg-card);
}

.privacy-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: rgba(167, 139, 250, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.privacy-icon i {
    font-size: 2.5rem;
    color: var(--mh-accent-purple);
}

.privacy-icon.privacy-icon-pulsate {
    animation: cta-logo-pulsate 0.6s ease-out 2;
}

.privacy-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.privacy-subtitle {
    font-size: 1.25rem;
    color: var(--mh-accent-purple);
    margin-bottom: 1.5rem;
}

.privacy-description {
    color: var(--mh-text-secondary);
    font-size: 1.0625rem;
}

/* ==========================================================================
   Platforms Section
   ========================================================================== */
.platforms-section {
    padding: var(--section-padding) 0;
    background: var(--mh-bg-dark);
}

.platforms-header {
    margin-bottom: 4rem;
}

.platform-card {
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: var(--mh-bg-card-hover);
    transform: translateY(-4px);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--mh-text-primary);
}

.platform-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.platform-card p {
    color: var(--mh-text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* ==========================================================================
   Benefits Grid
   ========================================================================== */
.benefits-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--mh-bg-dark) 0%, var(--mh-bg-card) 100%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--mh-bg-elevated);
    border: 1px solid var(--mh-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--mh-text-secondary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--mh-text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* ==========================================================================
   Showcase Carousel
   ========================================================================== */
.showcase-section {
    padding: var(--section-padding) 0;
    background: var(--mh-bg-dark);
    position: relative;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-carousel {
    position: relative;
}

.showcase-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    cursor: grab;
}

.showcase-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

.showcase-slide {
    flex: 0 0 calc((100% - 3rem) / 2.5);
    min-width: 0;
}

.showcase-slide-image {
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.showcase-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-slide-text {
    padding: 1.25rem 0.25rem 0;
}

.showcase-slide-text p {
    color: var(--mh-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.showcase-slide-text strong {
    color: var(--mh-text-primary);
    font-weight: 700;
}

.showcase-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 2rem;
}

.showcase-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mh-bg-elevated);
    border: 1px solid var(--mh-border);
    color: var(--mh-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.showcase-nav-btn:hover {
    background: var(--mh-bg-card-hover);
    color: var(--mh-text-primary);
    border-color: var(--mh-text-muted);
}

.showcase-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.showcase-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mh-text-muted);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.showcase-dot:hover {
    opacity: 0.8;
}

.showcase-dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--mh-text-secondary);
    opacity: 1;
}

.showcase-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mh-bg-elevated);
    border: 1px solid var(--mh-border);
    color: var(--mh-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    margin-left: 0.5rem;
}

.showcase-play-btn:hover {
    background: var(--mh-bg-card-hover);
    color: var(--mh-text-primary);
    border-color: var(--mh-text-muted);
}

@media (max-width: 991.98px) {
    .showcase-slide {
        flex: 0 0 calc((100% - 1.5rem) / 1.5);
    }
}

@media (max-width: 767.98px) {
    .showcase-slide {
        flex: 0 0 85%;
    }

    .showcase-nav {
        justify-content: center;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--mh-bg-card);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-logo {
    margin-bottom: 2rem;
}

.cta-logo svg,
.cta-logo .cta-logo-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.cta-logo.cta-logo-pulsate .cta-logo-img {
    animation: cta-logo-pulsate 0.6s ease-out;
}

@keyframes cta-logo-pulsate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--mh-primary);
    color: white;
    border: 2px solid var(--mh-primary);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: transparent;
    color: var(--mh-primary);
    transform: scale(1.02);
}

.cta-platforms {
    margin-top: 1.5rem;
    color: var(--mh-text-muted);
    font-size: 0.9375rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--mh-bg-dark);
    border-top: 1px solid var(--mh-border);
    padding: 3rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--mh-text-primary);
    margin-bottom: 1rem;
}

.footer-brand svg,
.footer-brand .footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-description {
    color: var(--mh-text-muted);
    font-size: 0.875rem;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mh-text-muted);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--mh-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--mh-text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--mh-border);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--mh-text-muted);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--mh-bg-card);
    border: 1px solid var(--mh-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mh-text-secondary);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--mh-bg-elevated);
    color: var(--mh-text-primary);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-muted-mh {
    color: var(--mh-text-muted) !important;
}

.text-secondary-mh {
    color: var(--mh-text-secondary) !important;
}

.bg-card {
    background: var(--mh-bg-card);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-platforms {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .feature-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .feature-list li {
        justify-content: center;
        text-align: left;
    }

    .section-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        background: var(--mh-bg-card);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid var(--mh-border);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in-up {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
}
