@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Merriweather:wght@700;900&display=swap");

:root {
  --font-sans: "Inter";
  --font-serif: "Merriweather";
  --ink: #132b3a;
  --muted: #5e6f79;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #d9e0e2;
  --blue: #1476a8;
  --blue-dark: #0c4c6e;
  --cyan: #dceff5;
  --amber: #c98c2c;
  --amber-soft: #f7edd9;
  --green: #2b7a65;
  --shadow: 0 20px 70px rgba(19, 43, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

.important-modal[hidden] {
  display: none;
}

.important-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.important-modal.is-visible {
  opacity: 1;
}

.important-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 31, 42, 0.74);
  backdrop-filter: blur(5px);
}

.important-modal__panel {
  position: relative;
  width: min(52vw, 720px);
  min-width: 560px;
  max-height: min(88vh, 820px);
  overflow-y: auto;
  padding: 38px 42px 32px;
  border: 1px solid rgba(190, 45, 45, 0.22);
  border-top: 7px solid #b72d2d;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 20, 28, 0.32);
  transform: translateY(14px) scale(0.985);
  transition: transform 180ms ease;
}

.important-modal.is-visible .important-modal__panel {
  transform: translateY(0) scale(1);
}

.important-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f2f5f5;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.important-modal__close:hover,
.important-modal__close:focus-visible {
  background: #e5ecec;
}

.important-modal__badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #b72d2d;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.important-modal__eyebrow {
  margin: 0 0 5px;
  color: #a52323;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.important-modal h2 {
  max-width: 650px;
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.08;
}

.important-modal__content p {
  margin: 0 0 15px;
  color: var(--muted);
  line-height: 1.6;
}

.important-modal__lead {
  padding: 16px 18px;
  border-left: 4px solid #b72d2d;
  background: #fff4f2;
  color: var(--ink) !important;
}

.important-modal__steps {
  margin: 20px 0;
  padding: 20px 22px;
  border-radius: 12px;
  background: #f3f7f6;
}

.important-modal__steps h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.important-modal__steps ol {
  margin: 0;
  padding-left: 23px;
}

.important-modal__steps li {
  margin: 9px 0;
  padding-left: 4px;
  line-height: 1.5;
}

.important-modal__note {
  margin-bottom: 0 !important;
  font-size: 14px;
}

