/* Główny arkusz stylów jest kopiowany bezpośrednio, bez kosztownego PostCSS. */
:root {
  --navy: #0a4970;
  --navy-deep: #062d48;
  --navy-ink: #071d2b;
  --red: #ea4335;
  --red-dark: #cf352a;
  --ink: #12101f;
  --muted: #5f6973;
  --cloud: #f2f5f7;
  --line: #dfe6ea;
  --paper: #ffffff;
  --cream: #f7f3ea;
  --gold: #d99b30;
  --mint: #32a890;
  --violet: #7b67c8;
  --radius: 26px;
  --shadow: 0 22px 60px rgba(6, 45, 72, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Montserrat", Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.eyebrow,
.button,
.section-kicker {
  font-family: "Montserrat", Arial, sans-serif;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: white;
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 86px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-deep);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(6, 45, 72, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.22em;
  font-weight: 600;
  white-space: nowrap;
}

.brand-logo-link {
  align-items: flex-start;
  letter-spacing: 0;
}

.brand-logo-image {
  display: block;
  width: 172px;
  height: auto;
}

.brand small {
  margin: 6px 0 0 2px;
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5em;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button span {
  font-size: 18px;
}

.button-header {
  min-height: 46px;
  padding-inline: 22px;
  background: var(--red);
  color: white;
  box-shadow: 0 8px 24px rgba(234, 67, 53, 0.28);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 30px rgba(234, 67, 53, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-outline {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--navy-deep);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 34, 54, 0.97) 0%, rgba(4, 34, 54, 0.88) 47%, rgba(4, 34, 54, 0.25) 78%),
    url("https://images.unsplash.com/photo-1686293601641-46d7defc668e?auto=format&fit=crop&fm=jpg&q=84&w=2200") center/cover;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(6, 45, 72, 0.42));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 630px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 70px;
  padding: 70px 0 132px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin-bottom: 24px;
  color: white;
  font-size: clamp(52px, 6.3vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.058em;
  font-weight: 800;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy > p {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 5px;
}

.hero-aside {
  align-self: end;
  margin-bottom: 80px;
}

.city-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow);
}

.city-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.city-card strong,
.city-card small {
  display: block;
}

.city-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.city-card small {
  margin-top: 10px;
  color: var(--muted);
}

.hero-micro {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 14px;
  padding: 22px 24px;
  background: var(--red);
  border-radius: 0 0 20px 20px;
}

.hero-micro > span {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.hero-micro strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
}

.hero-micro i {
  display: none;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 48px));
  min-height: 132px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  background: white;
  color: var(--ink);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.hero-stats > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

.hero-stats strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-stats .stat-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  background: var(--red);
  color: white;
  border: 0;
}

.hero-stats .stat-highlight span {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stats .stat-highlight strong {
  font-size: 18px;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
}

.hero-orbit-two {
  width: 200px;
  height: 200px;
  right: 150px;
  top: 150px;
}

.intro {
  padding-block: 118px 90px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.section-heading h2,
.faq-intro h2,
.warsaw-copy h2,
.paths-heading h2,
.learning-copy h2,
.recruitment-copy h2,
.social-section h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.048em;
  font-weight: 800;
}

.section-heading > p,
.paths-heading > p,
.learning-copy > p,
.faq-intro > p,
.warsaw-copy > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 17px;
}

.manifesto {
  margin-top: 70px;
  padding: 32px 40px;
  border-left: 4px solid var(--red);
  background: var(--cloud);
}

.manifesto p {
  margin: 4px 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(20px, 2.1vw, 30px);
}

.manifesto s {
  color: #7f8a92;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--red);
}

.section-kicker p {
  margin: 0;
}

.section-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.82);
}

.section-kicker-light::after {
  background: rgba(255, 255, 255, 0.18);
}

