/* Import a clean, modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

/* Color Palette & Variables */
:root {
    --bg-color: #000000;
    --card-bg: #111111;
    --accent-color: #42e3f5; /* Cyan from his mockups */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- NAVIGATION --- */
header {
    background-color: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1200px;
    margin: auto;
}

.logo h2 {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem; 
    text-transform: uppercase;
    white-space: nowrap; 
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevents the text from stacking into two lines */
    flex-shrink: 0; /* Prevents the button box from being squished */
}

.nav-cta:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 8rem 5%;
    background: radial-gradient(circle at center top, #1a2a2e 0%, #000 70%);
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

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

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(66, 227, 245, 0.4);
}

/* --- COMMON SECTION STYLES --- */
section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: auto;
}

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

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

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

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

.step-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.step-card p {
    color: var(--text-muted);
}

/* --- TRANSFORMATION GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #222;
    transition: border-color 0.3s;
    /* This creates a nice placeholder look until you upload real images */
    min-height: 250px; 
    background-color: #1a1a1a;
}

.gallery-item img:hover {
    border-color: var(--accent-color);
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background-color: var(--card-bg);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* --- CONTACT SECTION --- */
.form-wrapper {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    max-width: 700px;
    margin: auto;
    border: 1px solid #222;
}

/* --- FOOTER --- */
footer {
    background-color: #050505;
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid #222;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
}

.social-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--text-main);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 4rem 5%;
    }
}