.important-modal__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.important-modal__link {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 4px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid rgba(19, 43, 58, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.nav-contact {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.whatsapp-channel-banner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 20px;
  background: #075e54;
  color: #ffffff;
  text-align: left;
  transition: background 160ms ease;
}

.whatsapp-channel-banner:hover,
.whatsapp-channel-banner:focus-visible {
  background: #064c44;
}

.whatsapp-channel-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  object-fit: cover;
}

.whatsapp-channel-banner strong,
.whatsapp-channel-banner small {
  display: block;
  line-height: 1.25;
}

.whatsapp-channel-banner small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.whatsapp-channel-arrow {
  font-size: 22px;
  line-height: 1;
}

.whatsapp-update-card {
  width: min(100%, 620px);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 14px;
  background: #075e54;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(7, 94, 84, 0.22);
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-update-card:hover,
.whatsapp-update-card:focus-visible {
  background: #064c44;
  transform: translateY(-2px);
}

.whatsapp-update-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.whatsapp-update-card strong,
.whatsapp-update-card small {
  display: block;
  line-height: 1.3;
}

.whatsapp-update-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.whatsapp-update-arrow {
  margin-left: auto;
  font-size: 24px;
}

.trust-whatsapp {
  display: block;
  color: inherit;
}

.trust-whatsapp:hover strong,
.trust-whatsapp:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 82% 12%, rgba(20, 118, 168, 0.18), transparent 27%),
    linear-gradient(135deg, #f7f5ef 0%, #eef4f3 100%);
}

.hero .container {
  width: min(1240px, calc(100% - 40px));
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -240px;
  border: 70px solid rgba(201, 140, 44, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(600px, 780px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-videos {
  display: grid;
  grid-template-columns: minmax(0, 2.9fr) minmax(175px, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.hero-video {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  align-self: start;
  border-radius: 18px;
  background: #071a25;
  box-shadow: 0 20px 46px rgba(19, 43, 58, 0.2);
}

.hero-video-portrait .video-player {
  aspect-ratio: 9 / 16;
}

.hero-video-portrait .hero-video-caption {
  padding-inline: 14px;
  font-size: 12px;
}

.hero-video-caption {
  margin: 0;
  padding: 16px 20px 18px;
  background: #071a25;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-copy h1 {
  max-width: 100%;
  font-size: clamp(34px, 3.4vw, 46px);
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-copy .hero-lead {
  max-width: 520px;
  font-size: clamp(17px, 1.55vw, 19px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-serif), Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  margin: 0;
  font-size: 26px;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #3e5663;
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(12, 76, 110, 0.2);
}

.button-secondary {
  border: 1px solid rgba(19, 43, 58, 0.28);
  background: rgba(255, 255, 255, 0.5);
}

.status-card {
  padding: 30px;
  border: 1px solid rgba(19, 43, 58, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.status-card h2 {
  margin-top: 16px;
  font-size: 29px;
}

.status-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.status-card li {
  margin-bottom: 8px;
}

.status-card p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.status-chip,
.news-status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: #79531a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.intro-section {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.prose {
  color: var(--muted);
  font-size: 18px;
}

.prose p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.category-nav {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 46px;
  padding: 14px 0;
  background: var(--paper);
  scrollbar-width: thin;
}

.category-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.faq-groups {
  display: grid;
  gap: 56px;
}

.faq-group {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  scroll-margin-top: 150px;
}

.faq-group h3 {
  position: sticky;
  top: 150px;
  align-self: start;
  color: var(--blue-dark);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 58px 22px 0;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--blue-dark);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 64px 22px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.action-section {
  background: var(--cyan);
}

.petition-section {
  background: var(--white);
}

.petition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: center;
}

.petition-lead {
  color: var(--muted);
  font-size: 18px;
}

.petition-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.petition-card h3 {
  margin-top: 18px;
}

.petition-card p {
  color: var(--muted);
}

.petition-card .button {
  width: 100%;
}

.petition-download {
  display: block;
  margin-top: 14px;
  color: var(--blue-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-section {
  background: #eef4f3;
}

.video-heading {
  max-width: 900px;
}

.video-disclaimer {
  margin-top: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
  font-size: 14px !important;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(19, 43, 58, 0.09);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #071a25;
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-content {
  padding: 24px;
}

.video-content h3 {
  font-size: 23px;
}

.video-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(12, 76, 110, 0.18);
}

.steps li:first-child {
  padding-top: 0;
}

.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
}

.steps p {
  margin: 3px 0 0;
  color: var(--muted);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.contact-section .eyebrow {
  color: #91d2e5;
}

.contact-lead {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.contact-details {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  padding: 30px;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #bdc9ce;
  border-radius: 7px;
  background: #fbfcfc;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(20, 118, 168, 0.2);
  border-color: var(--blue);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 7px;
  background: var(--cyan);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.form-status.error {
  background: #fae7e4;
  color: #8b2f26;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 38px 0;
  background: #0b202c;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid strong {
  color: var(--white);
}

.news-hero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, #f7f5ef, #e8f2f3);
}

.news-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.news-list {
  display: grid;
  gap: 24px;
}

.news-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 38px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.news-meta {
  color: var(--muted);
  font-size: 13px;
}

.news-date {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
}

.news-content h2 {
  font-size: 32px;
}

.news-content p {
  color: var(--muted);
}

.news-content ul {
  padding-left: 20px;
  color: var(--muted);
}

.news-note {
  margin-top: 52px;
  padding: 24px;
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-videos {
    max-width: 780px;
  }

  .hero-copy {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .important-modal__panel {
    width: min(78vw, 680px);
    min-width: 0;
  }

  .hero-grid,
  .split,
  .petition-grid,
  .video-grid,
  .faq-group,
  .action-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero {
    padding-top: 66px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .faq-group h3 {
    position: static;
  }

  .site-nav a:not(.nav-contact) {
    display: none;
  }
}

@media (max-width: 640px) {
  .important-modal {
    align-items: end;
    padding: 0;
  }

  .important-modal__panel {
    width: 100vw;
    max-width: none;
    max-height: 100dvh;
    min-height: min(100dvh, 720px);
    padding: 28px 20px 22px;
    border-radius: 0;
  }

  .important-modal__badge {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    font-size: 25px;
  }

  .important-modal h2 {
    padding-right: 25px;
    font-size: 27px;
  }

  .important-modal__steps {
    padding: 16px 17px;
  }

  .important-modal__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .important-modal__actions .button,
  .important-modal__link {
    width: 100%;
    text-align: center;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .nav-contact {
    padding: 8px 12px;
    font-size: 12px;
  }

  .whatsapp-channel-banner {
    min-height: 54px;
    padding-inline: 14px;
  }

  .whatsapp-channel-banner strong {
    font-size: 14px;
  }

  .hero {
    padding: 52px 0;
  }

  .hero-videos {
    grid-template-columns: 1fr;
  }

  .hero-video-portrait {
    width: min(72vw, 270px);
    justify-self: center;
  }

  h1 {
    font-size: 45px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .category-nav {
    top: 66px;
  }

  .faq-list summary {
    padding-right: 50px;
  }

  .faq-answer {
    padding-right: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
