:root {
    --bg-dark: #f8fafc;
    --bg-darker: #ffffff;
    --primary: #8b5cf6; /* Very subtle luxury accent, maybe green was preferred? */
    --primary: #65a30d; /* Premium deep lime */
    --primary-glow: rgba(101, 163, 13, 0.15);
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --highlight-color: #65a30d;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, .logo, .tagline, .brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Glassmorphism */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.tagline {
    font-size: 0.70rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.main-nav {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.main-nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}

.cta-nav {
    border: 1px solid var(--text-main);
    padding: 8px 18px;
    margin-left: 25px;
    border-radius: 4px;
    font-weight: 400 !important;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: var(--text-main);
    color: #fff !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-darker);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease forwards;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 200;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn {
    padding: 14px 40px;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0; /* Elegant sharp corners */
}

.btn-primary {
    background: var(--text-main);
    color: #fff;
    border: 1px solid var(--text-main);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-main);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--text-main);
}

/* Brands Band */
.brands {
    background: #ffffff;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px 0;
}

.brands-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 40px;
    opacity: 0.7;
}

.brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand img {
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Glowing Orbs completely removed */
.glow-orb { display: none; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h3 {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 16px;
    font-weight: 300;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: -1px;
}
.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Products Grid */
.products {
    padding: 100px 0;
    background: var(--bg-dark);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    background-color: #f1f5f9;
}
.product-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
}
.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.1);
}
.product-info {
    padding: 24px;
}
.product-info .category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 12px;
    display: block;
}
.product-info h4 {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-text {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}
.product-card:hover .btn-text {
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-darker);
    text-align: center;
}
.footer p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}

/* References Grid */
.references {
    padding: 80px 0;
    background: #f1f5f9;
}
.references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.ref-logo {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}
.ref-logo:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.1);
}
.ref-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Flagship Slider (Flat Design) */
.featured-slider-container {
    margin-bottom: 60px;
}
.featured-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 24px;
}
.featured-slider::-webkit-scrollbar {
    height: 6px;
}
.featured-slider::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* Subtle scrollbar */
    border-radius: 4px;
}
.featured-slider::-webkit-scrollbar-track {
    background: #f8fafc;
}
.slide-card {
    min-width: 250px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.slide-card:hover {
    border-color: var(--primary);
    background: #f8fafc;
}
.slide-card img {
    height: 140px;
    object-fit: contain;
    margin-bottom: 16px;
}
.slide-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 300;
    letter-spacing: -0.5px;
}
.slide-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 15px 0;
    }
    .main-nav {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .main-nav a {
        margin: 5px 12px;
        font-size: 0.75rem;
    }
    .hero {
        padding-top: 140px;
    }
}

