/* 
  x11plus Premium IT - LIGHT / CYBER EDITION 
  Theme: Sleek, Tech, Glassmorphism in Light Mode
*/

:root {
    --bg-dark: #F8FAFC;
    /* Light background */
    --bg-card: #FFFFFF;
    /* White cards */
    --color-primary: #002A66;
    /* Deep blue */
    --color-accent: #FF6A08;
    /* Orange */
    --color-text: #1E293B;
    /* Dark text */
    --color-text-dim: #475569;
    /* Muted dark text */
    --border-glow: rgba(0, 42, 102, 0.1);

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Base Elements */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-primary);
}

p {
    color: var(--color-text-dim);
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

.text-center {
    text-align: center;
}

/* Gradients & Highlights */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--color-accent);
}

/* Background Tech Grid & Glows */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0, 42, 102, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 42, 102, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    /* Reduced for light mode */
}

.glow-1 {
    background: var(--color-accent);
    width: 500px;
    height: 500px;
    top: -10%;
    right: -10%;
}

.glow-2 {
    background: var(--color-primary);
    width: 600px;
    height: 600px;
    bottom: -20%;
    left: -10%;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 48px;
    /* Original logo is perfect for light background */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a:not(.btn):hover {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(255, 106, 8, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 106, 8, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(0, 42, 102, 0.05);
}

/* Hero */
.hero {
    padding: 12rem 0 8rem;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background: rgba(255, 106, 8, 0.05);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Grid & Cards */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 8, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.glass-card:hover .card-icon {
    color: var(--color-accent);
    transform: scale(1.1);
}

/* Focus Grid (Philosophy) */
.focus-grid {
    grid-template-columns: 1fr 1fr;
}

.focus-card {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.large-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.focus-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Partners */
.partner-band {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.partner-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--color-accent);
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 5px 15px rgba(255, 106, 8, 0.3);
    cursor: pointer;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 0 2rem;
    background: #FFFFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a:hover {
    color: var(--color-accent);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 42, 102, 0.1);
    border-radius: 12px;
    padding: 2rem;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 42, 102, 0.15);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dim);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-buttons .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    flex: 1;
    text-align: center;
}

.cookie-links {
    font-size: 0.85rem;
    text-align: center;
}

.cookie-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.8;
}

.cookie-links a:hover {
    color: var(--color-accent);
    opacity: 1;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
        padding: 1.5rem;
    }
    .cookie-buttons {
        flex-direction: column;
    }
}