/* 1. Reset & Global Styles */
body,
html {
    margin: 0;
    padding: 0;
    background-color: #1E1E1E;
    color: #D4D4D4;
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #9CDCFE;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 32px 100px;
}

section {
    margin-bottom: 80px;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h1 {
    font-size: 2.3em;
    color: #4EC9B0;
    margin: 0 0 20px;
}

h2 {
    font-size: 1.8em;
    color: #9CDCFE;
    margin-bottom: 20px;
}

h2::before {
    content: "> ";
    color: #4EC9B0;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 10px;
}

ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    color: #4EC9B0;
    font-weight: 700;
}

footer {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.85em;
    color: #888;
    line-height: 1.6;
}

footer p {
    margin: 5px 0;
}

footer .footer-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px 60px;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    background: #4EC9B0;
    color: #1E1E1E;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #3ba38d;
}

.cursor {
    display: inline-block;
    background-color: #D4D4D4;
    animation: blink 1s step-end infinite;
    margin-left: 5px;
    width: 10px;
    height: 2.5rem;
    vertical-align: bottom;
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* 2. Homepage */
body.home-page .container {
    max-width: 800px;
    padding: 60px 25px;
}

body.home-page header {
    text-align: center;
    margin-bottom: 100px;
}

body.home-page .cta-section {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

body.home-page h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

body.home-page header .subtitle {
    font-size: 1.15em;
    color: #9CDCFE;
    margin-bottom: 30px;
}

body.home-page header .keywords {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
}

body.home-page header .keywords span {
    padding: 5px 10px;
    border: 1px solid #555;
    border-radius: 4px;
}

body.home-page footer {
    margin-top: 100px;
}

/* 3. Services & Pricing Page */
body.services-page header {
    margin-bottom: 60px;
}

body.services-page header p {
    margin-bottom: 10px;
}

body.services-page h2 {
    font-size: 1.9em;
    margin-bottom: 25px;
}

body.services-page section {
    margin-bottom: 70px;
}

body.services-page .nav-links {
    display: flex;
    gap: 16px;
    font-size: 0.95em;
}

body.services-page .services-list {
    display: grid;
    gap: 35px;
}

body.services-page .service-item h3 {
    font-size: 1.4em;
    color: #DCDCAA;
    margin-bottom: 12px;
}

body.services-page .service-item p {
    margin-bottom: 12px;
}

body.services-page .pricing-grid {
    display: grid;
    gap: 30px;
}

body.services-page .pricing-card {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 32px 28px;
    background: rgba(78, 201, 176, 0.08);
}

body.services-page .pricing-card h3 {
    font-size: 1.3em;
    color: #4EC9B0;
    margin-bottom: 10px;
}

body.services-page .price {
    font-size: 1.5em;
    font-weight: 700;
    color: #9CDCFE;
    margin-bottom: 18px;
}

body.services-page .card-description {
    margin-bottom: 20px;
}

body.services-page .cta-link {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    border: 1px solid #4EC9B0;
    color: #4EC9B0;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

body.services-page .cta-link:hover {
    background: #4EC9B0;
    color: #1E1E1E;
}

body.services-page footer {
    margin-top: 70px;
}

@media (min-width: 720px) {
    body.services-page .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 4. Terms Page */
body.terms-page .container {
    max-width: 760px;
    padding: 60px 28px 120px;
}

body.terms-page footer .footer-content {
    max-width: 760px;
    padding: 0 28px 60px;
}

body.terms-page h1 {
    font-size: 2em;
}

body.terms-page p {
    margin-bottom: 16px;
}

