
:root {
  --pga-blue: #1292ff;
  --pga-deep: #235bb4;
  --pga-intro-bg: #f2f6fb;
  --pga-partners-bg: #f8fbfd;
  --pga-white: #ffffff;
  --desktop-width: 1920px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--pga-deep);
  background: #fff;
  font-family: var(--font-open-sans, "Open Sans"), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: #c8e8ff; color: #174f99; }

.focus-ring:focus-visible {
  outline: 3px solid rgba(18, 146, 255, .48);
  outline-offset: 4px;
}

/* Header — reference desktop: 102 px high, content inset ~192 px. */
.site-header {
  position: relative;
  z-index: 50;
  height: 102px;
  background: rgba(255, 255, 255, .965);
}
.header-shell {
  width: min(calc(100% - 48px), 1536px);
  height: 102px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-link { display: inline-flex; flex: 0 0 auto; border-radius: 6px; }
.header-logo { width: 252px; height: 72px; object-fit: contain; display: block; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  color: var(--pga-deep);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.nav-link {
  padding: 10px 0;
  border-radius: 3px;
  transition: color .16s ease, opacity .16s ease;
}
.nav-link:hover { color: #0b79dc; }
.mobile-menu-button, .mobile-nav { display: none; }

/* Hero — three-slide universal carousel, geometry kept identical to the reference canvas. */
.hero-section {
  position: relative;
  height: 784px;
  overflow: hidden;
  background: linear-gradient(180deg, #dfe8f6 0%, #e8eef8 43%, #fbfcfd 100%);
}
.hero-artboard {
  position: relative;
  width: min(100%, var(--desktop-width));
  height: 100%;
  margin: 0 auto;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .65s ease, visibility .65s step-end;
}
.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .65s ease, visibility 0s step-start;
}
/* Continue the photograph beyond the 1920 px reference canvas, so wide monitors
   do not show a blank strip on the right. Each slide carries its own edge. */
.hero-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -102px;
  left: 100%;
  width: max(0px, calc((100vw - 1920px) / 2));
  height: 886px;
  background-image: var(--hero-edge);
  background-position: left top;
  background-size: 100% 886px;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  z-index: 3;
  top: 172px;
  left: 122px;
  width: 670px;
}
.hero-kicker {
  margin: 0 0 52px;
  color: #4184c9;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
}
.hero-title {
  margin: 0;
  color: var(--pga-deep);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.7px;
  line-height: 61px;
}

.hero-title-universal {
  font-size: 46px;
  line-height: 60px;
  letter-spacing: -.45px;
  max-width: 670px;
  text-wrap: balance;
}
.cta-pill {
  display: inline-flex;
  width: 207px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pga-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.cta-pill:hover {
  transform: translateY(-1px);
  background: #0789f4;
  box-shadow: 0 8px 18px rgba(18, 146, 255, .2);
}
.hero-copy .cta-pill { margin-top: 44px; }
.hero-image {
  position: absolute;
  z-index: 2;
  top: -102px;
  right: 0;
  width: 1016px;
  height: 886px;
  max-width: none;
  object-fit: cover;
}
.hero-dots {
  position: absolute;
  z-index: 8;
  left: calc(50% - 20px);
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 1px solid #d5dae0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-dot.is-active {
  border-color: #d8dde3;
  background: #d8dde3;
}
.hero-dot:hover { transform: scale(1.12); }
.hero-dot:focus-visible { outline-offset: 4px; }

/* Intro — supplied 856×613 image kept at natural size; visible section is 595 px. */
.intro-section {
  position: relative;
  height: 595px;
  background: var(--pga-intro-bg);
}
.intro-artboard {
  position: relative;
  width: min(100%, var(--desktop-width));
  height: 100%;
  margin: 0 auto;
}
.intro-picture {
  display: block;
}
.intro-image {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 856px;
  height: 613px;
  max-width: none;
}
.intro-copy {
  position: absolute;
  top: 90px;
  left: 970px;
  width: 610px;
  color: #3476bc;
  font-size: 21px;
  font-weight: 400;
  line-height: 31px;
}
.intro-copy p { margin: 0; }
.intro-copy p + p { margin-top: 34px; }
.intro-copy strong,
.intro-lead { color: var(--pga-deep); font-weight: 700; }
.intro-arrow {
  display: inline-flex;
  margin-top: 36px;
  border-radius: 50%;
  transition: transform .16s ease;
}
.intro-arrow:hover { transform: translateY(2px); }
.intro-arrow img { width: 57px; height: 56px; }

/* Programs — exact 387×243 source images and 207×52 CTA dimensions from design exports. */
.programs-section {
  min-height: 2113px;
  background: #fff;
  padding-top: 132px;
}
.programs-shell {
  width: min(calc(100% - 48px), 1361px);
  margin: 0 auto;
}
.section-title {
  margin: 0;
  color: var(--pga-deep);
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 49px;
  letter-spacing: -.25px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 387px);
  gap: 90px 100px;
  margin-top: 68px;
}
.program-card {
  position: relative;
  width: 387px;
  height: 520px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 34px rgba(0, 0, 0, .12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.program-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
}
.program-image-wrap,
.program-image {
  width: 387px;
  height: 243px;
}
.program-image-wrap { position: relative; overflow: hidden; }
.program-image { object-fit: cover; }
.program-card-body {
  position: relative;
  height: 277px;
  padding: 77px 30px 25px;
  text-align: center;
  background: #fff;
}
.program-badge {
  position: absolute;
  z-index: 3;
  top: -74px;
  left: 50%;
  width: 184px;
  height: 181px;
  transform: translateX(-50%);
  pointer-events: none;
}
.program-badge-base {
  position: absolute;
  inset: 0;
  width: 184px;
  height: 181px;
}
.program-badge-icon {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 80.5px;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}
.program-card-title {
  margin: 0;
  color: var(--pga-deep);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}
.program-card-text {
  max-width: 310px;
  margin: 11px auto 0;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.card-cta {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
}
.card-cta:hover { transform: translate(-50%, -1px); }

/* Partners — PNG exports already contain radius, padding and shadow; no wrapper card is added. */
.partners-section {
  height: 1064px;
  background: var(--pga-partners-bg);
}
.partners-artboard {
  width: min(100%, var(--desktop-width));
  height: 100%;
  margin: 0 auto;
  padding-top: 90px;
}
.partners-title { margin-bottom: 10px; }
.insurance-logos {
  display: grid;
  grid-template-columns: repeat(4, 368px);
  justify-content: center;
  gap: 0;
}
.partner-logo-wrap { line-height: 0; }
.partner-logo-wrap[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.partner-logo-wrap[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.partner-logo-image { max-width: none; height: auto; transition: transform .22s ease, filter .22s ease; }
.partner-logo-wrap:hover .partner-logo-image,
.partner-logo-wrap:focus-within .partner-logo-image {
  transform: translateY(-4px);
  filter: saturate(1.02);
}
.business-title { margin-top: 92px; margin-bottom: 35px; }
.business-logos {
  display: grid;
  grid-template-columns: 309px 310px 310px 310px 309px;
  justify-content: center;
  gap: 0;
}

/* Footer — reference color #235bb4 and 10 px cyan top rule. */
.site-footer {
  position: relative;
  min-height: 358px;
  border-top: 10px solid var(--pga-blue);
  background: var(--pga-deep);
  color: #fff;
}
.footer-inner {
  position: relative;
  width: min(calc(100% - 48px), 1364px);
  min-height: 348px;
  margin: 0 auto;
  padding: 40px 0 34px;
  display: grid;
  grid-template-columns: 220px 470px 1fr;
  column-gap: 58px;
}
.footer-brand-column { position: relative; }
.footer-brand-lockup {
  width: 190px;
  margin-top: -10px;
  text-align: left;
}
.footer-brand-image {
  display: block;
  width: 109px;
  height: 109px;
  margin: 0 0 17px 0;
}
.footer-brand-name {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: .01em;
}
.footer-company-ids {
  margin: 12px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: .01em;
}
.footer-credit {
  position: absolute;
  left: 0;
  bottom: 26px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}
.footer-credit strong { color: #fff; font-weight: 700; }
.footer-contact,
.footer-links {
  color: rgba(255,255,255,.83);
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}
.footer-contact h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.footer-contact p { margin: 0 0 17px; }

.footer-iod {
  margin-top: 12px;
}
.footer-iod strong {
  display: inline-block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.footer-contact a:hover, .footer-links a:hover { color: #fff; }
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: #fff;
  font-weight: 700;
}
.footer-programs {
  position: absolute;
  left: 278px;
  right: 0;
  bottom: 24px;
  min-height: 42px;
  border-top: 1px solid rgba(18, 146, 255, .55);
  display: flex;
  align-items: flex-end;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 22px;
}
.footer-programs > a, .footer-programs > span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 23px;
  border-left: 1px solid rgba(18,146,255,.78);
}
.footer-programs > a:first-child, .footer-programs > span:first-child {
  padding-left: 0;
  padding-right: 58px;
  border-left: 0;
}
.footer-programs .is-heading { color: #fff; font-size: 14px; font-weight: 700; }

/* Laptop — preserve proportions without forcing a 1920 px canvas. */
@media (max-width: 1599px) {
  .header-shell { width: min(calc(100% - 64px), 1240px); }
  .header-logo { width: 220px; height: auto; }
  .desktop-nav { gap: 17px; font-size: 12px; }

  .hero-copy { left: max(54px, calc((100vw - 1400px) / 2 + 32px)); width: min(50vw, 670px); }
  .hero-image {
    width: min(58vw, 1016px);
    height: auto;
    top: -82px;
  }
  .hero-title { font-size: 44px; line-height: 54px; }

  .intro-image { width: 50vw; height: auto; }
  .intro-copy { left: 55vw; width: 39vw; }

  .programs-shell { width: 1120px; }
  .programs-grid { grid-template-columns: repeat(3, 340px); gap: 80px 50px; }
  .program-card { width: 340px; height: 500px; }
  .program-image-wrap, .program-image { width: 340px; height: 214px; }
  .program-card-body { height: 286px; padding-top: 78px; }

  .insurance-logos { grid-template-columns: repeat(4, 300px); }
  .insurance-logos .partner-logo-image { width: 300px; }
  .business-logos { grid-template-columns: repeat(5, 250px); }
  .business-logos .partner-logo-image { width: 250px; }
}

/* Tablet and mobile — logical reflow while retaining the visual language. */
@media (max-width: 1100px) {
  .hero-slide::after { display: none; }
  .site-header { height: 82px; background: #fff; }
  .header-shell { width: min(calc(100% - 40px), 920px); height: 82px; }
  .header-logo { width: 200px; height: auto; }
  .desktop-nav { display: none; }
  .mobile-menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--pga-deep);
    cursor: pointer;
  }
  .mobile-menu-button:hover { background: #f2f7fc; }
  .hamburger { position: relative; width: 26px; height: 20px; }
  .hamburger span { position: absolute; left: 0; width: 26px; height: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
  .hamburger span:nth-child(1) { top: 1px; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { top: 17px; }
  .hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-nav {
    display: block;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #edf2f7;
    opacity: 0;
    transition: max-height .22s ease, opacity .18s ease;
  }
  .mobile-nav.is-open { max-height: 520px; opacity: 1; }
  .mobile-nav-inner { width: min(calc(100% - 40px), 920px); margin: 0 auto; padding: 14px 0 20px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 18px; }
  .mobile-nav-link { padding: 11px 10px; border-radius: 8px; color: var(--pga-deep); font-size: 14px; }
  .mobile-nav-link:hover { background: #f2f7fc; }

  .hero-section { height: auto; min-height: 850px; padding: 48px 0 42px; }
  .hero-artboard { display: block; height: auto; min-height: 760px; }
  .hero-slide { position: absolute; inset: 0; }
  .hero-slide.is-active { position: relative; inset: auto; display: flex; flex-direction: column; }
  .hero-copy { position: relative; top: auto; left: auto; width: min(calc(100% - 48px), 760px); margin: 0 auto; }
  .hero-kicker { margin-bottom: 28px; font-size: 18px; }
  .hero-title { font-size: clamp(38px, 5.6vw, 50px); line-height: 1.18; }
    .hero-copy .cta-pill { margin-top: 38px; }
  .hero-image { position: relative; top: auto; right: auto; width: min(100%, 820px); height: auto; margin: 50px 0 0 auto; }
  .hero-dots { left: 50%; bottom: 12px; transform: translateX(-50%); }

  .intro-section { height: auto; background: var(--pga-intro-bg); }
  .intro-artboard { display: grid; grid-template-columns: 1fr; }
  .intro-picture { display: block; line-height: 0; }
  .intro-image { position: relative; width: min(100%, 856px); height: auto; }
  .intro-copy { position: relative; top: auto; left: auto; width: min(calc(100% - 48px), 720px); margin: 0 auto; padding: 58px 0 64px; font-size: 18px; line-height: 29px; }

  .programs-section { min-height: 0; padding: 80px 0 100px; }
  .programs-shell { width: min(calc(100% - 48px), 820px); }
  .programs-grid { grid-template-columns: repeat(2, 340px); justify-content: center; gap: 72px 54px; }
  .program-card { width: 340px; }

  .partners-section { height: auto; padding: 70px 0 80px; }
  .partners-artboard { height: auto; padding: 0; }
  .insurance-logos { grid-template-columns: repeat(2, minmax(240px, 320px)); gap: 16px; }
  .insurance-logos .partner-logo-image { width: 100%; }
  .business-title { margin-top: 65px; }
  .business-logos { grid-template-columns: repeat(3, minmax(210px, 270px)); gap: 8px; }
  .business-logos .partner-logo-image { width: 100%; }

  .site-footer { height: auto; min-height: 0; }
  .footer-inner { width: min(calc(100% - 48px), 820px); height: auto; min-height: 470px; padding: 48px 0 52px; grid-template-columns: 1fr 1fr; gap: 40px 60px; }
  .footer-brand-image { width: 109px; height: 109px; }
  .footer-brand-column { min-height: 270px; }
  .footer-credit { bottom: 0; }
  .footer-programs { left: 0; bottom: 22px; flex-wrap: wrap; gap: 5px 0; padding-top: 10px; }
  .footer-programs > a, .footer-programs > span { padding: 0 13px; }
  .footer-programs > a:first-child, .footer-programs > span:first-child { padding-right: 25px; }
}

@media (max-width: 720px) {
  .header-shell { width: calc(100% - 28px); }
  .header-logo { width: 180px; height: auto; }
  .mobile-nav-inner { width: calc(100% - 28px); grid-template-columns: 1fr; }

  .hero-section { min-height: 0; padding: 38px 0 42px; }
  .hero-artboard { min-height: 0; }
  .hero-copy { width: calc(100% - 36px); }
  .hero-kicker { margin-bottom: 22px; font-size: 15px; line-height: 24px; }
  .hero-title { font-size: clamp(33px, 8.6vw, 43px); line-height: 1.18; letter-spacing: -.35px; }
    .hero-copy .cta-pill { margin-top: 32px; }
  .hero-image { width: 118%; max-width: none; margin-top: 40px; margin-right: -18%; }
  .hero-dots { bottom: 10px; }

  .intro-picture { display: none; }
  .intro-copy { width: calc(100% - 36px); padding: 38px 0 50px; font-size: 17px; line-height: 27px; }
  .intro-copy p + p { margin-top: 26px; }

  .section-title { font-size: 30px; line-height: 40px; }
  .programs-section { padding: 65px 0 80px; }
  .programs-shell { width: calc(100% - 28px); }
  .programs-grid { grid-template-columns: 1fr; justify-items: center; gap: 58px; margin-top: 48px; }
  .program-card { width: min(387px, 100%); height: auto; min-height: 520px; }
  .program-image-wrap, .program-image { width: 100%; height: auto; aspect-ratio: 387 / 243; }
  .program-card-body { min-height: 277px; }

  .partners-section { padding: 58px 0 66px; }
  .insurance-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 22px); margin: 12px auto 0; gap: 2px; }
  .business-title { margin-top: 48px; margin-bottom: 18px; }
  .business-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 22px); margin: 0 auto; gap: 0; }
  .business-logos .partner-logo-wrap:last-child { grid-column: 1 / -1; justify-self: center; width: 50%; }

  .footer-inner { width: calc(100% - 36px); padding: 38px 0 44px; display: block; }
  .footer-brand-column { min-height: 285px; }
  .footer-contact { margin-top: 28px; }
  .footer-links { margin-top: 30px; }
  .footer-programs { bottom: 18px; font-size: 11px; }
  .footer-programs > a, .footer-programs > span { height: 24px; padding: 0 8px; }
  .footer-programs > a:first-child, .footer-programs > span:first-child { flex-basis: 100%; padding: 0 0 4px; border: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .partner-logo-wrap[data-reveal] { opacity: 1; transform: none; }
}

.anchor-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}


/* Clickable contact details – preserve footer visual styling */
.footer-contact a {
  color: inherit;
  text-decoration: none;
}
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Floating scroll-to-top control */
.scroll-top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 146, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 28px rgba(24, 73, 132, .16);
  color: var(--pga-blue);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .18s ease, box-shadow .18s ease;
}
.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-button:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(24, 73, 132, .22);
}
.scroll-top-chevron {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

@media (max-width: 720px) {
  .scroll-top-button {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 46px;
    height: 46px;
    box-shadow: 0 8px 22px rgba(24, 73, 132, .17);
  }
  .scroll-top-chevron { width: 12px; height: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-button { transition: none; }
}


/* Refinements for expanded programs section */
.programs-section { min-height: 0; padding: 132px 0 132px; }
.programs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 72px 64px; margin-top: 68px; }
.program-card { flex: 0 0 387px; }
@media (max-width: 1439px) { .programs-grid { gap: 64px 42px; } }
@media (max-width: 1199px) { .programs-section { padding: 92px 0 100px; } .programs-grid { gap: 58px 34px; } }
@media (max-width: 767px) { .programs-section { padding: 65px 0 80px; } .programs-grid { gap: 48px; } .program-card { flex-basis: min(387px, 100%); } }


/* Final stable layout: 12 program cards, no ZUS OC / Vienna card */
.programs-section { min-height: 0; padding: 132px 0 136px; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 387px);
  justify-content: center;
  gap: 72px 64px;
  margin-top: 68px;
}
.program-card { width: 387px; height: 520px; }
.program-card-title {
  max-width: 315px;
  min-height: 60px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-card-text { max-width: 315px; min-height: 60px; }
@media (max-width: 1280px) {
  .programs-grid { grid-template-columns: repeat(2, 340px); gap: 62px 48px; }
  .program-card { width: 340px; }
  .program-image-wrap, .program-image { width: 340px; height: 214px; }
}
@media (max-width: 760px) {
  .programs-section { padding: 65px 0 80px; }
  .programs-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 48px; justify-items: center; }
  .program-card { width: min(387px,100%); height: auto; min-height: 520px; }
  .program-image-wrap, .program-image { width: 100%; height: auto; aspect-ratio: 387/243; }
  .program-card-title, .program-card-text { min-height: 0; }
}


/* =========================================================
   FINAL RWD / UX PASS — 3 cards desktop, 2 tablet, 1 mobile
   ========================================================= */

#programy,
#footer { scroll-margin-top: 92px; }

/* Program grid: desktop composition mirrors the current PGA layout. */
.programs-section {
  min-height: 0 !important;
  padding: clamp(84px, 7vw, 132px) 0 clamp(92px, 7vw, 136px) !important;
}
.programs-shell {
  width: min(calc(100% - 56px), 1280px) !important;
  margin-inline: auto;
}
.programs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 387px)) !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 72px clamp(30px, 3.3vw, 56px) !important;
  margin-top: 68px !important;
}
.program-card {
  width: 100% !important;
  max-width: 387px;
  height: 520px !important;
  min-height: 0 !important;
  border-radius: 20px;
}
.program-image-wrap,
.program-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 387 / 243;
}
.program-image {
  object-fit: cover;
  object-position: center;
}
.program-card-body {
  height: 277px !important;
  min-height: 277px !important;
  padding: 77px 28px 25px !important;
}
.program-card-title {
  max-width: 320px;
  min-height: 60px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-wrap: balance;
}
.program-card-text {
  max-width: 318px !important;
  min-height: 60px;
  margin-top: 10px !important;
  text-wrap: pretty;
}
.card-cta {
  min-width: 207px;
  min-height: 52px;
}

/* Avoid sticky hover states on touch devices. */
@media (hover: hover) and (pointer: fine) {
  .program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0,0,0,.14);
  }
  .partner-logo-wrap:hover .partner-logo-image {
    transform: translateY(-4px);
  }
}
@media (hover: none) {
  .program-card:hover,
  .partner-logo-wrap:hover .partner-logo-image {
    transform: none;
  }
}