.benefits-section {
  padding-bottom: 120px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.benefit-card {
  min-height: 320px;
  padding: 32px;
  background: white;
  transition: background 180ms ease, transform 180ms ease;
}

.benefit-card:hover {
  background: var(--cloud);
}

.benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.benefit-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: rgba(234, 67, 53, 0.1);
  color: var(--red);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
}

.benefit-index {
  color: #a9b2b8;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.benefit-card small {
  color: var(--red);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.benefit-card h3 {
  margin: 8px 0 14px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.paths-section {
  padding: 108px 0 120px;
  background: #fff8e8;
  color: var(--ink);
}

.paths-section .section-kicker-light {
  color: var(--navy-deep);
}

.paths-section .section-kicker-light::after {
  background: rgba(10, 73, 112, 0.16);
}

.paths-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 58px;
}

.paths-heading > p {
  color: var(--muted);
}

.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.path-card {
  position: relative;
  min-height: 610px;
  padding: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(67, 50, 9, 0.12);
}

.path-card-light {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.36), transparent 29%),
    linear-gradient(145deg, #ffdc61, #f3bb26);
  color: #182632;
}

.path-card-dark {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.2), transparent 31%),
    linear-gradient(145deg, #f05a4d, #d82f25);
  color: white;
}

.path-number {
  position: absolute;
  top: 44px;
  right: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(24, 38, 50, 0.12);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 0.7;
}

.path-card-dark .path-number {
  color: rgba(255, 255, 255, 0.14);
}

.path-number span {
  margin-top: 24px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card h3 {
  position: relative;
  max-width: 490px;
  margin: 30px 0 22px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.path-card > p {
  max-width: 500px;
  color: rgba(24, 38, 50, 0.76);
  font-size: 16px;
}

.path-card-dark > p {
  color: rgba(255, 255, 255, 0.84);
}

.path-card-light .eyebrow {
  color: var(--navy-deep);
}

.path-card ul {
  display: grid;
  gap: 11px;
  margin: 34px 0 40px;
  padding: 0;
  list-style: none;
}

.path-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.path-card li span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 38, 50, 0.14);
  color: #182632;
  font-size: 11px;
}

.path-card-dark li span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.path-card > a {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-deep);
  border-bottom: 2px solid var(--navy-deep);
}

.path-card-dark > a {
  color: white;
  border-bottom-color: white;
}

.programs-section {
  padding-block: 120px;
}

.programs-heading {
  margin-bottom: 56px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.program-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  border-radius: 22px;
  background: var(--cloud);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--card-accent, var(--red));
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.accent-coral { --card-accent: var(--red); }
.accent-blue { --card-accent: #2c85bb; }
.accent-gold { --card-accent: var(--gold); }
.accent-mint { --card-accent: var(--mint); }
.accent-violet { --card-accent: var(--violet); }

.program-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-meta strong {
  color: var(--card-accent);
}

.program-card h3 {
  margin: 52px 0 16px;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.program-card > p {
  color: var(--muted);
  font-size: 14px;
}

.program-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.program-tags span {
  padding: 6px 9px;
  background: white;
  border-radius: 999px;
  color: #56616a;
  font-size: 10px;
}

.program-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #d8e0e4;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.learning-section {
  padding: 116px 0;
  background: var(--navy);
  color: white;
}

.learning-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.learning-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.learning-copy > p {
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.66);
}

.learning-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.learning-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.learning-list > li > span {
  color: var(--red);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.learning-list h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.learning-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.warsaw-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
  padding-block: 120px;
}

.warsaw-photo {
  position: relative;
  min-height: 560px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 45%, rgba(5, 30, 47, 0.9)),
    url("https://images.unsplash.com/photo-1548693316-4df3004535f6?auto=format&fit=crop&fm=jpg&q=82&w=1500") center/cover;
  color: white;
}

.warsaw-photo span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.warsaw-photo small {
  font-size: 14px;
}

.support-photo {
  background:
    linear-gradient(180deg, rgba(6, 45, 72, 0.02) 38%, rgba(6, 45, 72, 0.94) 100%),
    url("/support-spokoj-v1.png") center 38% / cover;
}

