@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    --primary: #1a1a1a;
    --secondary: #2d2d2d;
    --accent: #c5a059;
    --bg: #fdfdfd;
    --text: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass: rgba(255, 255, 255, 0.8);
    --border: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: 2000;
    border-bottom: 1px solid var(--border);
}

.brand {
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-map {
    background: var(--primary);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-map:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline {
    border: 1px solid white;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    padding: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Stats / ROI table style */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.stats-table th, .stats-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.stats-table th {
    background: #f9f9f9;
    font-weight: 600;
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Roadmap */
.roadmap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roadmap-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.phase {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
    min-width: 100px;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 60px 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

footer .brand {
    color: white;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }
    .nav-links {
        display: none;
    }
    section {
        padding: 60px 20px;
    }
}
