/* Axium Tweaks - Modern Design System (Based on Example Website) */

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

:root {
    --bg: #100f14;
    --bg-secondary: #151418;
    --bg-card: #151418;
    --text-primary: #f5f5f5;
    --text-secondary: rgba(245, 245, 245, 0.7);
    --text-muted: rgba(245, 245, 245, 0.5);
    --brand: #009659; /* Axium green */
    --brand-hover: #00b86b;
    --brand-light: rgba(0, 150, 89, 0.15);
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.15);
    --muted: #1a1a1a;
    --accent: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header/Navigation */
header, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.header-inner, .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

@media (max-width: 768px) {
    .header-inner, .nav-container {
        padding: 0 1rem;
    }
}

.logo, .brand-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img, .brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img, .brand-logo {
        height: 32px;
    }
}

nav, .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    list-style: none;
}

nav a, .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.15s;
}

nav a:hover, .nav-link:hover {
    color: var(--text-primary);
}

#desktopDiscordBtn {
    display: none;
}

@media (min-width: 768px) {
    #desktopDiscordBtn {
        display: inline-flex !important;
    }
}

.btn, .product-button, .discord-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.15s;
    border: none;
    cursor: pointer;
}

.btn-primary, .product-button {
    background: var(--brand);
    color: #ffffff;
}

.btn-primary:hover, .product-button:hover {
    background: var(--brand-hover);
}

.btn-secondary, .discord-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover, .discord-btn:hover {
    background: var(--accent);
    border-color: var(--border);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    width: 40px;
    height: 40px;
}

.dropdown-btn:hover {
    background: var(--accent);
    border-color: var(--border);
}

.dropdown-btn svg {
    width: 24px;
    height: 24px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1.25rem);
    left: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1001;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 0.75rem;
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.15s;
    border-bottom: 1px solid var(--border);
}

.dropdown-menu a:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.dropdown-menu a:last-child {
    border-bottom: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

@media (min-width: 769px) {
    .dropdown-menu a:not(.btn):last-of-type {
        border-bottom: none !important;
    }
}

.dropdown-menu a:hover {
    color: var(--text-primary);
    background: var(--accent);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        min-width: 100%;
        border-radius: 0;
        margin-top: 0;
        background: var(--bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        z-index: 10000;
        transition: none;
        transform: none;
    }
    
    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-close-btn {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text-primary);
        width: 40px;
        height: 40px;
        border-radius: 0.375rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.15s;
        z-index: 10001;
    }
    
    .dropdown-close-btn:hover {
        background: var(--accent);
        border-color: var(--border-light);
    }
    
    .dropdown-menu > a:not(.btn) {
        width: 100%;
        max-width: 400px;
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
        text-align: center;
        border-radius: 0.5rem;
        margin-bottom: 0.75rem;
        border: 1px solid var(--border);
    }
    
    .dropdown-menu .btn.btn-primary {
        width: 100%;
        max-width: 400px;
        margin-bottom: 0;
        margin-top: 0.5rem;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
        border: none !important;
        border-radius: 0.5rem !important;
        background: var(--brand) !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .dropdown-menu .btn.btn-primary svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }
    
    .dropdown-menu .btn.btn-primary:hover {
        background: var(--brand-hover) !important;
    }
    
    .dropdown-menu a:first-of-type {
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: 1px solid var(--border);
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        margin-bottom: 0;
    }
}

@media (min-width: 769px) {
    .dropdown-close-btn {
        display: none;
    }
    
    .dropdown-menu .btn.btn-primary {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 6.5rem 1rem 2rem;
        min-height: 100vh;
        justify-content: space-between;
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        min-height: calc(100vh - 8rem);
        justify-content: space-between;
    }
}

.hero-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 9999px;
    padding: 0.5rem 0.875rem 0.5rem 0.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}


.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.hero-banner:hover::before {
    transform: scaleX(1);
}

.hero-banner > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-banner {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem 0.5rem 0.5rem;
        margin-bottom: 2rem;
        gap: 0.5rem;
        width: auto;
        max-width: 100%;
        display: inline-flex;
        flex-wrap: wrap;
    }
    
    .hero-banner-text {
        font-size: 0.75rem;
        white-space: normal;
    }
    
    .hero-banner-arrow {
        margin-left: 0.5rem;
    }
    
    .hero-banner-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-banner-arrow {
        font-size: 0.875rem;
    }
}

