:root {
    --primary: #ff4d00; /* Vibrant Orange from Logo */
    --primary-light: #ff7b00;
    --primary-dark: #cc3d00;
    --secondary: #ff0000; /* Red from Logo flames */
    --background: #1a1a1e; /* Solid Dark Grey */
    --surface: #242429;    /* Lighter Grey */
    --surface-light: #2d2d35; /* Even Lighter Grey */
    --text: #ffffff;
    --text-muted: #a0a0ab;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7; /* Increased for better legibility */
    overflow-x: hidden;
    font-size: 1.1rem; /* Scaled up default size */
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0; /* Reduced padding for the large logo */
    transition: var(--transition);
}

header.scrolled {
    background: rgba(26, 26, 30, 0.95); /* Updated to match new grey background */
    backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: center;
}

.nav-left .nav-links { justify-content: flex-start; }
.nav-right .nav-links { justify-content: flex-end; }

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

.logo {
    display: flex;
    justify-content: center;
    position: relative;
    /* Create a "bloom" glow behind the logo */
    &::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 77, 0, 0.15) 0%, transparent 70%);
        z-index: -1;
        pointer-events: none;
    }
}

.logo-img {
    height: 420px; 
    width: auto;
    max-width: 580px;
    object-fit: contain;
    transition: var(--transition);
    /* High contrast (1.5) ensures dark areas in JPEG become pure black for perfect screen blending */
    mix-blend-mode: screen; 
    filter: contrast(1.5) brightness(1.1) drop-shadow(0 0 60px rgba(255, 77, 0, 0.4));
    /* Aggressive radial fade: the image becomes transparent much sooner at the edges */
    -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 75%);
    mask-image: radial-gradient(circle at center, black 10%, transparent 75%);
}

header.scrolled .logo-img {
    height: 120px;
    width: 120px;
    -webkit-mask-image: none;
    mask-image: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--background);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    /* Neutral Grey Gradients - removed reddish orange highlights */
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.02), transparent);
}

.hero-content {
    max-width: 900px; /* Wider content area */
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem); /* Significantly Larger */
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.5rem; /* Larger text */
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Services */
.services {
    padding: 150px 0; /* More vertical space */
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3.5rem; /* Larger headers */
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-light);
    padding: 4rem 3rem; /* Larger cards */
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(255, 77, 0, 0.2);
}

.service-card .icon {
    font-size: 4rem; /* Larger icons */
    margin-bottom: 2rem;
    display: block;
}

.service-card h3 {
    font-size: 2rem;
}

/* Products Redesign */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--surface);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.product-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 2.5rem;
}

.product-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.link-btn {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.link-btn:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Detailed Services */
.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

/* Contact */
.contact {
    padding-bottom: 100px;
}

.contact-card {
    background: linear-gradient(90deg, var(--surface-light), var(--surface));
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
}

.contact-link.whatsapp {
    color: #25D366;
}

.contact-link:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal="bottom"] {
    transform: translateY(30px);
}

[data-reveal="scale"] {
    transform: scale(0.9);
}

[data-reveal].active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Differences Section */
.differences {
    padding: 150px 0;
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.diff-card {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.diff-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Brands Section */
.brands {
    background: #44444a; /* Distinct Grey */
    padding: 100px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.brands .section-header h2 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.brand-quote {
    font-style: italic;
    color: #888888;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.brand-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.brand-box img {
    height: 45px;
    width: auto;
    filter: none; /* Full natural color */
    opacity: 1;
}

.brand-box span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666666;
    margin-top: 0.5rem;
}

.brand-box:hover {
    transform: translateY(-5px);
}

.brand-box:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-box:hover img {
    filter: grayscale(0) invert(0);
}

.brand-placeholder {
    width: 60px;
    height: 50px;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

/* About Section */
.about {
    padding: 150px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.about-highlight {
    display: grid;
    gap: 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--surface), var(--background));
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.highlight-box .number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.highlight-box .label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
/* Desktop Hiding */
.menu-toggle, .mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .header-container {
        display: flex !important;
        justify-content: space-between;
    }

    .nav-left, .nav-right {
        display: none;
    }

    .logo {
        justify-content: flex-start;
    }
    
    .logo-img {
        height: 60px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--surface);
        padding: 5rem 2rem;
        transition: var(--transition);
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .mobile-nav.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        list-style: none;
    }

    .mobile-links a {
        text-decoration: none;
        color: var(--text);
        font-size: 1.5rem;
        font-weight: 600;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--text);
        transition: var(--transition);
    }

    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn-primary, .hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