/* Keep three columns on normal laptops, only scale cards gently. */
@media (max-width: 1360px) and (min-width: 1101px) {
  .programs-shell { width: min(calc(100% - 44px), 1120px) !important; }
  .programs-grid {
    grid-template-columns: repeat(3, minmax(0, 340px)) !important;
    gap: 62px 38px !important;
  }
  .program-card { max-width: 340px; height: 500px !important; }
  .program-card-body { height: 286px !important; min-height: 286px !important; padding-inline: 22px !important; }
  .program-card-title { font-size: 20px; line-height: 27px; min-height: 54px; }
  .program-card-text { font-size: 13px; line-height: 19px; min-height: 57px; }
}

/* Tablet: two balanced cards. */
@media (max-width: 1100px) and (min-width: 721px) {
  #programy, #footer { scroll-margin-top: 80px; }
  .programs-shell { width: min(calc(100% - 48px), 780px) !important; }
  .programs-grid {
    grid-template-columns: repeat(2, minmax(0, 350px)) !important;
    gap: 58px 42px !important;
    margin-top: 54px !important;
  }
  .program-card { max-width: 350px; height: 505px !important; }
  .program-card-body { height: 285px !important; min-height: 285px !important; padding-inline: 24px !important; }
  .program-card-title { font-size: 20px; line-height: 27px; min-height: 54px; }
  .program-card-text { font-size: 13px; line-height: 19px; min-height: 57px; }
  .mobile-nav-inner { grid-template-columns: 1fr 1fr !important; }
}

