/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc143c;
    --dark-red: #8b0000;
    --pure-black: #000000;
    --deep-black: #0a0a0a;
    --pure-white: #ffffff;
    --off-white: #f5f5f5;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--pure-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(160deg, #000000 0%, #0a0000 40%, #050000 70%, #000000 100%);
}

/* Mouse Glow Effect */
.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.mouse-glow.active {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.8), 0 0 40px rgba(220, 20, 60, 0.5);
    animation: pulse-glow 3s infinite;
}

.glow-text-small {
    text-shadow: 0 0 8px rgba(220, 20, 60, 0.6), 0 0 15px rgba(220, 20, 60, 0.4);
    -webkit-font-smoothing: subpixel-antialiased;
    text-rendering: geometricPrecision;
}

@keyframes pulse-glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(220, 20, 60, 0.8), 0 0 40px rgba(220, 20, 60, 0.5);
    }
    50% { 
        text-shadow: 0 0 30px rgba(220, 20, 60, 1), 0 0 60px rgba(220, 20, 60, 0.8);
    }
}

.glow-box {
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4), inset 0 0 20px rgba(220, 20, 60, 0.1);
    animation: box-glow 3s infinite;
}

@keyframes box-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.4), inset 0 0 20px rgba(220, 20, 60, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(220, 20, 60, 0.6), inset 0 0 30px rgba(220, 20, 60, 0.2);
    }
}

.glow-line {
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.8), 0 0 30px rgba(220, 20, 60, 0.5);
}

.glow-badge {
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8), 0 0 40px rgba(220, 20, 60, 0.4);
    animation: badge-glow 2s infinite;
}

@keyframes badge-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.8), 0 0 40px rgba(220, 20, 60, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(220, 20, 60, 1), 0 0 60px rgba(220, 20, 60, 0.6);
        transform: scale(1.05);
    }
}

.glow-card {
    box-shadow: 0 5px 25px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.glow-card:hover {
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.6);
}

.glow-card-main {
    box-shadow: 0 10px 50px rgba(220, 20, 60, 0.5);
    animation: card-float 4s ease-in-out infinite;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 2px solid rgba(220, 20, 60, 0.4);
    border-bottom: 2px solid rgba(220, 20, 60, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(220, 20, 60, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-center {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-login {
    padding: 0.65rem 2.25rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-login:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}

.profile-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
}

.profile-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.profile-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(220, 50, 64, 0.4));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(220, 50, 64, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.logo-text-labs {
    color: #dc3545;
    font-weight: 600;
    letter-spacing: 1px;
}


.nav-menu,
.nav-center {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a,
.nav-center a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.nav-menu a:hover,
.nav-center a:hover {
    color: var(--pure-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.nav-menu a.active,
.nav-center a.active {
    color: var(--pure-white);
    background: rgba(220, 20, 60, 0.08);
    border: 1.5px solid rgba(220, 20, 60, 0.5);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.15),
                inset 0 0 20px rgba(220, 20, 60, 0.05);
}

.btn-nav {
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-affiliate {
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    border: 1.5px solid rgba(220, 20, 60, 0.5);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.15),
                inset 0 0 20px rgba(220, 20, 60, 0.05);
}

.btn-affiliate:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    border-color: var(--primary-red);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.3),
                inset 0 0 20px rgba(220, 20, 60, 0.1);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    border: 1.5px solid rgba(88, 101, 242, 0.5);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.15),
                inset 0 0 20px rgba(88, 101, 242, 0.05);
}

.btn-discord:hover {
    background: #5865F2;
    color: var(--pure-white);
    border-color: #5865F2;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.3),
                inset 0 0 20px rgba(88, 101, 242, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--pure-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.badge-container {
    margin-bottom: 2rem;
    animation: float-in 1s ease-out;
}

@keyframes float-in {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-red);
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pure-white);
    animation: title-appear 1s ease-out 0.3s backwards;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

@keyframes title-appear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: float-in 1s ease-out 0.5s backwards;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: float-in 1s ease-out 0.7s backwards;
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: float-in 1s ease-out 0.9s backwards;
}

.stat-box {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08), rgba(15, 15, 15, 0.9));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.12);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff1744, var(--primary-red));
    opacity: 0.8;
}