.hero-banner-badge {
    background: var(--brand);
    color: #ffffff;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-banner-text {
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.hero-banner-arrow {
    font-size: 1rem;
    color: var(--brand);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}


.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        padding: 0;
        word-break: break-word;
    }
}

.hero h1 .accent-text {
    color: var(--brand);
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero p {
        font-size: clamp(1rem, 3.5vw, 1.125rem);
        margin-bottom: 2.5rem;
        padding: 0;
        line-height: 1.7;
        max-width: 100%;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        gap: 0.75rem;
        padding: 0;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-avatars {
    display: flex;
    align-items: center;
    position: relative;
}

.hero-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bg);
    background: var(--bg-card);
    position: relative;
}

.hero-avatar-1 {
    z-index: 3;
}

.hero-avatar-2 {
    z-index: 2;
    margin-left: -12px;
}

.hero-avatar-3 {
    z-index: 1;
    margin-left: -12px;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-social-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-social-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-social-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.hero-stars {
    color: #fbbf24;
    font-size: 1rem;
    line-height: 1;
}

.hero-rating-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-social-proof {
        margin-top: 2rem;
        gap: 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-social-text {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-rating {
        display: none;
    }
    
    .hero-social-number {
        font-size: 1.25rem;
    }
    
    .hero-avatar {
        width: 40px;
        height: 40px;
    }
    
    .hero-avatar-2,
    .hero-avatar-3 {
        margin-left: -10px;
    }
}

/* Logo Carousel */
.logo-carousel-container {
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .logo-carousel-container {
        margin-top: auto;
        order: 999;
        padding-top: 2rem;
    }
}

.logo-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.logo-carousel-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: logo-scroll 30s linear infinite;
    will-change: transform;
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
    height: 80px;
    width: 150px;
    padding: 1rem;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
    display: block;
}

.logo-item:hover img {
    filter: brightness(1);
}

@media (max-width: 768px) {
    .logo-carousel-track {
        gap: 2rem;
        animation-duration: 25s;
    }
    
    .logo-item {
        height: 60px;
        width: 120px;
        padding: 0.75rem;
    }
}

/* Section */
.section, .products-section, .features-section, .reviews-section {
    padding: 6rem 2rem;
}

@media (max-width: 768px) {
    .section, .products-section, .features-section, .reviews-section {
        padding: 3rem 1rem;
    }
}

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

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
    }
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-light);
    border: 1px solid var(--border);
    border-radius: 9999px;
    color: var(--brand);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        padding: 0 0.5rem;
    }
}

.section-subtitle, .section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card-featured {
    border: 1px solid var(--brand);
    background: linear-gradient(to bottom, rgba(0, 150, 89, 0.05) 0%, var(--bg-card) 100%);
}

.product-card-featured:hover {
    border-color: var(--brand-hover);
    box-shadow: 0 8px 16px rgba(0, 150, 89, 0.2);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 150, 89, 0.3);
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.product-card-featured .product-title {
    color: var(--text-primary);
}

.product-price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin: 0;
}

.product-card-featured .product-price {
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-check {
    color: var(--brand);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.product-card-featured .feature-check {
    color: var(--brand);
}

.product-features-list li span:not(.feature-check) {
    flex: 1;
}

.product-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--brand);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 0.5rem;
}

.product-button:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 150, 89, 0.3);
}

.product-card-featured .product-button {
    background: var(--brand);
    box-shadow: 0 2px 8px rgba(0, 150, 89, 0.2);
}

.product-card-featured .product-button:hover {
    background: var(--brand-hover);
    box-shadow: 0 4px 16px rgba(0, 150, 89, 0.4);
}

@media (max-width: 768px) {
    .product-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .product-badge {
        display: none;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .product-price {
        font-size: 2.5rem;
    }
    
    .product-description {
        font-size: 0.875rem;
    }
    
    .product-features-list {
        gap: 0.875rem;
    }
    
    .product-features-list li {
        font-size: 0.875rem;
    }
    
    .product-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    border-radius: 0.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--brand);
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 0;
    }
    
    .feature-description {
        font-size: 0.875rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 2rem;
    overflow: hidden;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }
    
    .review-card {
        padding: 1.25rem;
        min-height: auto;
    }
    
    .review-quote {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

.reviews-scroll-container {
    height: 60vh;
    overflow: hidden;
    position: relative;
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-scroll-container::before,
.reviews-scroll-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 10;
    pointer-events: none;
}

.reviews-scroll-container::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg), transparent);
}

