/* Clean Dark Theme - Focus on Content */

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

:root {
    --bg: #1a1a1a;
    --bg-secondary: #252525;
    --text: #e0e0e0;
    --text-dim: #a0a0a0;
    --accent: #10b981;
    --border: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

/* Header & Navigation */
header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

header ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
}

header a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

header a:hover {
    color: var(--text);
}

/* Main Content */
main {
    min-height: 80vh;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

/* Anchor link offset for sticky header */
section[id] {
    scroll-margin-top: 6rem;
}

section:last-child {
    border-bottom: none;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dim);
}

p {
    margin-bottom: 1.5rem;
}

strong {
    color: var(--text);
    font-weight: 600;
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
}

/* Hero Section */
.hero {
    background: var(--bg-secondary);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    margin: 0.5rem;
}

.cta-button:hover {
    opacity: 0.9;
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards - Remove background boxes for newspaper style */
.service-card, .problem-item {
    margin-bottom: 3rem;
}

.hidden-cost {
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--accent);
}

/* Testimonials */
blockquote {
    padding-left: 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--accent);
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
}

footer nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

footer a {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    header ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
