:root {
  --bg: #f3f5f6;
  --white: #ffffff;
  --text: #27415a;
  --title: #173f65;
  --muted: #5c6f81;
  --line: #d8e1e8;

  --brand-blue: #164c6d;
  --brand-yellow: #ffb727;
  --brand-teal: #02bed5;
  --brand-green: #8cc544;
  --brand-green-dark: #277462;
  --brand-mint: #92d9d1;
  --brand-coral: #f4612e;

  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 30px rgba(20, 49, 74, 0.08);
  --shadow-card: 0 8px 24px rgba(20, 49, 74, 0.08);

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
}

.page-shell {
  /* max-width: 1240px; */
  margin: auto;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 37, 66, 0.84) 0%, rgba(10, 37, 66, 0.58) 36%, rgba(10, 37, 66, 0.14) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0;
  max-width: 1240px;
  margin: auto;
}

.hero-inner {
  width: min(100%, 620px);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-mint);
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 20px 0 0;
  max-width: 560px;
  font-size: clamp(1.12rem, 2vw, 1.8rem);
  line-height: 1.28;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  margin-top: 28px;
  background: var(--brand-yellow);
  color: var(--brand-blue);
}

.btn-secondary {
  background: var(--brand-green-dark);
  color: var(--white);
}

.logos-strip {
  background: #ffffff;
  border-bottom: 1px solid #edf2f5;
}

.logos-strip__inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.logos-label {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.logos-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  color: var(--brand-blue);
}

.section {
  padding: 72px 0;
}

.section-materiales {
  background: #f6f7f8;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--title);
}

.section-copy p,
.section-heading p,
.resource-card p,
.faq-item__body p {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--text);
}

.resource-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e3eaef;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.resource-card__content {
  padding: 34px 30px 30px;
}

.resource-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-green-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.resource-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--title);
}

.resource-actions {
  margin: 26px 0 18px;
}

.resource-note {
  margin-bottom: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.section-faq {
  background: #ffffff;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 32px;
}

.faq-block-title {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--title);
}

.faq-subtitle {
  margin: 34px 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-green-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list + .faq-subtitle,
.faq-list + .faq-block-title {
  margin-top: 38px;
}

.section-faq .faq-item {
  border: 1px solid #e2e8ee;
  border-radius: 18px;
  background: #fafbfc;
  overflow: hidden;
}

.section-faq .faq-item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: #fff;
  color: var(--title);
  text-align: left;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 600;
}

.section-faq .faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.section-faq .faq-icon::before,
.section-faq .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--brand-blue);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.section-faq .faq-icon::before {
  width: 16px;
  height: 2px;
}

.section-faq .faq-icon::after {
  width: 2px;
  height: 16px;
}

.section-faq .faq-item__body {
  display: none;
  background: #ffffff;
  padding: 0 24px 22px;
}

.section-faq .faq-item.active .faq-item__body {
  display: block;
}

.section-faq .faq-item.active .faq-icon::after {
  opacity: 0;
}

.section-faq .faq-item__body p:last-child {
  margin-bottom: 0;
}

.section-faq .faq-item__body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.section-faq .faq-item__body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.footer {
  background: #f6f7f8;
  border-top: 1px solid #edf2f5;
}

.footer-sponsors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 28px 0;
}

.footer-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-logo--ukpact {
  height: 40px;
}

.footer-logo--fip {
  height: 28px;
}

.footer-logo--meliquina {
  height: 40px;
}

.footer-logo--connect {
  height: 100px;
  transform: scale(1.2);
  transform-origin: left center;

  mix-blend-mode: multiply;
}

.logos-list--footer .logo-item {
  background: transparent;
}

@media (max-width: 991px) {
  .page-shell {
    margin: 0;
    border-radius: 0;
  }

  .hero {
    min-height: 520px;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .resource-card {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    min-height: 470px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 37, 66, 0.72) 0%, rgba(10, 37, 66, 0.58) 52%, rgba(10, 37, 66, 0.42) 100%);
  }

  .hero-content {
    padding: 48px 32px;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .logos-strip__inner,
  .footer-inner {
    gap: 14px;
  }

 .faq-block-title {
    margin-bottom: 14px;
  }

  .faq-subtitle {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .section-faq .faq-item__header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-faq .faq-item__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .resource-card__content {
    padding: 24px 20px;
  }

  .footer-sponsors {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-logos {
    gap: 16px;
  }

  .footer-logo--ukpact {
    height: 32px;
  }

  .footer-logo--fip {
    height: 22px;
  }

  .footer-logo--meliquina {
    height: 32px;
  }

  .footer-logo--connect {
    height: 28px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 420px;
  }

  .btn {
    width: 100%;
  }

  .logo-item {
    min-width: 0;
    width: calc(50% - 9px);
  }

  .faq-group__header {
    font-size: 1.06rem;
  }

  .faq-item__header {
    font-size: 1rem;
  }

   .footer-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
  }

  .footer-logo {
    width: 100%;
    max-height: 32px;
    object-fit: contain;
    object-position: left center;
  }
}