* {
    box-sizing: border-box;
}

html {
    font-family: "Roboto", sans-serif;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #ffffff;
}

main {
    margin: 10px
}

.site-header {
    background: #fff;
    padding: 30px 40px 14px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}

.logo.admd {
    height: 90px;
    width: auto;
    display: block;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 150px);
    padding: 80px 20px;
    background: linear-gradient(180deg, #f5f9ff 0%, #eef5fc 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(32, 87, 162, 0.05);
    z-index: 0;
}

.hero::before {
    width: 500px;
    height: 500px;
    top: -220px;
    right: -180px;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 50% 50% 0 0;
}

.hero-overlay {
    position: relative;
    width: 100%;
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(32, 87, 162, 0.1);
    color: #2057A2;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: #183F77;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-text {
    max-width: 700px;
    margin: 32px auto 48px;
    color: #5c6773;
    font-size: 1.2rem;
    line-height: 1.8;
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.petition-text {
    padding: 80px 0;
}

.petition-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 18px 45px rgba(32, 87, 162, 0.08);
    border-left: 6px solid #2057A2;
}

.petition-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #2057A2;
    font-weight: 700;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.final-call {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2057A2, #183F77);
    color: white;
    text-align: center;
    position: relative;
}

.final-call::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 0 0 50% 50%;
}

.final-call h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
}

.lead,
.conclusion {
    max-width: 800px;
    margin: auto auto 30px auto;
    line-height: 1.8;
    font-size: 1.15rem;
}

.votes {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0 50px;
    flex-wrap: wrap;
}

.vote {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px 32px;
    min-width: 130px;
}

.vote span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.vote p {
    margin-top: 6px;
    opacity: .85;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow: hidden;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 65, 0.55);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(92%, 560px);
  margin: 8vh auto;
  background: #fff;
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 30px 80px rgba(16, 57, 105, 0.25);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
  color: #1f5a96;
}

.modal-content h2 {
  margin: 0 0 28px;
  color: #2057a2;
  font-size: 30px;
  text-align: center;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #2057a2;
}

.form-row input, select {
  width: 100%;
  height: 48px;
  border: 1px solid #d7e4f2;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 16px;
  box-sizing: border-box;
}

.newsletter-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 22px 0;
  color: #4f5b6a;
  font-size: 15px;
}

.newsletter-row input {
  margin-top: 3px;
}

.petition-submit {
  width: 100%;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 24px;
  cursor: pointer;
}

.form-error {
    margin: 16px 0px;

    color: #c62828;

    font-size: 14px;
    font-weight: 600;

    min-height: 20px;
}

.privacy-notice {
    margin-top: 20px;

    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;

    text-align: center;
}

.petition-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

/* =========================
   LOADER
========================= */

.button-loader {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;

    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;

    animation: spin 0.8s linear infinite;
}

.button-loader {
    display: none;
}

.button-loader.active {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-height: 760px) {
    .modal-content {
        margin: 2.5vh auto;
    }
}

/* =========================
   BUTTONS
========================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 28px;

    border: none;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    cursor: pointer;

    transition: all .2s ease;
}

.button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.button-primary {
    background: #1D5183;
    color: white;
}

.button-primary:hover:not(:disabled) {
    background: #1b2f66;
    transform: translateY(-2px);
}

.button-secondary {
    background: #ff742b;
    color: white;
}

.button-secondary:hover:not(:disabled) {
    background: #C06832;
    color: #FBE793;
}

.button-full {
    width: 100%;
}

.button-link {
    border: none;
    background: transparent;

    color: #1D5183;

    font-weight: 700;
    text-decoration: underline;

    cursor: pointer;
}