:root {
    /* Colors */
    --primary: #C75C27;
    /* Burnt Orange */
    --primary-dark: #A0461C;
    --primary-light: #E67E4D;

    --bg-dark: #0F1115;
    /* Almost Black */
    --bg-darker: #0A0C0F;
    /* Darker for contrast */
    --bg-card: #1A1D23;
    /* Dark Slate */
    --bg-card-hover: #22262E;

    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-dark: #1F2937;

    --accent: #F39C12;
    --border: #2D333F;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(15, 17, 21, 0) 0%, rgba(15, 17, 21, 1) 100%);
    --glass: rgba(255, 255, 255, 0.05);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

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

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
}

.hidden {
    display: none !important;
}

.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(199, 92, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 92, 39, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: white;
    letter-spacing: -0.02em;
}

.logo .dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    opacity: 0.8;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    opacity: 1;
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomFull 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 17, 21, 0.95), rgba(15, 17, 21, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 60px;
}

.hero-text {
    max-width: 650px;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

/* CSS Fallback */

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.badge-hero .pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(199, 92, 39, 0.4);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 4.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    animation: float 3s infinite ease-in-out;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Logo Cloud */
.logo-cloud {
    padding: 40px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.logo-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo-slider {
    width: 100%;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.logo-track {
    display: flex;
    gap: 80px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: 0.3s;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.brand-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* Features & Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.4s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(199, 92, 39, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Products Showcase */
.products {
    background: #13151A;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    position: relative;
}

.product-image img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.product-info {
    flex: 1;
}

.product-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.product-specs {
    margin-bottom: 40px;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #D1D5DB;
}

.product-specs i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Reviews */
.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stars {
    color: #EAB308;
    margin-bottom: 15px;
}

.reviewer {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.reviewer strong {
    display: block;
    color: white;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-wrapper {
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    height: auto;
    opacity: 1;
    padding-bottom: 24px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Stats */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    min-width: 60px;
}

.stat-card .symbol {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 60px auto 0;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #D1D5DB;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: #15181E;
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Footer */
.footer {
    background: #0A0C0F;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(26, 29, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--primary);
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    color: #E5E7EB;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.cookie-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    margin-right: 12px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(199, 92, 39, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(199, 92, 39, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(199, 92, 39, 0);
    }
}

@keyframes float {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

@keyframes zoomFull {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 5 - 80px * 5));
    }
}

/* Mobile */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .product-row {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 80px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}