
/* maschl.marketing — Clean Stylesheet */
:root {
    --navy: #111827;
    --navy-light: #1f2937;
    --gray-dark: #374151;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --blue: #3b82f6;
    --blue-dark: #1e40af;
    --bg: #0f172a;
    --surface: #1e293b;
    --text: #f1f5f9;
    --text-muted: #cbd5e1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }
button { cursor: pointer; }

/* NAVBAR */
.navbar {
    background: var(--navy);
    border-bottom: 1px solid var(--gray-dark);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--blue); }

/* MAIN SECTIONS */
main { min-height: 100vh; }
section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--gray-dark);
}
section.section-dark { background: var(--surface); }

h1, h2, h3 { font-weight: 700; margin-bottom: 1rem; }
h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }

/* HERO */
.hero {
    padding: 8rem 0;
    text-align: center;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero p { font-size: 1.1rem; margin-bottom: 2rem; }
.hero a { display: inline-block; }

/* CTA BUTTON */
.btn-primary {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); }

/* GRID */
.services-grid, .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.services-grid article {
    background: var(--surface);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--gray-dark);
}
.services-grid h3 { color: var(--white); }

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.portfolio-grid article {
    background: var(--surface);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--gray-dark);
}
.portfolio-grid h3 { color: var(--white); font-size: 1.5rem; }
.portfolio-grid a { display: inline-block; margin-top: 1rem; }

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.tier-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--gray-dark);
    text-align: center;
}
.tier-card--featured {
    background: linear-gradient(135deg, var(--blue), #1e40af);
    border-color: var(--blue);
    transform: scale(1.05);
}
.tier-card h3 { color: var(--white); font-size: 1.5rem; }
.tier-price { margin: 1.5rem 0; }
.price-value { font-size: 2.5rem; font-weight: 700; color: var(--blue); }
.tier-card--featured .price-value { color: var(--white); }
.price-label { display: block; color: var(--text-muted); font-size: 0.9rem; }
.tier-features { text-align: left; list-style: none; margin: 2rem 0; }
.tier-features li { padding: 0.5rem 0; }
.tier-card a { display: block; margin-top: 2rem; }

/* FAQ */
.faq-grid { margin: 3rem 0; }
details {
    background: var(--surface);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-dark);
}
summary { cursor: pointer; font-weight: 600; color: var(--white); }
summary:hover { color: var(--blue); }
details[open] summary { margin-bottom: 1rem; }

/* CONTACT FORM */
#contact-form {
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
#contact-form div {
    display: flex;
    flex-direction: column;
}
label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}
input, select, textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-dark);
    border-radius: 6px;
    background: var(--navy-light);
    color: var(--text);
    font-size: 1rem;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--blue);
}
.form-note { font-size: 0.9rem; color: var(--text-muted); text-align: center; }

/* FOOTER */
.footer {
    background: var(--navy);
    border-top: 1px solid var(--gray-dark);
    padding: 4rem 0 2rem;
}
.footer-content { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.footer-section h4 { color: var(--white); margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section a { color: var(--text-muted); }
.footer-section a:hover { color: var(--blue); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .nav-links { gap: 1rem; font-size: 0.9rem; }
    section { padding: 3rem 0; }
    .tier-card--featured { transform: scale(1); }
}