/* Phone: one card, comfortable touch spacing, no horizontal overflow. */
@media (max-width: 720px) {
  #programy, #footer { scroll-margin-top: 74px; }
  .programs-section { padding: 64px 0 78px !important; }
  .programs-shell { width: min(calc(100% - 28px), 420px) !important; }
  .programs-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 44px !important;
    margin-top: 42px !important;
  }
  .program-card {
    width: 100% !important;
    max-width: 387px;
    height: 520px !important;
    margin-inline: auto;
  }
  .program-card-body {
    height: 277px !important;
    min-height: 277px !important;
    padding: 76px 22px 24px !important;
  }
  .program-card-title {
    font-size: clamp(19px, 5.4vw, 22px);
    line-height: 1.3;
    min-height: 0;
  }
  .program-card-text {
    min-height: 0;
    max-width: 305px !important;
    font-size: 13px;
    line-height: 19px;
  }
  .card-cta {
    width: min(207px, calc(100% - 44px));
    height: 50px;
  }
  .section-title { font-size: 29px; line-height: 38px; }
  .mobile-nav-inner { grid-template-columns: 1fr !important; }
  .mobile-nav-link { min-height: 46px; display: flex; align-items: center; }

  /* Hero is easier to read on small screens and the artwork stays controlled. */
  .hero-copy { width: calc(100% - 36px) !important; }
  .hero-title { font-size: clamp(32px, 8.7vw, 42px) !important; line-height: 1.17 !important; }
  .hero-image { width: 112% !important; margin-right: -12% !important; }

  /* Partner cards remain readable without being squeezed. */
  .insurance-logos,
  .business-logos {
    width: min(calc(100% - 28px), 560px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .partner-logo-image { width: 100% !important; max-width: 100% !important; }
}

/* Very narrow phones. */
@media (max-width: 420px) {
  .programs-shell { width: calc(100% - 22px) !important; }
  .program-card { max-width: 360px; height: 500px !important; }
  .program-card-body { height: 274px !important; min-height: 274px !important; padding-inline: 18px !important; }
  .program-badge { transform: translateX(-50%) scale(.92); transform-origin: top center; }
  .header-logo { width: 164px !important; }
  .insurance-logos,
  .business-logos { grid-template-columns: 1fr !important; max-width: 300px; }
  .business-logos .partner-logo-wrap:last-child { grid-column: auto !important; width: auto !important; }
  .scroll-top-button { right: 14px !important; bottom: max(14px, env(safe-area-inset-bottom)) !important; }
}

/* Keyboard users get a clear, consistent focus state. */
.nav-link:focus-visible,
.mobile-nav-link:focus-visible,
.cta-pill:focus-visible,
.scroll-top-button:focus-visible {
  outline: 3px solid rgba(18,146,255,.55);
  outline-offset: 4px;
}


/* Hero text overlap fix */
.hero-copy { width: 610px; }
.hero-title-universal { max-width: 610px; }
@media (max-width: 1599px) { .hero-copy { width: min(47vw, 610px); } }
@media (min-width: 1600px) and (max-width: 1760px) { .hero-copy { width: 600px; } .hero-title-universal { max-width: 600px; } }


/* Fix overlapping program card buttons */
.program-card-body { display: flex !important; flex-direction: column; align-items: center; }
.program-card-text { width: 100%; }
.card-cta { position: static !important; left: auto !important; bottom: auto !important; transform: none !important; margin-top: auto; flex-shrink: 0; }
.card-cta:hover { transform: translateY(-1px) !important; }
@media (max-width: 720px) { .card-cta { margin-top: auto; } }


/* =========================================================
   FINAL QUALITY PASS — RWD / UX / WCAG / vertical rhythm
   ========================================================= */

html { scroll-padding-top: 92px; }
body { min-width: 320px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: #fff;
  color: #174f99;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(0,0,0,.16);
  transform: translateY(-160%);
  transition: transform .16s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Hero: reserve a safe text lane before the blue arc. */
.hero-copy { width: 600px !important; }
.hero-title-universal { max-width: 600px !important; }
.hero-title { overflow-wrap: normal; }

/* Program cards: fixed visual rhythm and no CTA collisions. */
.programs-grid {
  grid-template-columns: repeat(3, minmax(0, 387px)) !important;
  gap: 64px clamp(30px, 3.2vw, 54px) !important;
}
.program-card {
  height: 548px !important;
  display: flex;
  flex-direction: column;
}
.program-image-wrap { flex: 0 0 auto; }
.program-card-body {
  flex: 1 1 auto;
  height: 305px !important;
  min-height: 305px !important;
  padding: 72px 28px 22px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.program-card-title {
  width: 100%;
  max-width: 320px;
  min-height: 58px;
  margin: 0 auto !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-wrap: balance;
}
.program-card-text {
  width: 100%;
  max-width: 318px !important;
  min-height: 64px;
  margin: 8px auto 12px !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-wrap: pretty;
}
.card-cta {
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  flex: 0 0 auto;
  margin-top: auto !important;
}
@media (hover:hover) and (pointer:fine) {
  .card-cta:hover { transform: translateY(-1px) !important; }
}

/* Make keyboard focus visible without changing mouse/touch appearance. */
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(18,146,255,.62) !important;
  outline-offset: 4px !important;
}

/* Keep partner motion subtle and non-essential. */
.partner-logo-wrap[data-reveal] { transition-duration: .45s; }

/* Laptop: retain 3 cards in a row, with proportional card height. */
@media (max-width: 1360px) and (min-width: 1101px) {
  .hero-copy { width: min(45vw, 565px) !important; }
  .hero-title-universal { max-width: 565px !important; }
  .programs-grid { grid-template-columns: repeat(3, minmax(0, 340px)) !important; gap: 58px 34px !important; }
  .program-card { height: 520px !important; }
  .program-card-body { height: 306px !important; min-height: 306px !important; padding: 70px 22px 20px !important; }
  .program-card-title { min-height: 54px; }
  .program-card-text { min-height: 60px; margin-top: 7px !important; }
  .card-cta { min-height: 50px; height: 50px; }
}

/* Tablet: 2 cards, comfortable gutters and touch sizes. */
@media (max-width: 1100px) and (min-width: 721px) {
  html { scroll-padding-top: 80px; }
  .programs-grid { grid-template-columns: repeat(2, minmax(0, 350px)) !important; gap: 54px 38px !important; }
  .program-card { height: 526px !important; }
  .program-card-body { height: 306px !important; min-height: 306px !important; padding: 70px 24px 20px !important; }
  .program-card-title { min-height: 54px; }
  .program-card-text { min-height: 60px; margin-top: 7px !important; }
  .cta-pill { min-height: 48px; }
}

/* Mobile: one card, fluid width, no hard text heights. */
@media (max-width: 720px) {
  html { scroll-padding-top: 74px; }
  .hero-copy { width: calc(100% - 36px) !important; }
  .hero-title-universal { max-width: 100% !important; }
  .programs-grid { grid-template-columns: minmax(0,1fr) !important; gap: 42px !important; }
  .program-card {
    width: 100% !important;
    max-width: 387px;
    height: auto !important;
    min-height: 535px !important;
  }
  .program-card-body {
    height: auto !important;
    min-height: 292px !important;
    padding: 72px 22px 22px !important;
  }
  .program-card-title { min-height: auto; }
  .program-card-text { min-height: auto; margin: 9px auto 18px !important; }
  .card-cta { margin-top: auto !important; min-height: 48px; }
  .mobile-menu-button { min-width: 48px; min-height: 48px; }
  .mobile-nav-link { min-height: 48px !important; }
}

@media (max-width: 420px) {
  .program-card { min-height: 510px !important; }
  .program-card-body { min-height: 284px !important; padding-inline: 18px !important; }
  .program-card-text { font-size: 13px; line-height: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  .skip-link, .partner-logo-wrap[data-reveal], .program-card, .cta-pill, .nav-link, .mobile-nav, .hamburger span {
    transition: none !important;
  }
  .partner-logo-wrap[data-reveal] { opacity: 1 !important; transform: none !important; }
}


/* =========================================================
   PROGRAMS GRID V22 — 4 cards desktop, 3 laptop, 2 tablet, 1 phone
   Smaller cards and badges, aligned content and CTA.
   ========================================================= */
@media (min-width: 1281px) {
  .programs-shell {
    width: min(calc(100% - 56px), 1248px) !important;
  }
  .programs-grid {
    grid-template-columns: repeat(4, minmax(0, 286px)) !important;
    gap: 54px 28px !important;
    margin-top: 58px !important;
  }
  .program-card {
    width: 286px !important;
    max-width: 286px !important;
    height: 476px !important;
    border-radius: 18px !important;
  }
  .program-image-wrap,
  .program-image {
    width: 286px !important;
    height: 180px !important;
    aspect-ratio: auto !important;
  }
  .program-card-body {
    height: 296px !important;
    min-height: 296px !important;
    padding: 61px 18px 18px !important;
  }
  .program-badge {
    top: -57px !important;
    width: 142px !important;
    height: 140px !important;
    transform: translateX(-50%) !important;
  }
  .program-badge-base {
    width: 142px !important;
    height: 140px !important;
  }
  .program-badge-icon {
    top: 62px !important;
    transform: translate(-50%, -50%) scale(.78) !important;
    transform-origin: center;
  }
  .program-card-title {
    max-width: 252px !important;
    min-height: 50px !important;
    font-size: 18px !important;
    line-height: 24px !important;
    align-items: flex-start !important;
  }
  .program-card-text {
    max-width: 250px !important;
    min-height: 72px !important;
    margin: 7px auto 10px !important;
    font-size: 12.5px !important;
    line-height: 18px !important;
  }
  .card-cta {
    width: 176px !important;
    min-width: 176px !important;
    height: 46px !important;
    min-height: 46px !important;
    font-size: 13px !important;
  }
}

/* Standard laptops: three columns without squeezing typography. */
@media (max-width: 1280px) and (min-width: 1001px) {
  .programs-shell { width: min(calc(100% - 44px), 1040px) !important; }
  .programs-grid {
    grid-template-columns: repeat(3, minmax(0, 320px)) !important;
    gap: 56px 34px !important;
    margin-top: 56px !important;
  }
  .program-card { width: 320px !important; max-width: 320px !important; height: 500px !important; }
  .program-image-wrap, .program-image { width: 320px !important; height: 201px !important; aspect-ratio: auto !important; }
  .program-card-body { height: 299px !important; min-height: 299px !important; padding: 64px 21px 19px !important; }
  .program-badge { top: -61px !important; transform: translateX(-50%) scale(.84) !important; transform-origin: top center; }
  .program-card-title { min-height: 52px !important; font-size: 19px !important; line-height: 25px !important; }
  .program-card-text { min-height: 66px !important; font-size: 13px !important; line-height: 19px !important; }
  .card-cta { width: 188px !important; min-width: 188px !important; height: 48px !important; min-height: 48px !important; font-size: 14px !important; }
}

/* Tablet: two columns. */
@media (max-width: 1000px) and (min-width: 641px) {
  .programs-shell { width: min(calc(100% - 40px), 720px) !important; }
  .programs-grid {
    grid-template-columns: repeat(2, minmax(0, 330px)) !important;
    gap: 52px 34px !important;
    margin-top: 52px !important;
  }
  .program-card { width: 330px !important; max-width: 330px !important; height: 510px !important; }
  .program-image-wrap, .program-image { width: 330px !important; height: 207px !important; aspect-ratio: auto !important; }
  .program-card-body { height: 303px !important; min-height: 303px !important; padding: 66px 22px 20px !important; }
  .program-badge { top: -63px !important; transform: translateX(-50%) scale(.86) !important; transform-origin: top center; }
  .program-card-title { min-height: 52px !important; font-size: 19px !important; line-height: 25px !important; }
  .program-card-text { min-height: 66px !important; font-size: 13px !important; line-height: 19px !important; }
}

/* Phones: one fluid card and comfortable touch targets. */
@media (max-width: 640px) {
  .programs-shell { width: min(calc(100% - 28px), 400px) !important; }
  .programs-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 42px !important;
    margin-top: 42px !important;
  }
  .program-card {
    width: 100% !important;
    max-width: 360px !important;
    height: auto !important;
    min-height: 500px !important;
    margin-inline: auto;
  }
  .program-image-wrap,
  .program-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 387 / 243 !important;
  }
  .program-card-body {
    height: auto !important;
    min-height: 286px !important;
    padding: 67px 20px 20px !important;
  }
  .program-badge {
    top: -63px !important;
    transform: translateX(-50%) scale(.84) !important;
    transform-origin: top center;
  }
  .program-card-title {
    min-height: 0 !important;
    font-size: 19px !important;
    line-height: 25px !important;
  }
  .program-card-text {
    min-height: 0 !important;
    margin: 8px auto 18px !important;
    font-size: 13px !important;
    line-height: 19px !important;
  }
  .card-cta {
    width: min(188px, calc(100% - 34px)) !important;
    min-width: 0 !important;
    height: 48px !important;
    min-height: 48px !important;
    font-size: 14px !important;
  }
}


/* =========================================================
   FINAL MICRO POLISH V24
   Equal card rhythm, balanced title wrapping and partner spacing
   ========================================================= */
.program-card-body {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.program-card-title {
  width: 100%;
  text-wrap: balance;
  hyphens: none;
}
.program-card-text {
  width: 100%;
  text-wrap: pretty;
  hyphens: auto;
}
.card-cta {
  margin-top: auto !important;
  flex: 0 0 auto;
}

/* Desktop: keep all rows visually identical and give long descriptions room. */
@media (min-width: 1281px) {
  .program-card { height: 488px !important; }
  .program-card-body {
    height: 308px !important;
    min-height: 308px !important;
    padding: 61px 18px 18px !important;
  }
  .program-card-title {
    min-height: 50px !important;
    margin-bottom: 0 !important;
    align-items: flex-start !important;
  }
  .program-card-text {
    min-height: 78px !important;
    margin: 8px auto 12px !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}

/* Laptop: preserve three columns without CTA drift. */
@media (max-width: 1280px) and (min-width: 1001px) {
  .program-card { height: 512px !important; }
  .program-card-body {
    height: 311px !important;
    min-height: 311px !important;
  }
  .program-card-text {
    min-height: 72px !important;
    margin: 8px auto 12px !important;
  }
}

/* Tablet: equal card bottoms and touch-friendly spacing. */
@media (max-width: 1000px) and (min-width: 641px) {
  .program-card { height: 522px !important; }
  .program-card-body {
    height: 315px !important;
    min-height: 315px !important;
  }
  .program-card-text {
    min-height: 72px !important;
    margin: 8px auto 12px !important;
  }
}

/* Mobile: natural text height, fixed separation from CTA. */
@media (max-width: 640px) {
  .program-card-body { row-gap: 0; }
  .program-card-title { text-wrap: balance; }
  .program-card-text {
    margin: 9px auto 20px !important;
    min-height: 0 !important;
  }
  .card-cta { margin-top: auto !important; }
}

/* Partner section: optically even spacing without enlarging the section. */
@media (min-width: 1281px) {
  .partners-artboard { padding-top: 84px; }
  .partners-title { margin-bottom: 20px; }
  .insurance-logos {
    grid-template-columns: repeat(4, 320px);
    gap: 18px;
  }
  .insurance-logos .partner-logo-image { width: 320px; max-width: 100%; }
  .business-title { margin-top: 82px; margin-bottom: 30px; }
  .business-logos {
    grid-template-columns: repeat(5, 248px);
    gap: 12px;
  }
  .business-logos .partner-logo-image { width: 248px; max-width: 100%; }
}

@media (max-width: 1280px) and (min-width: 721px) {
  .partners-title { margin-bottom: 18px; }
  .business-title { margin-top: 58px; margin-bottom: 24px; }
}

@media (max-width: 720px) {
  .partners-title { margin-bottom: 14px; }
  .business-title { margin-top: 44px; margin-bottom: 16px; }
  .insurance-logos,
  .business-logos { row-gap: 8px !important; }
}


/* Menu typography aligned with the existing PGA complaints-page header */
.desktop-nav,
.desktop-nav .nav-link {
  font-family: "Open Sans", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
}
.mobile-nav,
.mobile-nav-link {
  font-family: "Open Sans", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
}
@media (max-width: 1599px) and (min-width: 1101px) {
  .desktop-nav { gap: 22px !important; }
  .desktop-nav, .desktop-nav .nav-link { font-size: 14px !important; }
}


/* Reklamacje — formularz produkcyjny /reklamacje.php */
.complaint-page {
  min-height: 100vh;
  background: #fff;
}
.complaint-hero {
  padding: 72px 24px 42px;
  background: linear-gradient(180deg, #eef4fb 0%, #f8fbfd 100%);
  text-align: center;
}
.complaint-hero h1 {
  margin: 0;
  color: var(--pga-deep);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
}
.complaint-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #4a6895;
  font-size: 17px;
  line-height: 1.65;
}
.complaint-shell {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  padding: 62px 0 88px;
}
.complaint-form {
  padding: 42px;
  border: 1px solid #e4ebf4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(26, 65, 112, .08);
}
.complaint-section + .complaint-section { margin-top: 42px; }
.complaint-section-title {
  margin: 0 0 22px;
  color: var(--pga-deep);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.complaint-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.complaint-field { grid-column: span 12; min-width: 0; }
.complaint-field.half { grid-column: span 6; }
.complaint-field.third { grid-column: span 4; }
.complaint-field.quarter { grid-column: span 3; }
.complaint-field.two { grid-column: span 2; }
.complaint-label {
  display: block;
  margin: 0 0 7px;
  color: #214f8d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.complaint-input,
.complaint-textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfd9e7;
  border-radius: 10px;
  background: #fff;
  color: #173f75;
  font: 400 16px/1.45 var(--font-open-sans, "Open Sans"), Arial, sans-serif;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.complaint-textarea { min-height: 190px; resize: vertical; }
.complaint-input::placeholder,
.complaint-textarea::placeholder { color: #8798ae; }
.complaint-input:focus,
.complaint-textarea:focus {
  border-color: #1292ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 146, 255, .16);
}
.complaint-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.complaint-check {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: #254f83;
  font-size: 15px;
  line-height: 1.45;
  cursor: pointer;
}
.complaint-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #1292ff;
}
.complaint-check a {
  color: #0b79dc;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.complaint-actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.complaint-submit {
  min-width: 220px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #1292ff;
  color: #fff;
  font: 600 16px/1 var(--font-open-sans, "Open Sans"), Arial, sans-serif;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.complaint-submit:hover { background: #0789f4; box-shadow: 0 8px 18px rgba(18, 146, 255, .2); transform: translateY(-1px); }
.complaint-submit:focus-visible { outline: 3px solid rgba(18, 146, 255, .48); outline-offset: 4px; }
.form-alert {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.55;
}
.form-alert strong { display: block; margin-bottom: 3px; font-size: 16px; }
.form-alert--success { border: 1px solid #98d7b1; background: #effaf3; color: #17663a; }
.form-alert--error { border: 1px solid #f0a8a8; background: #fff3f3; color: #8a1f1f; }
.form-alert ul { margin: 8px 0 0; padding-left: 20px; }
.complaint-hint { margin: 7px 0 0; color: #6d7f97; font-size: 12px; line-height: 1.45; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.complaint-page .site-header { border-bottom: 1px solid #eef2f6; }
.complaint-page .nav-link[aria-current="page"] { color: #0b79dc; font-weight: 600; }
@media (max-width: 900px) {
  .complaint-shell { padding: 46px 0 70px; }
  .complaint-form { padding: 30px 24px; }
  .complaint-field.half,
  .complaint-field.third,
  .complaint-field.quarter,
  .complaint-field.two { grid-column: span 6; }
}
@media (max-width: 600px) {
  .complaint-hero { padding: 46px 18px 32px; }
  .complaint-hero p { font-size: 15px; }
  .complaint-shell { width: min(calc(100% - 24px), 1180px); padding: 30px 0 56px; }
  .complaint-form { padding: 24px 16px; border-radius: 16px; }
  .complaint-grid { gap: 14px; }
  .complaint-field.half,
  .complaint-field.third,
  .complaint-field.quarter,
  .complaint-field.two { grid-column: span 12; }
  .complaint-options { display: grid; gap: 6px; }
  .complaint-submit { width: 100%; }
}


/* =========================================================
   ROOT SYNC 2026-09-13
   Badge geometry copied from the accepted /nowa2 version.
   Kept at end of file deliberately so legacy/cache-era rules cannot win.
   ========================================================= */
.intro-arrow > img { display:none !important; }
.intro-arrow-svg {
  display:block !important;
  width:57px !important;
  height:56px !important;
  max-width:none !important;
}

@media (min-width: 1281px) {
  .program-badge {
    top:-57px !important;
    width:142px !important;
    height:140px !important;
    transform:translateX(-50%) !important;
  }
  .program-badge-base {
    width:142px !important;
    height:140px !important;
    max-width:none !important;
  }
  .program-badge-icon {
    top:62px !important;
    transform:translate(-50%, -50%) scale(.78) !important;
    transform-origin:center !important;
    max-width:none !important;
  }
}

@media (max-width: 1280px) and (min-width: 1001px) {
  .program-badge {
    top:-61px !important;
    width:184px !important;
    height:181px !important;
    transform:translateX(-50%) scale(.84) !important;
    transform-origin:top center !important;
  }
  .program-badge-base {
    width:184px !important;
    height:181px !important;
    max-width:none !important;
  }
  .program-badge-icon {
    top:80.5px !important;
    max-width:none !important;
  }
}

@media (max-width: 1000px) and (min-width: 641px) {
  .program-badge {
    top:-63px !important;
    width:184px !important;
    height:181px !important;
    transform:translateX(-50%) scale(.86) !important;
    transform-origin:top center !important;
  }
  .program-badge-base {
    width:184px !important;
    height:181px !important;
    max-width:none !important;
  }
  .program-badge-icon {
    top:80.5px !important;
    max-width:none !important;
  }
}

@media (max-width: 640px) {
  .program-badge {
    top:-63px !important;
    width:184px !important;
    height:181px !important;
    transform:translateX(-50%) scale(.84) !important;
    transform-origin:top center !important;
  }
  .program-badge-base {
    width:184px !important;
    height:181px !important;
    max-width:none !important;
  }
  .program-badge-icon {
    top:80.5px !important;
    max-width:none !important;
  }
}