.stat-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(220, 20, 60, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box:hover::after {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(15, 15, 15, 0.95));
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.25);
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
    display: block;
    filter: drop-shadow(0 0 6px rgba(220, 20, 60, 0.4));
    transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 0 12px rgba(220, 20, 60, 0.7));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 0.75rem;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
    transition: all 0.4s ease;
}

.stat-box:hover .stat-number {
    color: var(--primary-red);
    text-shadow: 0 3px 12px rgba(220, 20, 60, 0.5);
    transform: scale(1.03);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--pure-white);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem 2rem 1.5rem;
    margin: 2rem 0 0;
    position: relative;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 38, 38, 0.8) 20%, rgba(220, 38, 38, 0.8) 80%, transparent 100%);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.4), 0 0 20px rgba(220, 38, 38, 0.2);
}

.divider-text {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    padding: 0 2.5rem;
    position: relative;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-divider {
        gap: 1rem;
        padding: 3rem 1rem;
    }
    
    .divider-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
        padding: 0 1rem;
    }
}
/* Products Section */
.products-section {
    padding: 1rem 0 5rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 5, 5, 0.6) 0%, rgba(5, 2, 2, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
}

.product-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 20, 60, 0.4);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.5rem;
    color: var(--pure-white);
    font-weight: 700;
    margin: 0;
}

.product-badge {
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    color: var(--pure-white);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.3);
}

.product-pricing {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.price-row.selected {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.featured-price {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.featured-price:hover {
    background: rgba(220, 20, 60, 0.15);
}

.featured-price.selected {
    background: rgba(220, 20, 60, 0.25);
    border-color: var(--primary-red);
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-small {
    background: var(--primary-red);
    color: var(--pure-white);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.price-value {
    color: var(--pure-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(5, 5, 5, 0.5);
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card-modern {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(0, 0, 0, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.feature-card-modern:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.feature-card-modern:hover {
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(0, 0, 0, 0.95));
}

.feature-content {
    padding: 2.5rem;
}

.feature-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    margin-bottom: 1rem;
    padding: 0.25rem 0;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), var(--pure-black));
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    border-top: 2px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--deep-black);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form-container {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--deep-black);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--pure-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

/* Affiliate Page Styles */

/* Hero Section */
.affiliate-hero {
    padding: 8rem 0 6rem;
    position: relative;
}

.affiliate-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Section */
.affiliate-benefits {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-5px);
    background: rgba(15, 15, 15, 0.6);
}

.benefit-icon-new {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* How It Works Section */
.affiliate-how {
    padding: 5rem 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(220, 20, 60, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
}

/* Final CTA Section */
.affiliate-final-cta {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-cta {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu,
    .nav-center {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(220, 20, 60, 0.2);
        transform: none;
    }

    .nav-menu li,
    .nav-center li {
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-menu a,
    .nav-center a {
        width: 90%;
        display: block;
        margin: 0 auto;
        padding: 1rem;
    }

    .nav-right {
        display: none;
    }

    .nav-menu.active,
    .nav-center.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .stats-container {
        gap: 1.25rem;
    }

    .stat-box {
        min-width: 130px;
        padding: 1.5rem 1.75rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .pricing-options {
        flex-direction: column;
    }

    .price-divider {
        transform: rotate(90deg);
    }

    .feature-item {
        grid-template-columns: 30px 1fr;
        grid-template-rows: auto auto;
    }

    .feature-desc {
        grid-column: 2;
    }

    .features-grid-pro {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Affiliate Page Responsive */
    .affiliate-hero {
        padding: 5rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .benefits-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-box {
        width: 90%;
        max-width: 240px;
        padding: 1.25rem 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-icon {
        font-size: 1.4rem;
    }

    .product-title-main {
        font-size: 2rem;
    }

    /* Affiliate Page Responsive */
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-content {
        padding: 3rem 1.5rem;
    }
}