:root {
  --green: #123f28;
  --green-2: #24583b;
  --cream: #f6ece0;
  --cream-soft: #faf5ef;
  --cream-green: #eeede5;
  --paper: #fffdf9;
  --line: #e6dccf;
  --gold: #aa7f4e;
  --ink: #1f1f1f;
  --muted: #5f5a53;
  --shadow: 0 18px 45px rgba(47, 36, 24, .09);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid rgba(36, 32, 27, .08);
  box-shadow: 0 6px 18px rgba(25, 21, 18, .04);
}

.nav {
  width: min(var(--container), calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: auto;
  height: 84px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
  color: #151515;
  font-size: 15px;
  white-space: nowrap;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--green);
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(18, 63, 40, .17);
  white-space: nowrap;
}

.header-button {
  min-height: 48px;
  padding-inline: 24px;
  font-size: 15px;
}

.button-outline {
  background: rgba(255, 255, 255, .64);
  color: var(--green);
  box-shadow: none;
}

.button-light {
  min-width: 202px;
  background: #f6eee3;
  color: #12110f;
  border-color: #f6eee3;
  box-shadow: none;
}

.button-icon,
.line-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.line-icon {
  color: var(--green);
}

.section-band {
  position: relative;
}

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

.narrow {
  width: min(1110px, calc(100% - 48px));
}

.center {
  text-align: center;
}

.hero {
  min-height: 650px;
  background: var(--cream);
  overflow: hidden;
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(610px, .96fr) minmax(420px, .94fr);
  align-items: stretch;
  gap: 28px;
}

.hero-copy {
  align-self: center;
  max-width: 660px;
  padding: 42px 0 46px;
}

.eyebrow,
.section-kicker,
.small-kicker {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 25px;
}

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

h1,
.therapy h2,
.benefits h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(46px, 3.7vw, 56px);
  margin-bottom: 30px;
}

.gold-line,
.green-line {
  width: 64px;
  height: 2px;
  background: var(--gold);
}

.hero .gold-line {
  margin-bottom: 27px;
}

.hero-text {
  max-width: 480px;
  color: #4c4741;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.service-note {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 800;
}

.hero-photo {
  position: relative;
  min-height: 650px;
  margin-right: calc((50vw - min(var(--container), calc(100vw - 48px)) / 2) * -1);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  z-index: 1;
  width: 38%;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(246, 236, 224, .82) 40%, rgba(246, 236, 224, 0) 100%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center top;
}

.benefits {
  padding: 70px 0 62px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0) 34%),
    var(--cream-soft);
  border-top: 1px solid rgba(172, 149, 118, .2);
}

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

.section-kicker {
  margin-bottom: 13px;
  color: var(--gold);
}

.section-heading h2,
.therapy h2 {
  color: var(--ink);
  font-size: clamp(34px, 3vw, 46px);
}

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

.benefit-card {
  min-height: 240px;
  padding: 25px 15px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
  min-width: 0;
}

.benefit-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 19px;
}

.benefit-card h3 {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1.14;
  font-weight: 900;
  width: 100%;
}

.benefit-card p {
  width: 100%;
  margin-top: 12px;
  color: #222;
  font-size: 14px;
  line-height: 1.42;
}

.duration-pill {
  width: min(540px, 100%);
  min-height: 58px;
  margin: 34px auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f8efe4;
  box-shadow: 0 10px 26px rgba(45, 35, 25, .06);
  font-size: 19px;
}

