:root {
  --navy: #082b59;
  --navy-2: #123f71;
  --ink: #14263a;
  --muted: #64758a;
  --ice: #e5ecf4;
  --ice-2: #f4f7fa;
  --line: #cfd9e5;
  --white: #ffffff;
  --rose: #d7a0a4;
  --shadow: 0 24px 70px rgba(8, 43, 89, 0.11);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.narrow {
  max-width: 880px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #e4ebf3;
  border-bottom: 1px solid rgba(207, 217, 229, 0.76);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(220px, 22vw, 300px);
  height: auto;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
  color: #39516a;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav a:hover {
  color: var(--navy);
}

.nav .nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 96px;
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 160, 164, 0.24), transparent 22rem),
    linear-gradient(135deg, var(--ice) 0%, #f2f6fa 56%, #ffffff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(8, 43, 89, 0.10);
  border-radius: 50%;
}

.hero::before {
  width: 420px;
  height: 420px;
  left: -240px;
  top: -180px;
}

.hero::after {
  width: 310px;
  height: 310px;
  right: -170px;
  bottom: -170px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--navy-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.hero-lead,
.section-lead {
  color: #40566f;
  font-size: 1.13rem;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(8, 43, 89, 0.18);
}

.button-primary:hover {
  background: #0d3669;
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(8, 43, 89, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

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

.logo-card {
  padding: 18px;
  border: 1px solid rgba(8, 43, 89, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(229, 236, 244, 0.92);
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  border-radius: 22px;
}

.logo-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px 3px;
  color: #586d83;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.section {
  padding: 96px 0;
}

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

.intro h2 {
  max-width: 800px;
  margin-inline: auto;
}

.intro .section-lead {
  max-width: 830px;
  margin: 0 auto;
}

.features {
  background: var(--ice-2);
  border-top: 1px solid #e7edf3;
  border-bottom: 1px solid #e7edf3;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  margin-bottom: 7px;
  color: var(--muted);
}

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

.feature-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid #dbe4ed;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 43, 89, 0.05);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--ice);
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-card:nth-child(3) .feature-number {
  color: #082b59;
  background: #e5ecf4;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.statement {
  background: var(--navy);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 70px;
  align-items: center;
}

.statement .section-kicker {
  color: #b8c9db;
}

.statement h2,
.statement p,
.statement a {
  color: var(--white);
}

.statement-copy > p:not(.section-kicker) {
  max-width: 670px;
  color: #d8e2ec;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.quote-card {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
}

.quote-mark {
  display: block;
  height: 52px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.quote-card p {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.25;
}

.quote-signature {
  color: #b8c9db;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-heading {
  grid-template-columns: 1fr;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.audience-label {
  display: inline-block;
  margin-bottom: 34px;
  color: #8f5359;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-section {
  padding-top: 20px;
  background: var(--white);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 52px 56px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #dfe9f4 0%, var(--ice) 58%, #eedadd 140%);
}

.cta-card h2 {
  max-width: 800px;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
}

.cta-card p:last-child {
  margin-bottom: 0;
  color: #4e6277;
}

.button-light {
  min-width: 210px;
}

.site-footer {
  padding: 34px 0 42px;
  color: #65778b;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-inner div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-inner strong {
  color: var(--navy);
}

.footer-inner a {
  color: var(--navy);
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .nav {
    flex-wrap: wrap;
  }

  .header-inner {
    padding: 16px 0;
  }

  .nav {
    gap: 12px 18px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .statement-grid,
  .section-heading,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .logo-card {
    max-width: 690px;
  }

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

  .statement-grid {
    gap: 42px;
  }

  .quote-card {
    max-width: 690px;
  }

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

  .cta-card {
    gap: 24px;
  }
}

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

  .site-header .brand {
    width: 100%;
  }

  .brand-logo {
    width: min(100%, 280px);
  }

  .nav {
    width: 100%;
    font-size: 0.9rem;
  }

  .nav .nav-cta {
    margin-left: auto;
  }

  .hero {
    padding: 56px 0 66px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .section {
    padding: 72px 0;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .quote-card,
  .cta-card {
    padding: 30px 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

/* Pasek doświadczenia / przewag */
.experience {
  padding: 0 0 24px;
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 62%, #f1e2e4 150%);
  box-shadow: 0 16px 44px rgba(8, 43, 89, 0.06);
}

.experience-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.experience-number {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 0.95;
  white-space: nowrap;
}

.experience-main p {
  margin: 0;
  color: #4e6277;
}

.experience-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.experience-points span {
  padding: 8px 12px;
  border: 1px solid rgba(8, 43, 89, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(229, 236, 244, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-points {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .experience-grid {
    padding: 26px 22px;
  }

  .experience-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
