:root {
    --primary: #2563eb;
    --secondary: #1d4ed8;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --success: #25D366;
}

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    margin: 0;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

header {
    background: var(--dark);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.header-title {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

.text-center {
    text-align: center;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* CARD */
.card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

/* ICON */
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* PRICE */
.price-card {
    text-align: center;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin: 1rem 0;
}

/* WORKFLOW */
.workflow {
    background: white;
    padding: 3rem 2rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin: 3rem 0;
}

.step {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

/* SHOWCASE */
.showcase-card {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: white;
    border-left: 5px solid var(--primary);
}

.showcase-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-list {
    padding-left: 1.2rem;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.9rem 1.6rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.2s ease;
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* CTA BOX */
.cta-box {
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 3rem;
    border-radius: 14px;
    margin-top: 4rem;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    margin-top: 1rem;
    transition: 0.2s ease;
}

.btn-white:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* FORMULAR */

#contact-form {
    max-width: 650px;
    margin: 1rem auto;
    text-align: left;
}

#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1rem;
    margin-bottom: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: var(--text);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: 3px solid rgba(255,255,255,0.3);
}

#contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

#contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    background: var(--dark);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.2s ease;
}

#contact-form button:hover {
    transform: translateY(-2px);
    background: #020617;
}

#msg {
    margin-top: 1.2rem;
    text-align: center;
    font-weight: 600;
    color: rgb(252, 255, 246);
}

.contact-alternatives {
    margin-top: 2rem;
}

/* DATENSCHUTZ CHECKBOX */


/* Hebt das 'display: block' aus Ihrem Haupt-CSS auf */
#contact-form .privacy-checkbox label {
    display: inline !important; 
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Verhindert das 'width: 100%' und die großen Abstände */
#contact-form .privacy-checkbox input[type="checkbox"] {
    width: auto !important;
    margin: 0 0.2rem 0 0 !important;
    display: inline-block;
    vertical-align: middle;
    scale: 1.4;
}

/* Verkleinert den Abstand der gesamten Box zum Button */
.privacy-checkbox {
    margin-bottom: 1.2rem;
    text-align: left;
}

#privacy label a {
    color: white;
    
}

.privacy-checkbox label a:visited {
    color: #cbd5e1; /* Ein helles Grau, damit man sieht, dass er besucht wurde */
}




/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--success);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.whatsapp-btn:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
}

/* SMALL TEXT */
.small-print {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 2rem;
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 4rem 1rem;
    background: #f1f5f9;
    color: var(--muted);
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
}

/* LEGAL */
.legal-section {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.legal-link {
    color: var(--primary);
    text-decoration: none;
}

.legal-link:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .header-title {
        font-size: 2.2rem;
    }

    .cta-box {
        padding: 2rem;
    }
}