@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #051C2C;
    /* Deep Navy Blue */
    --secondary: #008080;
    /* Teal/Greenish */
    --accent: #00C896;
    /* Brighter Teal for highlights */
    --text-light: #FFFFFF;
    --text-dark: #051C2C;
    --bg-light: #F8FAFC;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Background Patterns */
.bg-navy {
    background-color: var(--primary);
    color: var(--text-light);
}

.bg-pattern {
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 128, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 150, 0.1) 0%, transparent 50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.3);
}

/* List Styles */
.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Quote Styles */
.quote-container {
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    font-size: 2.5rem;
    font-weight: 300;
    font-family: var(--font-heading);
    position: relative;
    margin-bottom: 30px;
}

.quote-author {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
}

/* Feature Boxes */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 4px;
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Biography */
.bio-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Roadmap / Modules */
.roadmap {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
}

.roadmap-item {
    padding: 40px;
    background: white;
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
    border-left: 6px solid var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.roadmap-number {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 4px solid white;
}

/* Price Card */
.price-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    border-top: 8px solid var(--secondary);
}

.price-card p,
.price-card li {
    color: var(--text-dark);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .bio-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .roadmap-number {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 20px;
    }
}