/* ============================================================
   /przyklady/firma-sprzatajaca/style.css — Czysta Kalia
   Layout A: center hero + pastel blobs, soft cyan #A8DADC
   + ocean blue #457B9D. Quicksand + Nunito.
   Class prefix: .ck- (unique per branża).
   ============================================================ */

:root {
  --ck-cyan: #a8dadc;
  --ck-cyan-deep: #8ac7c9;
  --ck-ocean: #457b9d;
  --ck-ocean-deep: #335d7a;
  --ck-rose: #f1a7b6;
  --ck-mint: #d7f2e4;
  --ck-bg: #f1fafb;
  --ck-bg-soft: #ecf7f8;
  --ck-text: #1d3557;
  --ck-text-sec: #55657a;
  --ck-stars: #a0522d;
  --ck-line: #e0eef1;
  --ck-white: #ffffff;
  --ck-radius: 24px;
  --ck-radius-sm: 16px;
  --ck-shadow: 0 20px 60px rgba(69, 123, 157, 0.18);
  --ck-shadow-sm: 0 8px 28px rgba(69, 123, 157, 0.1);
  --ck-shadow-lg: 0 32px 80px rgba(69, 123, 157, 0.22);
  --ck-font-display: "Quicksand", system-ui, -apple-system, sans-serif;
  --ck-font-body: "Nunito", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ck-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ck-text);
  background: var(--ck-bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--ck-ocean);
  text-decoration: none;
}
a:hover {
  color: var(--ck-ocean-deep);
}
button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ck-font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: var(--ck-text);
}
h1 {
  font-size: clamp(40px, 5vw, 64px);
}
h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}
h3 {
  font-size: clamp(20px, 2vw, 26px);
}

p {
  margin: 0 0 16px;
  color: var(--ck-text-sec);
}

/* --- Container / sections ---------------------------------- */
.ck-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ck-section {
  padding: 100px 0;
  position: relative;
}
.ck-section--alt {
  background: var(--ck-white);
}
.ck-section--pastel {
  background: linear-gradient(160deg, var(--ck-bg-soft) 0%, #fef7f9 100%);
}

.ck-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--ck-cyan);
  color: var(--ck-ocean-deep);
  border-radius: 999px;
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.ck-section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.ck-section__head--left {
  text-align: left;
  margin-left: 0;
}

/* --- Blob decorations --------------------------------------- */
.ck-blob {
  position: absolute;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.ck-blob--cyan {
  background: var(--ck-cyan);
}
.ck-blob--rose {
  background: var(--ck-rose);
}
.ck-blob--mint {
  background: var(--ck-mint);
}
.ck-blob--ocean {
  background: var(--ck-ocean);
  opacity: 0.25;
}

.ck-container,
.ck-section > * {
  position: relative;
  z-index: 1;
}

/* --- Header ------------------------------------------------- */
.ck-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 0 0 var(--ck-radius) var(--ck-radius);
  position: sticky;
  top: 44px;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(69, 123, 157, 0.08);
}
.ck-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ck-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ck-logo__mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ck-cyan), var(--ck-ocean));
  color: var(--ck-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.ck-logo__text {
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--ck-text);
  line-height: 1;
}
.ck-logo__text small {
  display: block;
  font-size: 12px;
  color: var(--ck-text-sec);
  font-weight: 400;
  margin-top: 4px;
}
.ck-nav {
  display: flex;
  gap: 28px;
}
.ck-nav a {
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    background 0.2s,
    color 0.2s;
}
.ck-nav a:hover {
  background: var(--ck-cyan);
}
.ck-nav a.is-active {
  background: var(--ck-ocean);
  color: var(--ck-white);
}
.ck-header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-ocean);
  font-size: 17px;
}
.ck-header__phone small {
  font-size: 11px;
  color: var(--ck-text-sec);
  font-weight: 400;
}

