@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    --primary: #00AEEF;
    --primary-dark: #0087B7;
    --bg: #121212;
    --card-bg: #1E1E1E;
    --text: #FFFFFF;
    --text-muted: #B0B0B0;
    --accent: #0087B7;
}

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

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

header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
    padding: 6px 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #001f3f 0%, var(--bg) 100%);
}

.hero h1 {
    font-size: 3rem;
    color: var(--text);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    font-family: inherit;
}

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

/* Store Cards */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--primary);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.features li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--primary);
    color: #000;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Guide Station Section */
.guide-station {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.guide-station-divider {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 60px 0 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.guide-station-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.guide-station-img img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    display: block;
}

.guide-station-copy .badge {
    margin-bottom: 16px;
}

.guide-station-copy h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 12px;
}

.guide-station-copy .lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.guide-features {
    list-style: none;
    margin-bottom: 32px;
}

.guide-features li {
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid #222;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.guide-features li:last-child {
    border-bottom: none;
}

.guide-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.guide-features li strong {
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

@media (max-width: 600px) {
    header {
        flex-wrap: wrap;
        padding: 15px;
        gap: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 8px 0;
    }

    nav.open {
        display: flex;
    }

    nav a {
        margin-left: 0;
        padding: 10px 4px;
        font-size: 0.9rem;
        border-bottom: 1px solid #222;
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav a.btn {
        margin-top: 8px;
        text-align: center;
        border-bottom: none;
        padding: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .card {
        padding: 30px 20px;
    }

    .guide-station-inner {
        grid-template-columns: 1fr;
    }
}
