:root {
    --primary: #0087dc;
    --primary-dark: #005ea2;
    --accent: #e5eef5;
    --text: #1a202c;
    --text-muted: #4a5568;
    --white: #ffffff;
    --bg: #f8fafc;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 850px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0087dc 0%, #005ea2 100%);
    color: var(--white);
    padding: 100px 0 130px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 35px;
    line-height: 1.1;
}

.scroll-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* Card Styling */
.card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 10;
    overflow: hidden; /* Ensures video/content respects border radius */
}

/* Updated Video Section - Full Width */
.video-section {
    padding: 0;
    margin-top: -60px; /* Overlap effect */
    background: #000;
    line-height: 0; /* Removes tiny gap at bottom of video */
}

.video-container {
    width: 100%;
    background: #000;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Optional: adjust if you want a specific frame size */
    object-fit: contain; /* Keeps vertical video centered with black bars on sides */
}

/* Campaign Text Body */
.campaign-content { padding: 50px; }
.lead { font-size: 1.3rem; font-weight: 600; color: var(--primary-dark); line-height: 1.5; margin-bottom: 25px; }
.campaign-content p { margin-bottom: 20px; }

.highlight-quote {
    background: #f1f7ff;
    border-left: 6px solid var(--primary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.1rem;
}

/* Form Styling */
.petition-card { padding: 50px; border-top: 6px solid var(--primary); }
.form-header { margin-bottom: 30px; }
.accent-line { width: 60px; height: 4px; background: var(--primary); margin-top: 10px; }

.petition-statement {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 35px;
    font-weight: 600;
    text-align: center;
}

.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 25px; }
.input-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--text-muted); }

input[type="text"], input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
}

.consent-box { background: #f1f5f9; padding: 25px; border-radius: 12px; margin-bottom: 35px; }
.checkbox-row { display: flex; gap: 15px; }
.checkbox-row label { font-size: 0.95rem; font-weight: 600; cursor: pointer; }

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Footer Section */
.site-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.footer-legal .imprint { font-size: 0.85rem; line-height: 1.8; opacity: 0.8; }
.footer-meta { text-align: right; }
.footer-meta a { color: white; text-decoration: none; font-weight: 600; }
.copyright { opacity: 0.5; font-size: 0.8rem; margin-top: 5px; }

/* Responsive */
@media (max-width: 768px) {
    .campaign-content, .petition-card { padding: 30px 20px; }
    .input-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-meta { text-align: center; }
}

/* Success Message */
.hidden { display: none; }
.success-card { padding: 60px; text-align: center; }
.success-icon { width: 80px; height: 80px; background: #c6f6d5; color: #2f855a; font-size: 40px; line-height: 80px; border-radius: 50%; margin: 0 auto 20px; }