/* --- Buttons ------------------------------------------------ */
.ck-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ck-btn--primary {
  background: var(--ck-ocean);
  color: var(--ck-white);
  box-shadow: 0 12px 30px rgba(69, 123, 157, 0.32);
}
.ck-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(69, 123, 157, 0.42);
  color: var(--ck-white);
}
.ck-btn--soft {
  background: var(--ck-cyan);
  color: var(--ck-ocean-deep);
}
.ck-btn--soft:hover {
  background: var(--ck-cyan-deep);
  color: var(--ck-ocean-deep);
}
.ck-btn--ghost {
  background: var(--ck-white);
  color: var(--ck-ocean);
  border-color: var(--ck-cyan);
}
.ck-btn--ghost:hover {
  border-color: var(--ck-ocean);
}
.ck-btn--white {
  background: var(--ck-white);
  color: var(--ck-ocean);
}

/* --- HERO: center + pastel blobs --------------------------- */
.ck-hero {
  padding: 80px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ck-hero .ck-blob--cyan {
  top: -100px;
  left: -120px;
  width: 460px;
  height: 460px;
  border-radius: 62% 38% 55% 45% / 58% 62% 38% 42%;
}
.ck-hero .ck-blob--rose {
  bottom: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 42% 58% 55% 45% / 42% 62% 38% 58%;
}
.ck-hero .ck-blob--mint {
  top: 50%;
  left: 60%;
  width: 320px;
  height: 320px;
  border-radius: 58% 42% 38% 62% / 45% 55% 45% 55%;
  opacity: 0.4;
}
.ck-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ck-white);
  color: var(--ck-ocean);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--ck-shadow-sm);
  margin-bottom: 28px;
}
.ck-hero h1 {
  max-width: 900px;
  margin: 0 auto 24px;
}
.ck-hero__sub {
  font-size: 19px;
  color: var(--ck-text-sec);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 40px;
}
.ck-hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.ck-hero__media {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.ck-hero__media img,
.ck-hero__media svg {
  border-radius: var(--ck-radius);
  box-shadow: var(--ck-shadow-lg);
}
.ck-hero__chip {
  position: absolute;
  background: var(--ck-white);
  border-radius: 999px;
  padding: 14px 24px;
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ck-ocean);
  box-shadow: var(--ck-shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ck-hero__chip--top {
  top: -20px;
  left: -24px;
}
.ck-hero__chip--right {
  right: -20px;
  bottom: 32px;
}
.ck-hero__chip--bottom {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.ck-hero__chip strong {
  color: var(--ck-text);
}

/* --- Trust bar --------------------------------------------- */
.ck-trust {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  box-shadow: var(--ck-shadow-sm);
  padding: 32px 40px;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}
.ck-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.ck-trust__item {
  text-align: center;
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
}
.ck-trust__item strong {
  display: block;
  font-size: 28px;
  color: var(--ck-ocean);
  line-height: 1;
  margin-bottom: 4px;
}
.ck-trust__item span {
  font-size: 13px;
  color: var(--ck-text-sec);
  font-weight: 400;
}

/* --- Services cards ---------------------------------------- */
.ck-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ck-service {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 36px 32px;
  box-shadow: var(--ck-shadow-sm);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.ck-service::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--ck-cyan);
  border-radius: 50%;
  opacity: 0.25;
  transition: transform 0.4s;
}
.ck-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--ck-shadow);
}
.ck-service:hover::before {
  transform: scale(1.4);
}
.ck-service__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ck-cyan), var(--ck-ocean));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ck-service h3 {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.ck-service__desc {
  font-size: 15px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.ck-service__meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ck-line);
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.ck-service__price {
  color: var(--ck-ocean);
  font-size: 17px;
}
.ck-service__time {
  color: var(--ck-text-sec);
}

/* --- About --------------------------------------------------- */
.ck-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ck-about__story p {
  font-size: 17px;
  line-height: 1.75;
}
.ck-about__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.ck-about__points li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--ck-white);
  border-radius: var(--ck-radius-sm);
  padding: 22px 26px;
  box-shadow: var(--ck-shadow-sm);
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
}
.ck-about__points li::before {
  content: "✨";
  font-size: 24px;
  flex-shrink: 0;
}