.support-photo span {
  max-width: 560px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
}

.support-photo small {
  margin-top: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.warsaw-copy {
  padding: 42px 0 42px 70px;
  align-self: center;
}

.warsaw-copy > p {
  margin: 30px 0 40px;
}

.warsaw-points {
  display: grid;
  gap: 20px;
}

.warsaw-points div {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.warsaw-points strong {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--navy);
}

.warsaw-points span {
  color: var(--muted);
}

.voices-section {
  padding: 110px 0;
  background: var(--navy-ink);
  color: white;
}

.voices-section blockquote {
  max-width: 920px;
  margin: 40px auto 0;
}

.quote-mark {
  display: block;
  height: 70px;
  color: var(--red);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 110px;
  line-height: 1;
}

.voices-section blockquote > p {
  margin-bottom: 48px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(31px, 4.1vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.voices-section blockquote footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.voices-section blockquote footer strong,
.voices-section blockquote footer span {
  display: block;
}

.voices-section blockquote footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-block: 120px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.faq-intro > p {
  margin-top: 28px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 36px 1fr 30px;
  gap: 14px;
  align-items: center;
  padding: 27px 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--red);
  font-size: 10px;
}

.faq-list summary i {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  padding: 0 44px 26px 50px;
  color: var(--muted);
}

.recruitment-section {
  padding: 116px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(234, 67, 53, 0.22), transparent 32%),
    var(--navy-deep);
  color: white;
}

.recruitment-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.recruitment-copy > p {
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
}

.contact-lines {
  display: grid;
  gap: 14px;
}

.contact-lines div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-lines span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #ff8b82;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.contact-lines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.lead-card {
  min-height: 560px;
  padding: 42px;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.lead-card form {
  display: grid;
  gap: 19px;
}

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

.lead-card label {
  display: grid;
  gap: 8px;
  color: #44515a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.lead-card input,
.lead-card select {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border-radius: 11px;
  outline: 1px solid #d9e0e4;
  background: #f9fbfc;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
}

.lead-card input:focus,
.lead-card select:focus {
  outline: 2px solid var(--navy);
}

.lead-card .checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.form-button {
  width: 100%;
  margin-top: 5px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.form-error {
  margin: -4px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(234, 67, 53, 0.1);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.lead-card form > small {
  color: #7c878f;
  font-size: 10px;
  text-align: center;
}

.success-message {
  min-height: 475px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-message > span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5ef;
  color: var(--mint);
  font-size: 32px;
}

.success-message h3 {
  margin: 24px 0 10px;
  font-size: 30px;
}

.success-message p {
  max-width: 390px;
  color: var(--muted);
}

.success-message button {
  padding: 10px 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid var(--navy);
}

.social-section {
  padding-block: 110px;
}

.social-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.social-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.social-card {
  position: relative;
  display: flex;
  min-height: 224px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  color: white;
  box-shadow: 0 20px 44px rgba(6, 45, 72, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -76px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.social-card:hover,
.social-card:focus-visible {
  box-shadow: 0 28px 58px rgba(6, 45, 72, 0.2);
  transform: translateY(-5px);
}

.social-facebook {
  background: linear-gradient(145deg, #2374e1, #0b57b7);
}

.social-instagram {
  background: linear-gradient(145deg, #7c3aed 0%, #d62976 52%, #f59e0b 100%);
}

.social-youtube {
  background: linear-gradient(145deg, #ff1f1f, #b80000);
}

.social-linkedin {
  background: linear-gradient(145deg, #1686bb, #075f8c);
}

.social-icon {
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.16);
}

.social-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.social-arrow {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 28px;
  font-size: 24px;
  line-height: 1;
}

.social-label {
  z-index: 1;
  display: grid;
  gap: 5px;
}

.social-label small {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-label strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.site-footer {
  padding: 76px 0 30px;
  background: var(--navy-ink);
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  gap: 70px;
  align-items: center;
  padding-bottom: 56px;
}

.brand-footer {
  width: max-content;
  padding: 12px 16px 11px;
  border-radius: 14px;
  background: white;
  color: var(--navy-deep);
}

.footer-top > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-details {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr;
  gap: 18px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-detail {
  min-height: 176px;
  padding: 27px 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-detail small {
  display: block;
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-detail h3 {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.footer-detail p,
.footer-detail span,
.footer-detail strong,
.footer-detail a {
  display: block;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

.footer-detail p,
.footer-detail strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.footer-detail span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-detail a {
  width: fit-content;
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  transition: color 180ms ease;
}

.footer-detail a:hover,
.footer-detail a:focus-visible {
  color: #ffdc61;
}

.footer-membership {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) 1.3fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border-radius: 20px;
  background: white;
  color: var(--navy-ink);
}

.footer-membership > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.footer-membership-logos {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(240px, 1.3fr) minmax(165px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

.footer-membership-logos a,
.footer-membership-logo {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  transition: transform 180ms ease, border-color 180ms ease;
}

.footer-membership-logo svg {
  display: block;
  width: min(100%, 165px);
  height: auto;
}

.footer-membership-logos a:hover,
.footer-membership-logos a:focus-visible {
  border-color: rgba(10, 73, 112, 0.35);
  transform: translateY(-2px);
}

.footer-membership-logos img {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.75fr 0.6fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom > a {
  text-align: right;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .header-inner {
    gap: 18px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr 290px;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(50px, 6.5vw, 72px);
  }

  .hero-stats > div {
    padding: 22px 18px;
  }
}

@media (max-width: 820px) {
  .section,
  .header-inner,
  .hero-inner,
  .hero-stats {
    width: min(100% - 32px, 640px);
  }

  .site-header {
    height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .button-header {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 18px 24px 26px;
    background: var(--navy-deep);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 710px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 220px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero-aside {
    display: none;
  }

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

  .hero-stats > div {
    display: grid;
    gap: 8px;
  }

  .hero-stats .stat-highlight {
    grid-column: 1 / -1;
    min-height: 86px;
  }

  .section-heading,
  .paths-heading,
  .faq-section,
  .learning-inner,
  .recruitment-inner,
  .warsaw-section,
  .social-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .path-cards {
    grid-template-columns: 1fr;
  }

  .learning-copy,
  .faq-intro {
    position: static;
  }

  .warsaw-copy {
    padding: 20px 0 0;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-details {
    grid-template-columns: 1fr;
  }

  .footer-membership {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .footer-bottom > a {
    text-align: left;
  }

}

@media (max-width: 560px) {
  .hero {
    background-position: 58% center;
  }

  .warsaw-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-inner {
    min-height: 720px;
    padding-top: 66px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.03;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-stats strong {
    font-size: 26px;
  }

  .hero-stats span {
    font-size: 9px;
  }

  .hero-stats > div {
    padding: 18px 10px;
  }

  .intro,
  .programs-section,
  .faq-section,
  .social-section,
  .warsaw-section {
    padding-block: 84px;
  }

  .section-heading h2,
  .faq-intro h2,
  .warsaw-copy h2,
  .paths-heading h2,
  .learning-copy h2,
  .recruitment-copy h2,
  .social-section h2 {
    font-size: 38px;
  }

  .benefits-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .social-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .social-card {
    min-height: 174px;
  }

  .path-card {
    min-height: auto;
    padding: 34px 26px;
  }

  .path-number {
    top: 30px;
    right: 28px;
    font-size: 74px;
  }

  .path-card h3 {
    font-size: 32px;
  }

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

  .lead-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .footer-detail {
    min-height: auto;
  }

  .footer-membership {
    padding: 22px;
  }

  .footer-membership-logos {
    grid-template-columns: 1fr;
  }

  .footer-membership-logos a,
  .footer-membership-logo {
    min-height: 98px;
  }

  .learning-list li {
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }

  .warsaw-photo {
    min-height: 440px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
