:root {
    --navy: #003399;
    --navy-dark: #002673;
    --indigo: #5c5be5;
    --text: #1f2937;
    --text-light: #4b5563;
    --bg: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --accent-red: #b91c1c;
}

* { 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;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 850px; margin: 0 auto; padding: 0 24px; }

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background: var(--navy);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    background-image: radial-gradient(circle at 20% 30%, rgba(92, 91, 229, 0.2) 0%, transparent 50%);
}

.hero-label {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1;
    margin-bottom: 35px;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.6);
}

.hero-scroll-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.hero-scroll-btn:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-2px);
}

/* --- CAMPAIGN TEXT STYLING --- */
.campaign-paper {
    background: white;
    padding: 60px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.intro-headline {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 24px;
}

.sub-intro { font-size: 1.2rem; color: var(--text-light); margin-bottom: 10px; }

.impact-statement {
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: -0.03em;
    margin-bottom: 35px;
    color: var(--text);
}

.text-block p { margin-bottom: 22px; color: var(--text-light); font-size: 1.1rem; }

.interrogative {
    font-weight: 800;
    color: var(--text) !important;
    font-size: 1.25rem !important;
}

.callout-box {
    background: #fff5f5;
    border-left: 5px solid var(--accent-red);
    padding: 24px 32px;
    margin: 45px 0;
}

.callout-box p {
    font-weight: 900;
    font-size: 1.7rem;
    color: #1a1a1a;
    margin: 0;
}

.principle-section { margin: 45px 0; }
.small-label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; color: var(--indigo); margin-bottom: 12px; letter-spacing: 0.1em; }

.principle-section h4 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Checklist Styling */
.custom-checklist { list-style: none; margin-top: 25px; }
.custom-checklist li {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.check-icon {
    width: 26px;
    height: 26px;
    background-color: #f0f0ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid var(--indigo);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.custom-checklist p { font-weight: 600; color: var(--text); font-size: 1.05rem; }

.conclusion { margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border); }
.final-quote { font-style: italic; margin: 30px 0; font-size: 1.2rem; color: var(--text-light); }
.footer-slogan {
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1;
}

/* --- PREMIUM PETITION CARD --- */
.petition-card-premium {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    margin-bottom: 50px;
    border: 1px solid var(--border);
}

.petition-header { margin-bottom: 40px; }
.petition-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 15px; }
.accent-line { width: 60px; height: 5px; background: var(--indigo); border-radius: 3px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 24px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }

.field input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.2s;
    background: #fdfdfd;
}

.field input:focus {
    outline: none;
    border-color: var(--indigo);
    background: white;
    box-shadow: 0 0 0 4px rgba(92, 91, 229, 0.1);
}

.checkbox-area { margin: 35px 0; }
.checkbox-row {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.checkbox-row input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-row label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
}

.disclaimer-inline {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

.disclaimer-inline a { color: var(--indigo); text-decoration: underline; }

.submit-btn-premium {
    width: 100%;
    padding: 22px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 0 var(--navy-dark);
}

.submit-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--navy-dark);
    background: #002d85;
}

.submit-btn-premium:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 var(--navy-dark);
}

.privacy-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 25px;
}

.privacy-footer a { color: var(--text); font-weight: 700; }

/* --- MP ENDORSEMENT --- */
.mp-section-bottom { margin-bottom: 100px; }
.mp-card-premium {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.mp-grid { display: flex; align-items: center; gap: 35px; }
.mp-img-large {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%; /* This shifts the image to focus on the face */
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.mp-tag { font-size: 0.75rem; text-transform: uppercase; font-weight: 800; color: var(--indigo); letter-spacing: 0.15em; }
.mp-text h3 { color: var(--navy); font-size: 1.6rem; font-weight: 900; margin: 6px 0; }
.mp-text p { font-size: 1rem; color: var(--text-light); }

/* --- FOOTER --- */
footer {
    background: #111;
    color: #999;
    padding: 80px 0;
    text-align: center;
}
.saern-link a { color: var(--white); font-weight: bold; text-decoration: none; }
footer strong { color: white; display: block; margin-bottom: 15px; font-size: 1.1rem; }

.imprint {
    font-size: 0.8rem;
    max-width: 650px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* --- UTILITIES & RESPONSIVE --- */
.hidden { display: none; }

#success { text-align: center; padding: 40px 0; }
.success-icon-wrap { width: 70px; height: 70px; background: #10b981; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 35px; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .campaign-paper, .petition-card-premium { padding: 35px 20px; }
    .impact-statement { font-size: 2.2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .mp-grid { flex-direction: column; text-align: center; gap: 20px; }
    .footer-slogan { font-size: 1.8rem; }
}