/* --- Testimonials ------------------------------------------- */
.ck-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ck-testimonial {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 32px;
  box-shadow: var(--ck-shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.ck-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 56px;
  height: 6px;
  background: linear-gradient(90deg, var(--ck-cyan), var(--ck-ocean));
  border-radius: 0 0 8px 8px;
}
.ck-testimonial__stars {
  color: var(--ck-stars);
  letter-spacing: 3px;
  font-size: 18px;
  margin-bottom: 12px;
}
.ck-testimonial__text {
  font-size: 16px;
  color: var(--ck-text);
  line-height: 1.65;
  margin-bottom: 24px;
}
.ck-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ck-line);
}
.ck-testimonial__avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--ck-cyan), var(--ck-ocean));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ck-white);
  font-family: var(--ck-font-display);
  font-weight: 600;
}
.ck-testimonial__name {
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
}
.ck-testimonial__city {
  display: block;
  font-size: 13px;
  color: var(--ck-text-sec);
}

/* --- FAQ ---------------------------------------------------- */
.ck-faq {
  max-width: 820px;
  margin: 0 auto;
}
.ck-faq details {
  background: var(--ck-white);
  border-radius: var(--ck-radius-sm);
  padding: 24px 28px;
  box-shadow: var(--ck-shadow-sm);
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.ck-faq details[open] {
  box-shadow: var(--ck-shadow);
}
.ck-faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ck-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ck-faq summary::-webkit-details-marker {
  display: none;
}
.ck-faq summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  background: var(--ck-cyan);
  color: var(--ck-ocean-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition:
    transform 0.25s,
    background 0.2s;
}
.ck-faq details[open] summary::after {
  transform: rotate(135deg);
  background: var(--ck-ocean);
  color: var(--ck-white);
}
.ck-faq details p {
  margin: 18px 0 0;
  color: var(--ck-text-sec);
  font-size: 15px;
  line-height: 1.7;
}

/* --- CTA block ---------------------------------------------- */
.ck-cta {
  background: linear-gradient(
    135deg,
    var(--ck-ocean) 0%,
    var(--ck-ocean-deep) 100%
  );
  padding: 80px 0;
  text-align: center;
  color: var(--ck-white);
  position: relative;
  overflow: hidden;
}
.ck-cta::before,
.ck-cta::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--ck-cyan);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.ck-cta::before {
  top: -200px;
  left: -100px;
}
.ck-cta::after {
  bottom: -200px;
  right: -100px;
}
.ck-cta h2 {
  color: var(--ck-white);
  margin-bottom: 12px;
  position: relative;
}
.ck-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
}
.ck-cta .ck-btn {
  position: relative;
}

/* --- Contact preview on home -------------------------------- */
.ck-contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--ck-white);
  padding: 56px;
  border-radius: var(--ck-radius);
  box-shadow: var(--ck-shadow);
  align-items: center;
}
.ck-contact-preview__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 18px;
}
.ck-contact-preview__list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ck-contact-preview__list .ck-ico {
  width: 48px;
  height: 48px;
  background: var(--ck-cyan);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ck-contact-preview__list strong {
  display: block;
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
  font-size: 14px;
}
.ck-contact-preview__list span {
  color: var(--ck-text-sec);
  font-size: 14px;
}
.ck-map-box {
  background: linear-gradient(135deg, var(--ck-cyan), var(--ck-mint));
  border-radius: var(--ck-radius);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ck-ocean-deep);
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.ck-map-box::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 30%;
  width: 120px;
  height: 120px;
  background: var(--ck-white);
  border-radius: 50%;
  opacity: 0.3;
}
.ck-map-box::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 80px;
  height: 80px;
  background: var(--ck-white);
  border-radius: 50%;
  opacity: 0.3;
}
.ck-map-box span {
  position: relative;
  z-index: 1;
}

/* --- Phone literal ------------------------------------------ */
.ck-phone {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ck-ocean);
  line-height: 1.2;
}
.ck-phone small {
  font-size: 12px;
  color: var(--ck-text-sec);
  font-weight: 400;
  margin-top: 4px;
}

