:root {
    --bg-dark: #030712;
    --bg-card: rgba(17, 24, 39, 0.6);
    --accent: #10b981;
    /* Emerald 500 */
    --accent-glow: rgba(16, 185, 129, 0.2);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(3, 7, 18, 0.8);
    --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: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* --- STICKY NAV --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- HERO --- */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(to bottom right, #fff 50%, #64748b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 600px;
}

.scroll-down {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    transform: scale(1.1);
}

.scroll-down i {
    width: 32px;
    height: 32px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--border), transparent);
}

.hero-image {
    width: 100%;
    border-radius: 23px;
    display: block;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* --- BUTTONS --- */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}

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

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

/* --- SECTIONS --- */
section {
    padding: 8rem 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

/* --- SOLUTIONS GRID --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(17, 24, 39, 0.8);
}

.solution-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 2rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-secondary);
}

/* --- HISTORY --- */
.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- MISSION / VISION / VALUES --- */
.grid-mvv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mvv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
}

.mvv-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.05);
}

.value-item strong {
    display: block;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- CONTACT SECTION (EXCLUSIVE) --- */
.contact-exclusive {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 6rem 3rem;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-exclusive h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-exclusive p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exclusive-cta {
    margin-bottom: 3.5rem;
}

.contact-button-exclusive {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: var(--transition);
}

.contact-button-exclusive i {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-button-exclusive:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.exclusive-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.subtle-link,
.location-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.subtle-link:hover {
    color: var(--accent);
}

.subtle-link i,
.location-text i {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

/* --- FOOTER --- */
footer {
    padding: 4rem 0;
    background: #000;
    border-top: 1px solid var(--border);
    margin-top: 6rem;
}

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

.footer-header {
    margin-bottom: 2rem;
}

.footer-header .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 2rem auto;
    opacity: 0.5;
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {

    .hero-layout,
    .history-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .section-header {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

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

    .hero {
        padding-top: 8rem;
    }
}

/* Animation class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}