:root {
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #666666;
    --accent-green: #10b981;
    --font-main: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Image Cards */
.image-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    /* No gap for seamless look, or small gap if preferred */
}

.image-card {
    background: #171717;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-card-content {
    padding: 3rem;
    text-align: left;
    flex-grow: 1;
}

.image-card h3 {
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.image-card p {
    color: #a3a3a3;
    font-size: 1rem;
    line-height: 1.5;
}

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



/* Floating Header */
.floating-header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 100px;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    color: #000000;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-header {
    background: #000000;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn-header:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    padding-top: 200px;
    padding-bottom: 100px;
}

.hero-tagline {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.hero-headline {
    font-family: var(--font-main);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 4rem;
    max-width: 1000px;
}

.hero-headline .text-muted {
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .floating-header {
        top: 1rem;
        padding: 0.8rem 1.5rem;
        width: 95%;
    }

    .nav-links {
        display: none;
    }
}

/* Stats */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.stat-value {
    font-family: var(--font-main);
    font-size: 6rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-desc {
    color: #a3a3a3;
    font-size: 1rem;
    max-width: 200px;
    line-height: 1.4;
}

/* Content Section */
.content-section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-main);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-green);
}

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

.feature-item h3 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.1) 100%);
}

.cta-title {
    font-family: var(--font-main);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    background: var(--text-white);
    color: #000000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.btn-large:hover {
    transform: scale(1.05);
}

.simple-footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.inter-section-cta {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--text-gray);
    color: var(--text-gray);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-2px);
}