:root {
  --cream: #fff8ef;
  --cream-2: #fff1df;
  --ink: #253044;
  --muted: #6f7688;
  --rose: #f48b8b;
  --coral: #ffad8f;
  --sun: #ffd166;
  --mint: #7bdcb5;
  --green: #3fa77d;
  --blue: #73b9ff;
  --navy: #263b63;
  --lavender: #c7b9ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(38, 59, 99, .13);
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

.top-bar {
  background: var(--navy);
  color: white;
  font-weight: 800;
  font-size: .92rem;
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 248, 239, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(38, 59, 99, .08);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose), var(--sun));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-weight: 800;
  font-size: .78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-weight: 900;
  font-size: .94rem;
}

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

.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  padding: 8px 13px;
  font-size: 1.4rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 209, 102, .45), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(123, 220, 181, .42), transparent 24%),
    linear-gradient(135deg, #fff8ef 0%, #ffe9dc 52%, #eaf8ff 100%);
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  opacity: .75;
}

.hero-shape-one {
  width: 270px;
  height: 270px;
  background: var(--mint);
  left: -90px;
  bottom: 40px;
}

.hero-shape-two {
  width: 190px;
  height: 190px;
  background: var(--sun);
  right: 7%;
  top: 80px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 58px;
}

.pill,
.section-kicker {
  display: inline-flex;
  background: white;
  color: var(--green);
  border: 1px solid rgba(63, 167, 125, .18);
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(38,59,99,.07);
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 24px;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.34rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 1.07rem;
}

.hero-lead {
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 20px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 15px 25px;
  font-weight: 900;
  transition: .25s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-main {
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: white;
  box-shadow: 0 18px 34px rgba(244,139,139,.33);
}

.btn-soft {
  background: white;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(38,59,99,.09);
}

.trust-mini {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-mini span {
  background: rgba(255,255,255,.72);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--navy);
}

.hero-visual {
  position: relative;
}

.photo-card {
  border-radius: 46px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid white;
  transform: rotate(2deg);
}

.photo-card img {
  height: 560px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: -28px;
  bottom: 38px;
  width: min(285px, 80%);
  background: white;
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.floating-card span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 96px;
}

.intro-section {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.intro-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 42px;
}

.intro-card p + p {
  margin-top: 14px;
}

.intro-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.intro-points div {
  background: linear-gradient(135deg, #fff, #fff7ee);
  border-radius: 24px;
  padding: 25px;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(38,59,99,.07);
}

.services-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 209, 102, .24), transparent 28%),
    radial-gradient(circle at 80% 55%, rgba(199, 185, 255, .24), transparent 26%),
    var(--cream);
}

.center {
  text-align: center;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
}

.color-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.color-card {
  min-height: 260px;
  border-radius: 32px;
  padding: 30px;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.color-card::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  right: -55px;
  bottom: -65px;
  background: rgba(255,255,255,.35);
}

.color-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.color-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.62);
  border-radius: 15px;
  font-weight: 900;
  margin-bottom: 30px;
}

.color-card h3 {
  font-size: 1.55rem;
}

.color-card p {
  color: rgba(37,48,68,.78);
  font-weight: 700;
}

.peach { background: #ffd6c2; }
.blue { background: #cbe6ff; }
.green { background: #c9f3df; }
.yellow { background: #ffe49a; }
.lavender { background: #ddd4ff; }
.coral { background: #ffc1bd; }

.process-section {
  background: white;
}

.process-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.process-image {
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-image img {
  height: 560px;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 20px;
  margin: 28px 0 30px;
}

.timeline div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
}

.timeline p {
  background: var(--cream);
  border-radius: 22px;
  padding: 18px 20px;
}

.online-section {
  background: linear-gradient(135deg, #e8fbf2, #eaf4ff);
}

.online-box {
  background: white;
  border-radius: 40px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  box-shadow: var(--shadow);
}

.online-list {
  display: grid;
  gap: 14px;
}

.online-list div {
  background: var(--cream);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
}

.testimonial-section {
  background: var(--cream);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
}

.testimonial-card,
.cta-panel {
  border-radius: 38px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.testimonial-card {
  background: var(--navy);
}

.testimonial-card p {
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.cta-panel {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.45), transparent 28%),
    linear-gradient(135deg, var(--sun), var(--coral));
}

.cta-panel p {
  color: rgba(37,48,68,.82);
  margin-bottom: 24px;
}

.contact-section {
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.contact-details a,
.contact-details span {
  background: var(--cream);
  border-radius: 18px;
  padding: 15px 17px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form {
  background: var(--cream);
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid transparent;
  background: white;
  border-radius: 17px;
  padding: 15px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.full {
  width: 100%;
  margin-top: 10px;
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 46px 0;
  text-align: center;
}

.footer img {
  width: min(340px, 82vw);
  margin: 0 auto 22px;
}

.footer p {
  color: rgba(255,255,255,.82);
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 22px;
    flex-direction: column;
    border-bottom: 1px solid rgba(38,59,99,.1);
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-layout,
  .intro-grid,
  .process-layout,
  .online-box,
  .testimonial-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .color-cards,
  .intro-points {
    grid-template-columns: 1fr 1fr;
  }

  .photo-card img,
  .process-image img {
    height: 420px;
  }
}

@media (max-width: 680px) {
  .top-bar-inner {
    flex-direction: column;
    padding: 9px 0;
    gap: 3px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section,
  .hero {
    padding: 66px 0;
  }

  .color-cards,
  .intro-points {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .online-box,
  .testimonial-card,
  .cta-panel,
  .contact-form {
    padding: 26px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .photo-card {
    transform: none;
  }

  .brand small {
    display: none;
  }
}

/* Bardziej znaczące tło — sekcja Dla kogo */
.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 248, 239, 0.94) 0%, rgba(255, 241, 223, 0.88) 48%, rgba(234, 248, 255, 0.82) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.intro-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  left: -120px;
  top: 70px;
  background: rgba(255, 209, 102, 0.42);
  filter: blur(2px);
}

.intro-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  bottom: 60px;
  background: rgba(123, 220, 181, 0.35);
  filter: blur(2px);
}

.intro-section .container {
  position: relative;
  z-index: 2;
}

.intro-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.intro-points div {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

/* Bardziej znaczące tło — sekcja Kontakt */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(38, 59, 99, 0.88) 0%, rgba(244, 139, 139, 0.68) 52%, rgba(255, 209, 102, 0.66) 100%),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.22), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(123,220,181,0.22), transparent 30%);
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section .section-kicker {
  background: rgba(255,255,255,0.92);
}

.contact-copy h2,
.contact-copy p {
  color: #ffffff;
}

.contact-details a,
.contact-details span {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 34px rgba(38,59,99,.12);
}

.contact-form {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
}

@media (max-width: 980px) {
  .intro-section,
  .contact-section {
    background-attachment: scroll;
  }
}