/* --- Related demos ------------------------------------------ */
.ck-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ck-related__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--ck-shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ck-related__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ck-shadow);
}
.ck-related__emoji {
  width: 64px;
  height: 64px;
  background: var(--ck-cyan);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.ck-related__card h4 {
  font-family: var(--ck-font-display);
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ck-ocean);
}
.ck-related__card p {
  margin: 0;
  font-size: 14px;
  color: var(--ck-text-sec);
}

/* --- Footer ------------------------------------------------- */
.ck-footer {
  background: var(--ck-white);
  padding: 80px 0 40px;
  border-top: 1px solid var(--ck-line);
}
.ck-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.ck-footer h4 {
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
  font-size: 16px;
  margin-bottom: 16px;
}
.ck-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ck-footer li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ck-text-sec);
}
.ck-footer a {
  color: var(--ck-text-sec);
}
.ck-footer a:hover {
  color: var(--ck-ocean);
}
.ck-footer__bottom {
  border-top: 1px solid var(--ck-line);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--ck-text-sec);
}

/* --- Subhero for subpages ----------------------------------- */
.ck-subhero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ck-subhero .ck-blob--cyan {
  top: -150px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 58% 42% 52% 48% / 55% 45% 55% 45%;
}
.ck-subhero .ck-blob--rose {
  top: -50px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 45% 55% 38% 62% / 52% 48% 52% 48%;
}
.ck-subhero h1 {
  max-width: 800px;
  margin: 0 auto 12px;
}
.ck-subhero p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Uslugi full list --------------------------------------- */
.ck-service-full {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 40px;
  box-shadow: var(--ck-shadow-sm);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: start;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.ck-service-full:hover {
  box-shadow: var(--ck-shadow);
  transform: translateY(-3px);
}
.ck-service-full__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--ck-cyan), var(--ck-ocean));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}
.ck-service-full__body h3 {
  margin-bottom: 10px;
}
.ck-service-full__body p {
  font-size: 16px;
  margin-bottom: 14px;
}
.ck-service-full__meta {
  display: flex;
  gap: 24px;
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ck-text-sec);
}
.ck-service-full__meta strong {
  color: var(--ck-ocean);
}
.ck-service-full__cta {
  align-self: center;
  white-space: nowrap;
}

/* --- Why us ------------------------------------------------- */
.ck-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ck-why__item {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--ck-shadow-sm);
}
.ck-why__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--ck-cyan), var(--ck-ocean));
  border-radius: 24px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.ck-why__item h3 {
  margin-bottom: 10px;
}
.ck-why__item p {
  margin: 0;
}

/* --- Packages ------------------------------------------------ */
.ck-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.ck-package {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 40px 32px;
  box-shadow: var(--ck-shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.ck-package:hover {
  transform: translateY(-6px);
  box-shadow: var(--ck-shadow);
}
.ck-package--popular {
  background: linear-gradient(160deg, var(--ck-ocean), var(--ck-ocean-deep));
  color: var(--ck-white);
  transform: scale(1.04);
  box-shadow: var(--ck-shadow-lg);
}
.ck-package--popular h3 {
  color: var(--ck-white);
}
.ck-package--popular p {
  color: rgba(255, 255, 255, 0.85);
}
.ck-package--popular .ck-package__price {
  color: var(--ck-cyan);
}
.ck-package--popular .ck-package__features li {
  color: rgba(255, 255, 255, 0.9);
}
.ck-package--popular .ck-package__features li::before {
  color: var(--ck-cyan);
}
.ck-package--popular::before {
  content: "✨ Najpopularniejszy";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ck-cyan);
  color: var(--ck-ocean-deep);
  font-family: var(--ck-font-display);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--ck-shadow-sm);
}
.ck-package h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.ck-package__price {
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--ck-ocean);
  margin-bottom: 8px;
  line-height: 1;
}
.ck-package__desc {
  font-size: 14px;
  margin-bottom: 24px;
}
.ck-package__features {
  list-style: none;
  padding: 20px 0 0;
  margin: 0 0 28px;
  border-top: 1px dashed var(--ck-line);
}
.ck-package--popular .ck-package__features {
  border-top-color: rgba(255, 255, 255, 0.25);
}
.ck-package__features li {
  padding: 10px 0 10px 28px;
  font-size: 14px;
  position: relative;
}
.ck-package__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ck-ocean);
  font-weight: 700;
  font-size: 16px;
}