.reviews-scroll-container::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg), transparent);
}

.reviews-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.reviews-track:nth-child(1) {
    animation: scroll-up 40s linear infinite;
}

.reviews-track:nth-child(2) {
    animation: scroll-down 50s linear infinite;
}

.reviews-track:nth-child(3) {
    animation: scroll-up 40s linear infinite;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .reviews-scroll-container {
        overflow: visible;
        height: auto;
        grid-template-columns: 1fr;
    }
    .reviews-track {
        animation: none !important;
        transform: none !important;
    }
    .reviews-track:nth-child(2),
    .reviews-track:nth-child(3) {
        display: none;
    }
    .reviews-track .review-card:nth-child(n+4) {
        display: none;
    }
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    text-align: left;
}

@media (max-width: 768px) {
    .review-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-quote {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

/* Footer */
footer, .footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
    margin-top: auto;
}

footer .container, .footer .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    gap: 4.5rem;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    footer, .footer {
        padding: 2rem 0;
    }
    
    footer .container, .footer .container {
        padding: 0 1.5rem;
}

    .footer-content {
        display: none;
    }
}

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

.footer-brand img, .footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4, .footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-links a, .footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

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

.footer-bottom {
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: var(--text-primary);
    transition: all 0.2s;
    border: 1px solid var(--border);
    background: transparent;
    flex-shrink: 0;
}

.social-link:hover {
    color: var(--text-primary);
    background: var(--accent);
    border-color: var(--border-light);
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding-top: 0;
        margin-top: 0;
        border-top: none;
        text-align: center;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

body.modal-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(16, 15, 20, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.video-modal-dialog {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 1rem;
    max-width: 960px;
    width: min(960px, 100%);
    padding: 1.5rem;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.video-modal-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.video-modal-content {
    position: relative;
    width: 100%;
}

.video-modal-content video {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 1.5rem;
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .video-modal {
        padding: 1rem;
    }

    .video-modal-dialog {
        padding: 1rem;
    }

    .video-modal-title {
        font-size: 1.1rem;
        margin-right: 2.5rem;
    }
}

/* Loading Spinner */
.loading-spinner {
    border: 4px solid var(--border);
    border-top: 4px solid var(--brand);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Legal Pages Styling */
.legal-section {
    padding: 8rem 0 4rem;
    min-height: calc(100vh - 200px);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 6rem 0 3rem;
    }
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }
}

.legal-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.legal-content .last-updated {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-content ul li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.legal-content ul li::before {
    content: '•';
    color: var(--brand);
    font-weight: 700;
    font-size: 1.25rem;
    position: absolute;
    left: 0.5rem;
    top: 0;
    line-height: 1.8;
}

.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 1.75rem;
    list-style: decimal;
}

.legal-content ol li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--brand-hover);
    text-decoration: underline;
}

/* Special Notice Boxes */
.legal-content .risk-warning,
.legal-content .important-notice,
.legal-content .warning-notice {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.legal-content .risk-warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.legal-content .important-notice {
    border-left-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.legal-content .warning-notice {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.legal-content .risk-warning p,
.legal-content .important-notice p,
.legal-content .warning-notice p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-content .risk-warning p:last-child,
.legal-content .important-notice p:last-child,
.legal-content .warning-notice p:last-child {
    margin-bottom: 0;
}

.legal-content .risk-warning h3,
.legal-content .important-notice h3,
.legal-content .warning-notice h3 {
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-content .risk-warning ul,
.legal-content .important-notice ul,
.legal-content .warning-notice ul {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Disclaimer styling for paragraphs */
.legal-content p.disclaimer {
    font-style: italic;
    color: var(--text-muted);
    background: rgba(245, 245, 245, 0.05);
    border: 1px solid var(--border);
    border-left: 4px solid var(--text-muted);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .legal-content h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-top: 2.5rem;
    }
    
    .legal-content h3 {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .legal-content p,
    .legal-content ul li,
    .legal-content ol li {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    
    .legal-content p.disclaimer,
    .legal-content .risk-warning,
    .legal-content .important-notice,
    .legal-content .warning-notice {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
}
