:root {
  --ink: #10201d;
  --muted: #5f6f69;
  --paper: #fffdf7;
  --mint: #d8f7ea;
  --teal: #027c73;
  --teal-dark: #04524f;
  --lime: #c7ee5d;
  --yellow: #ffd447;
  --orange: #ff7a3d;
  --red: #ed4545;
  --line: rgba(16, 32, 29, 0.14);
  --shadow: 0 22px 70px rgba(4, 82, 79, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 12% 20%, rgba(199, 238, 93, 0.28), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(255, 122, 61, 0.16), transparent 22%),
    linear-gradient(180deg, #fffdf7 0%, #f7fbf3 48%, #fffaf0 100%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 46px);
  color: var(--ink);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 12px 40px rgba(16, 32, 29, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(2, 124, 115, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 32, 29, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(2, 124, 115, 0.12);
}

.hero {
  position: relative;
  min-height: clamp(620px, 88svh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 72px) 72px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.88) 32%, rgba(255, 253, 247, 0.32) 58%, rgba(255, 253, 247, 0.02) 100%),
    url("assets/hero-gowniana-sprawa.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  content: "";
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  width: min(640px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 11px;
  height: 11px;
  content: "";
  background: var(--orange);
  border: 3px solid var(--yellow);
  border-radius: 50%;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy,
.section-copy p,
.quote-copy p {
  color: #344742;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  color: #071a17;
  background: var(--yellow);
  box-shadow: 0 18px 36px rgba(255, 122, 61, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffe073;
}

.btn-ghost {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(2, 124, 115, 0.22);
  box-shadow: 0 14px 36px rgba(4, 82, 79, 0.1);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list li {
  min-height: 94px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(2, 124, 115, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(4, 82, 79, 0.08);
}

.proof-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.proof-list span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.scroll-hint {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 28px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 29, 0.12);
  font-size: 0.82rem;
  font-weight: 950;
}

.section {
  padding: clamp(74px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.alarm-strip {
  padding: 18px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.alarm-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.alarm-inner p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 950;
}

.alarm-inner a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 950;
}

.offer-section {
  background:
    linear-gradient(180deg, rgba(216, 247, 234, 0.65), rgba(255, 253, 247, 0.96)),
    var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.package-card,
.team-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 220px;
  padding: 22px;
}

.feature-card::after,
.package-card::after,
.team-card::after {
  position: absolute;
  inset: auto -30px -40px auto;
  width: 96px;
  height: 96px;
  content: "";
  background: rgba(255, 212, 71, 0.45);
  border-radius: 50%;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-card p,
.package-card p,
.team-card p,
.steps p,
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-lead {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.packages-section {
  background: #fffaf0;
}

.start-visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 4vw, 30px);
  margin-bottom: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 32, 29, 0.96), rgba(2, 124, 115, 0.94)),
    var(--teal-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.start-visit h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.start-visit p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.start-visit strong {
  display: grid;
  min-width: 150px;
  min-height: 74px;
  place-items: center;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 950;
  text-align: center;
}

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

.package-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.package-card-hot {
  color: #fff;
  background:
    linear-gradient(140deg, rgba(2, 124, 115, 0.96), rgba(4, 82, 79, 0.96)),
    var(--teal);
  border-color: transparent;
  transform: translateY(-14px);
}

.package-card.package-card-hot p,
.package-card.package-card-hot li {
  color: rgba(255, 255, 255, 0.94);
}

.package-card-hot .package-kicker {
  color: var(--yellow);
}

.package-card.package-card-hot .package-price {
  color: var(--yellow);
}

.package-kicker {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package-price {
  margin: 18px 0 4px;
  color: var(--teal-dark);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 950;
  line-height: 1.05;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 12px 0 28px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: #52615d;
}

.package-card.package-card-hot li {
  color: rgba(255, 255, 255, 0.94);
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 950;
}

.package-card a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 950;
}

.package-card-hot a {
  color: #fff;
}

.package-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: #52615d;
  font-weight: 850;
  line-height: 1.6;
}

.team-section {
  background:
    linear-gradient(90deg, rgba(255, 212, 71, 0.2), transparent 40%),
    #eefcf6;
}

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

.team-card {
  min-height: 270px;
  padding: 22px;
}

.avatar {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 22px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(16, 32, 29, 0.14);
  color: #fff;
  font-weight: 950;
}

.pressure {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.foam {
  color: var(--teal-dark);
  background: linear-gradient(135deg, #fff, #aaf4e7);
}

.nose {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.paw {
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--lime));
}

.process-section {
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(4, 82, 79, 0.08);
}

.steps span {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 950;
}

.steps strong {
  align-self: end;
  font-size: 1.05rem;
}

.steps p {
  grid-column: 2;
  margin: 6px 0 0;
}

.quote-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 212, 71, 0.24), transparent 24%),
    linear-gradient(135deg, #08302e, #10201d 56%, #3b1f17);
}

.quote-section .eyebrow,
.quote-section .quote-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.quote-section .eyebrow::before {
  background: var(--lime);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-block a {
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 950;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #31413d;
  font-size: 0.9rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 32, 29, 0.18);
  border-radius: 8px;
  outline: none;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(2, 124, 115, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
}

.form-submit {
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.faq-section {
  background: #fbf7ed;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 72px);
}

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

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 32, 29, 0.06);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 950;
}

details p {
  padding: 0 20px 20px;
  margin: 0;
}

.final-cta {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(237, 69, 69, 0.78), rgba(255, 122, 61, 0.58)),
    var(--orange);
}

.final-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.final-inner h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.86) 44%, rgba(255, 253, 247, 0.28) 100%),
      url("assets/hero-gowniana-sprawa.png");
    background-position: 63% center;
  }

  .split,
  .process-layout,
  .quote-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .package-card-hot {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 98px 16px 46px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 13.8vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .proof-list,
  .feature-grid,
  .package-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .start-visit {
    grid-template-columns: 1fr;
  }

  .start-visit strong {
    width: 100%;
  }

  .proof-list li {
    min-height: auto;
  }

  .scroll-hint {
    display: none;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