/* --- Price table -------------------------------------------- */
.ck-pricetable {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  overflow: hidden;
  box-shadow: var(--ck-shadow-sm);
}
.ck-pricetable table {
  width: 100%;
  border-collapse: collapse;
}
.ck-pricetable th,
.ck-pricetable td {
  padding: 20px 28px;
  text-align: left;
  border-bottom: 1px solid var(--ck-line);
}
.ck-pricetable th {
  background: var(--ck-cyan);
  color: var(--ck-ocean-deep);
  font-family: var(--ck-font-display);
  font-weight: 600;
  font-size: 14px;
}
.ck-pricetable th:last-child {
  text-align: right;
}
.ck-pricetable__desc {
  display: block;
  color: var(--ck-text-sec);
  font-weight: 400;
  font-size: 13px;
  margin-top: 4px;
}
.ck-pricetable td:last-child {
  text-align: right;
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-ocean);
  font-size: 17px;
  white-space: nowrap;
}
.ck-pricetable tr:last-child td {
  border-bottom: 0;
}
.ck-pricetable tr:hover td {
  background: var(--ck-bg-soft);
}

/* --- Contact grid ------------------------------------------- */
.ck-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.ck-contact-card {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 44px;
  box-shadow: var(--ck-shadow);
}
.ck-contact-card h2 {
  font-size: 26px;
  margin-bottom: 24px;
}
.ck-contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.ck-contact-card li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.ck-contact-card .ck-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--ck-cyan), var(--ck-ocean));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.ck-contact-card strong {
  display: block;
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
  font-size: 13px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ck-contact-card li span {
  color: var(--ck-text-sec);
  font-size: 16px;
}

.ck-form {
  background: var(--ck-white);
  border-radius: var(--ck-radius);
  padding: 44px;
  box-shadow: var(--ck-shadow);
}
.ck-form h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.ck-form p {
  margin-bottom: 28px;
}
.ck-field {
  margin-bottom: 20px;
}
.ck-field label {
  display: block;
  font-family: var(--ck-font-display);
  font-weight: 600;
  color: var(--ck-text);
  font-size: 14px;
  margin-bottom: 8px;
}
.ck-field input,
.ck-field textarea {
  width: 100%;
  font: inherit;
  font-family: var(--ck-font-body);
  font-size: 16px;
  padding: 16px 20px;
  background: var(--ck-bg-soft);
  border: 2px solid transparent;
  border-radius: 16px;
  color: var(--ck-text);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.ck-field input:focus,
.ck-field textarea:focus {
  outline: none;
  border-color: var(--ck-cyan);
  background: var(--ck-white);
}
.ck-field textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 960px) {
  .ck-services,
  .ck-testimonials,
  .ck-packages,
  .ck-why,
  .ck-related {
    grid-template-columns: 1fr;
  }
  .ck-trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ck-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ck-about,
  .ck-contact-preview,
  .ck-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ck-contact-preview {
    padding: 32px;
  }
  .ck-service-full {
    grid-template-columns: 64px 1fr;
  }
  .ck-service-full__cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .ck-header__inner {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .ck-nav {
    order: 3;
    flex: 1 0 100%;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .ck-nav a {
    white-space: nowrap;
    font-size: 13px;
  }
  .ck-header__phone {
    font-size: 15px;
  }
  .ck-hero {
    padding: 50px 0 90px;
  }
  .ck-hero__chip {
    display: none;
  }
  .ck-section {
    padding: 60px 0;
  }
  .ck-package--popular {
    transform: none;
  }
  .ck-contact-card,
  .ck-form {
    padding: 28px;
  }
}
@media (max-width: 560px) {
  .ck-footer__grid {
    grid-template-columns: 1fr;
  }
  .ck-trust__grid {
    grid-template-columns: 1fr;
  }
  .ck-trust {
    margin-top: -40px;
    padding: 24px;
  }
}

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

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid var(--ck-ocean, #457b9d);
  outline-offset: 2px;
  border-radius: 2px;
}