.therapy {
  padding: 70px 0 72px;
  background: linear-gradient(180deg, var(--cream-green), #f2f0e9 100%);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(52px, 6vw, 86px);
}

.framed-photo {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(40, 30, 20, .09);
}

.framed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapy-photo {
  aspect-ratio: 370 / 452;
}

.therapy-copy {
  max-width: 650px;
}

.therapy-copy p {
  margin-top: 20px;
  max-width: 625px;
  color: #48443f;
  font-size: 17px;
  line-height: 1.62;
}

.list-title {
  margin: 29px 0 11px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.check-list {
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(51, 44, 37, .14);
  color: #292724;
  font-size: 16px;
}

.check-list span,
.cta-side li span {
  width: 19px;
  height: 19px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 12px;
  line-height: 1;
  flex: 0 0 auto;
}

.support-box {
  margin-top: 24px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}

.support-box p {
  margin: 0;
  max-width: none;
  color: #38342f;
  font-size: 17px;
  line-height: 1.45;
}

.support-box p strong:last-child {
  color: var(--green);
}

.support-icon {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about {
  padding: 72px 0 74px;
  background: #f8f4ee;
}

.about-panel {
  width: min(1120px, calc(100% - 48px));
  padding: clamp(46px, 5vw, 68px);
  background:
    radial-gradient(circle at 21% 45%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 48%),
    #fffefa;
}

.reverse {
  grid-template-columns: minmax(360px, 480px) minmax(360px, 560px);
}

.small-kicker {
  margin-bottom: 14px;
  color: #111;
  font-size: 13px;
  letter-spacing: .08em;
}

.about h2,
.reviews h2,
.locations h2,
.cta-panel h2 {
  color: var(--ink);
  font-size: clamp(34px, 3.05vw, 46px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.about h2 {
  max-width: 520px;
}

.green-line {
  margin: 24px 0 27px;
  width: 32px;
  background: var(--green-2);
}

.about-copy p {
  max-width: 430px;
  margin-top: 20px;
  color: #3f3b35;
  font-size: 17px;
  line-height: 1.76;
}

.about-photo {
  aspect-ratio: 371 / 371;
  align-self: center;
}

.stats {
  margin-top: 39px;
  display: flex;
  align-items: center;
  gap: 46px;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #151515;
  font-size: 15px;
  line-height: 1.35;
}

.stat strong,
.person strong,
.fact strong {
  display: block;
}

.stat-icon,
.fact-icon,
.pin {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon {
  width: 58px;
  height: 58px;
  color: var(--green);
}

.reviews {
  padding: 72px 0 74px;
  background: var(--cream-soft);
}

.center-line {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

.stars {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 28px;
  letter-spacing: .08em;
}

.section-heading p {
  color: #68635c;
  font-size: 15px;
}

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

.review-card {
  min-height: 270px;
  padding: 31px 32px 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  min-width: 0;
}

.quote {
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: .65;
  font-weight: 700;
}

.review-card p {
  margin: 27px 0 25px;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.62;
}

.person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.person span {
  color: #5c5750;
  font-size: 13px;
}

.person strong {
  margin-bottom: 2px;
  color: #1f1f1f;
  font-size: 15px;
}

.person .initial {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dedad3;
}

.dots span:first-child {
  background: var(--green-2);
}

.locations {
  padding: 72px 0 76px;
  background: #fbf7f1;
}

.cities {
  margin: 38px 0 27px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.cities span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #141414;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
}

.pin {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.map-frame {
  overflow: hidden;
  border-radius: 13px;
}

.map-frame img {
  width: 100%;
}

.cta-panel {
  margin-top: 43px;
  min-height: 205px;
  padding: 39px 62px;
  display: grid;
  grid-template-columns: 1.2fr .92fr;
  align-items: center;
  gap: 52px;
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 9% 42%, rgba(255, 255, 255, .17), rgba(255, 255, 255, 0) 12%),
    linear-gradient(105deg, rgba(18, 63, 40, .98) 0%, rgba(18, 63, 40, .93) 55%, rgba(18, 63, 40, .96) 100%);
  box-shadow: 0 18px 34px rgba(25, 56, 37, .14);
}

.cta-main {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 27px;
}

.calendar-badge {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .18);
}

.calendar-badge svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-panel h2 {
  color: #fff;
}

.cta-main p {
  max-width: 410px;
  margin-top: 17px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.58;
}

.cta-side ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.9;
}

.cta-side li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-side li span {
  color: #fff;
}

.facts {
  margin-top: 38px;
  padding: 23px 30px 19px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .6);
}

.fact {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.fact-icon {
  width: 35px;
  height: 35px;
  color: var(--green);
  flex: 0 0 auto;
}

.fact span {
  color: #67625c;
  font-size: 13px;
  line-height: 1.25;
}

.fact strong {
  color: #151515;
  font-size: 13px;
}

.facts p {
  grid-column: 1 / -1;
  margin-top: 1px;
  padding-top: 14px;
  border-top: 1px solid rgba(51, 44, 37, .12);
  color: #8d877e;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 18px;
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(420px, .95fr) minmax(360px, .9fr);
  }

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

  .benefit-card {
    min-height: 220px;
  }
}

@media (max-width: 920px) {
  .nav {
    min-height: 78px;
  }

  .nav-links {
    display: none;
  }

  .logo img {
    width: auto;
    height: 46px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .reverse,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 0;
    width: 100%;
  }

  .hero-copy {
    width: min(680px, calc(100% - 48px));
    margin: 0 auto;
    padding: 66px 0 46px;
  }

  .hero-photo {
    min-height: 420px;
    margin: 0;
  }

  .hero-photo img {
    min-height: 420px;
    object-position: center top;
  }

  .hero-photo::before {
    width: 48%;
  }

  .split-grid {
    gap: 38px;
  }

  .therapy-photo,
  .about-photo {
    max-height: 520px;
  }

  .about-panel {
    padding: 40px 28px;
  }

  .about-photo {
    order: -1;
  }

  .review-grid,
  .facts {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-panel {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow,
  .nav {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .about-panel {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .site-header {
    position: static;
  }

  .nav {
    min-height: 74px;
    gap: 14px;
  }

  .logo img {
    width: 146px;
  }

  .header-button {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .hero-copy {
    width: min(100% - 32px, 680px);
    padding: 47px 0 36px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: .15em;
  }

  h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-text,
  .service-note {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .service-note {
    align-items: flex-start;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 330px;
  }

  .benefits,
  .therapy,
  .about,
  .reviews,
  .locations {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .section-heading h2,
  .therapy h2,
  .about h2,
  .reviews h2,
  .locations h2,
  .cta-panel h2 {
    font-size: 30px;
    line-height: 1.14;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section-heading {
    max-width: 100%;
  }

  .benefit-card h3,
  .benefit-card p,
  .review-card p,
  .therapy-copy p,
  .about-copy p,
  .support-box p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .benefit-grid,
  .review-grid,
  .facts,
  .cities {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
    width: 100%;
    padding: 30px 22px;
  }

  .benefit-card h3 {
    min-height: 0;
  }

  .benefit-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .duration-pill {
    min-height: 0;
    padding: 16px 18px;
    font-size: 16px;
  }

  .therapy-copy p,
  .about-copy p,
  .support-box p {
    font-size: 16px;
  }

  .support-box {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .review-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .review-card p {
    line-height: 1.58;
  }

  .cities span {
    font-size: 16px;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  .cta-main {
    grid-template-columns: 1fr;
  }

  .facts {
    padding: 20px;
  }

  .fact {
    justify-content: flex-start;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1220px;
  }
}

/* === Cennik === */
.pricing {
  background: var(--cream-soft);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.price-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--green);
}
.price-card .price-meta {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  min-height: 40px;
}
.price-card .price {
  margin: 14px 0 22px;
  font-size: 34px;
  font-weight: 900;
  color: var(--ink);
}
.price-card .button {
  width: 100%;
  justify-content: center;
}
.price-card-featured {
  border-color: var(--green);
  background: linear-gradient(180deg, var(--cream-green), #f2f0e9 100%);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-note {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 820px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* === Ściana opinii (3 rzędy marquee) === */
.reviews-marquee {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-row {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
  will-change: transform;
}
.marquee-left {
  animation: marquee-scroll 50s linear infinite;
}
.marquee-right {
  animation: marquee-scroll 50s linear infinite;
  animation-direction: reverse;
}
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reviews-marquee .review-card {
  flex: 0 0 358px;
  width: 358px;
  margin: 0;
  text-align: left;
}
@media (max-width: 820px) {
  .reviews-marquee .review-card {
    flex-basis: 286px;
    width: 286px;
  }
  .marquee-left,
  .marquee-right {
    animation-duration: 34s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-left,
  .marquee-right {
    animation: none;
  }
  .marquee-track {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

/* === Panel CTA: hierarchia przyciskow + odstepy === */
.cta-panel {
  padding: 48px 64px;
  gap: 58px;
}
.cta-side ul {
  margin-bottom: 26px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-buttons .button {
  min-height: 56px;
}
.button-light:hover {
  background: #fff;
}
.cta-call {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: #fff;
  box-shadow: none;
}
.cta-call:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}
@media (max-width: 820px) {
  .cta-panel {
    padding: 34px 26px;
    gap: 30px;
  }
  .cta-buttons .button {
    flex: 1 1 100%;
  }
}

/* === Hero: zdjecie tla tlo1.png (jasny lewy bok pod tekst) === */
.hero {
  background-image:
    linear-gradient(90deg, rgba(250, 245, 239, .98) 0%, rgba(250, 245, 239, .82) 28%, rgba(250, 245, 239, .35) 50%, rgba(250, 245, 239, 0) 64%),
    url("assets/tlo2.png");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}
.hero-grid {
  grid-template-columns: 1fr;
}
.hero-photo {
  display: none;
}
.hero-copy {
  max-width: 640px;
}
@media (max-width: 820px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(250, 245, 239, .93) 0%, rgba(250, 245, 239, .80) 45%, rgba(250, 245, 239, .60) 100%),
      url("assets/tlo2.png");
    background-position: 70% center;
  }
  .hero h1 {
    font-size: 33px;
    line-height: 1.12;
  }
}

/* === Menu na zdjeciu w tle (przezroczysty header nalozony na hero) === */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}
.nav {
  min-height: 108px;
}
.nav-links {
  color: var(--green);
}
.nav-links a {
  color: var(--green);
  font-weight: 600;
}
.header-button {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.hero {
  background-image:
    linear-gradient(0deg, rgba(250, 245, 239, .92) 0%, rgba(250, 245, 239, 0) 18%),
    linear-gradient(180deg, rgba(250, 245, 239, .70) 0%, rgba(250, 245, 239, 0) 24%),
    linear-gradient(90deg, rgba(250, 245, 239, .99) 0%, rgba(250, 245, 239, .92) 28%, rgba(250, 245, 239, .45) 50%, rgba(250, 245, 239, 0) 66%),
    url("assets/tlo2.png");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}
.hero-copy {
  padding-top: 150px;
  padding-bottom: 70px;
}
@media (max-width: 820px) {
  .nav {
    min-height: 70px;
    gap: 12px;
  }
  .nav-links {
    display: none;
  }
  .logo img {
    height: 54px;
  }
  .header-button {
    display: none;
  }
  .hero {
    background-image:
      linear-gradient(0deg, rgba(250, 245, 239, .95) 0%, rgba(250, 245, 239, 0) 16%),
      linear-gradient(180deg, rgba(250, 245, 239, .92) 0%, rgba(250, 245, 239, .80) 45%, rgba(250, 245, 239, .60) 100%),
      url("assets/tlo2.png");
    background-position: 70% center;
  }
  .hero-copy {
    padding-top: 104px;
    padding-bottom: 54px;
  }
}

/* Usun kreske miedzy hero a sekcja Korzysci + wyrownaj tlo */
.benefits {
  border-top: none;
  background: var(--cream-soft);
}

/* === Hero: elementy z makiety === */
.hero-actions {
  flex-wrap: wrap;
  align-items: stretch;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  min-height: 58px;
  border-radius: 10px;
  text-align: left;
}
.hero-cta-ico {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cta-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-cta-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-cta-txt strong {
  font-size: 16px;
  font-weight: 800;
}
.hero-cta-txt small {
  margin-top: 3px;
  font-size: 12px;
  opacity: .82;
}
.hero-cta-primary {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  box-shadow: 0 14px 26px rgba(18, 63, 40, .18);
}
.hero-cta-primary .hero-cta-ico {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}
.hero-cta-ghost {
  background: rgba(255, 255, 255, .74);
  color: var(--green);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.hero-cta-ghost .hero-cta-ico {
  background: rgba(18, 63, 40, .08);
  color: var(--green);
}

.hero-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 640px;
}
.hf {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hf-ico {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(18, 63, 40, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hf-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.hf-txt {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.hf-txt strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.hero-rating {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.hero-rating .stars {
  color: #e0a73a;
  font-size: 17px;
  letter-spacing: 1px;
}
.hero-rating strong {
  color: var(--ink);
  font-size: 16px;
}

.hero-badge {
  position: absolute;
  top: 126px;
  right: clamp(24px, 4vw, 70px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-badge-ico {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-badge-txt {
  font-size: 12.5px;
  line-height: 1.42;
  color: var(--muted);
}
.hero-badge-txt strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-badge {
    display: none;
  }
}
@media (max-width: 820px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
  }
  .hero-cta {
    width: 100%;
  }
}

/* === Mobilny hero: zdjecie w tle (przesuniete w lewo) + pionowy gradient === */
@media (max-width: 820px) {
  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(250, 245, 239, .93) 0%, rgba(250, 245, 239, .80) 45%, rgba(250, 245, 239, .60) 100%),
      url("assets/tlo2.png");
    background-size: cover;
    background-position: 82% top;
    background-repeat: no-repeat;
  }
  .hero-grid {
    display: block;
    min-height: auto;
  }
  .hero-copy {
    padding: 100px 0 44px;
  }
  .hero-rating {
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .hero-rating > span:last-child {
    flex-basis: 100%;
    margin-top: 2px;
  }
  .hero-photo {
    display: none;
  }
}


/* ============================================================
   v30: Dla kogo / Jak wyglada wizyta / Pakiety / Mapa zasiegu /
   FAQ / Stopka
   ============================================================ */

/* === Dla kogo === */
.audience {
  padding: 70px 0 66px;
  background: var(--cream);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.audience-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
}
.audience-ico {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(18, 63, 40, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.audience-ico svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audience-card h3 {
  font-size: 19px;
  font-weight: 900;
}
.audience-card p {
  margin-top: 10px;
  color: #48443f;
  font-size: 15px;
  line-height: 1.5;
}

/* === Jak wyglada wizyta === */
.visit {
  padding: 70px 0 72px;
  background: #fffefa;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  margin-top: 6px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(18, 63, 40, .2);
}
.step h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
}
.step p {
  margin-top: 10px;
  color: #48443f;
  font-size: 15px;
  line-height: 1.55;
}

/* === Pakiety === */
.pakiet-banner {
  margin-top: 26px;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 63, 40, .17);
}
.pakiet-left {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}
.pakiet-ico {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pakiet-ico svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pakiet-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pakiet-txt strong {
  font-size: 19px;
  font-weight: 900;
}
.pakiet-txt span {
  font-size: 14px;
  color: rgba(255, 255, 255, .84);
}
.pricing .support-box {
  margin-top: 22px;
}

/* === Mapa zasiegu (schemat) === */
.area-map {
  position: relative;
  margin-top: 38px;
  aspect-ratio: 1110 / 430;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--cream-green);
  overflow: hidden;
}
.area-blob {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.area-blob path {
  fill: rgba(18, 63, 40, .06);
  stroke: rgba(18, 63, 40, .25);
  stroke-width: 1.5;
}
.city-chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(47, 36, 24, .12);
  font-size: 14px;
  font-weight: 800;
  color: #141414;
  white-space: nowrap;
}
.city-chip .pin,
.gab-pin .pin {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.gab-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 63, 40, .3);
  white-space: nowrap;
}
.gab-pin .pin {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.gab-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
}
.gab-txt strong {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}
.map-legend {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 600;
  color: #48443f;
}
.map-legend svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* === FAQ === */
.faq {
  padding: 72px 0 76px;
  background: var(--cream-soft);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(51, 44, 37, .14);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}
.faq-item[open] summary svg {
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 4px 22px;
  color: #48443f;
  font-size: 15.5px;
  line-height: 1.6;
}

/* === Stopka === */
.site-footer {
  background: var(--green);
  color: #fff;
  padding: 56px 0 28px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.footer-brand p {
  margin-top: 16px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .76);
}
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.footer-col a,
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 15px;
  color: #fff;
  line-height: 1.45;
}
.footer-col a:hover {
  text-decoration: underline;
}
.footer-col svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(255, 255, 255, .76);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-cities {
  color: rgba(255, 255, 255, .76) !important;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

/* === Responsywnosc nowych sekcji === */
@media (max-width: 920px) {
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .steps {
    gap: 28px;
    max-width: 480px;
    margin-inline: auto;
  }
  .step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .step-num {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    font-size: 18px;
  }
  .step h3 {
    margin-top: 6px;
  }
  .step .step-body { flex: 1; }
  .audience-card {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 16px;
    padding: 18px;
  }
  .audience-ico {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex: 0 0 auto;
  }
  .audience-card h3 { font-size: 16px; }
  .audience-card p { font-size: 13.5px; margin-top: 6px; }
  .pakiet-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
  }
  .pakiet-txt strong { font-size: 16px; }
  .pakiet-banner .button { justify-content: center; }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 920px) {
  .audience-card { display: grid; grid-template-columns: 52px 1fr; }
  .audience-card h3 { grid-column: 2; }
  .audience-card p { grid-column: 2; }
  .audience-ico { grid-row: 1 / span 2; }
  .step { display: grid; grid-template-columns: 42px 1fr; column-gap: 16px; }
  .step h3 { grid-column: 2; margin-top: 8px; }
  .step p { grid-column: 2; margin-top: 6px; }
  .step-num { grid-row: 1 / span 2; }
}
@media (max-width: 640px) {
  .area-map {
    aspect-ratio: 350 / 280;
    margin-top: 28px;
  }
  .city-chip {
    padding: 5px 9px;
    gap: 5px;
    font-size: 10.5px;
  }
  .city-chip .pin { width: 11px; height: 11px; }
  .gab-pin {
    padding: 6px 11px;
    gap: 7px;
  }
  .gab-pin .pin { width: 13px; height: 13px; }
  .gab-txt { font-size: 9px; }
  .gab-txt strong { font-size: 10.5px; }
  .map-legend {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: -38px;
    transform: translateX(-50%);
    white-space: nowrap;
    background: none;
    font-size: 12px;
    padding: 0;
  }
  .area-map { overflow: visible; margin-bottom: 46px; }
  .faq { padding: 54px 0 56px; }
  .faq-item summary { font-size: 15.5px; padding: 16px 2px; }
  .faq-item p { font-size: 14px; }
  .audience,
  .visit {
    padding-top: 54px;
    padding-bottom: 56px;
  }
}
