:root {
  --bg: #f8fbff;
  --fg: #172033;
  --muted: #667085;
  --card: #fff;
  --primary: #2378d4;
  --primary2: #1eb9c7;
  --yellow: #f7c84b;
  --border: #e5edf7;
  --shadow: 0 12px 40px rgba(29,92,155,.13);
  --shadow-soft: 0 4px 24px rgba(29,92,155,.10);
  --radius: 28px;
  --max: 1280px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased
}

body.no-scroll {
  overflow: hidden
}

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

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

h1,
h2,
h3 {
  font-family: Sora,Inter,system-ui,sans-serif;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0
}

p {
  margin: 0
}

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

.narrow {
  max-width: 1020px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,251,255,.72);
  backdrop-filter: blur(14px);
  transition: .25s;
  border-bottom: 1px solid transparent
}

.site-header.scrolled {
  background: rgba(248,251,255,.90);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft)
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px
}

.desktop-nav a {
  font-size: .93rem;
  font-weight: 700;
  color: var(--muted);
  transition: .16s
}

.desktop-nav a:hover {
  color: var(--primary)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(35,120,212,.18);
  background: rgba(35,120,212,.06);
  font-weight: 800;
  color: var(--primary);
  font-size: .92rem
}

.small-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(247,200,75,.35)
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #eef4fb;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--fg);
  border-radius: 3px;
  transition: .2s
}

.site-header.menu-open .menu-btn span:nth-child(1) {
  transform: translateY(6px) rotate(45deg)
}

.site-header.menu-open .menu-btn span:nth-child(2) {
  opacity: 0
}

.site-header.menu-open .menu-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg)
}

.mobile-nav {
  display: none
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,#f2f9ff 0,#fff 100%)
}

.blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .48
}

.blob-one {
  width: 390px;
  height: 390px;
  right: -120px;
  top: -130px;
  background: #58d3de
}

.blob-two {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -170px;
  background: #5fa7f1
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 78px 0 92px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(35,120,212,.18);
  background: rgba(35,120,212,.06);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  color: var(--primary)
}

.hero h1 {
  font-size: clamp(2.7rem,5.6vw,5.8rem);
  max-width: 760px;
  margin-top: 20px
}

.hero h1 span {
  background: linear-gradient(135deg,var(--primary),var(--primary2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem,1.5vw,1.22rem);
  max-width: 620px
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 900;
  transition: .16s
}

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

.btn-yellow {
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(247,200,75,.42);
  color: #20304a
}

.btn-blue {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-soft)
}

.btn-glass {
  background: rgba(255,255,255,.13);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px)
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 13px;
  margin-top: 34px
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: .95rem
}

.hero-points strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(30,185,199,.17);
  color: var(--primary)
}

 .hero-image-wrap {
     position: relative;

}

 .hero-glow {
  position: absolute;
  inset: -26px;
  border-radius: 42px;
  background: linear-gradient(135deg,var(--primary),var(--primary2));
  opacity: .18;
  filter: blur(26px)
}

 .hero-image {
     position: relative;
     width: 100%;
     height: 560px;
     object-fit: cover;
     object-position: center top;
     border-radius: 34px;
     box-shadow: var(--shadow);
     border: 1px solid var(--border);

}

 .price-badge {
  position: absolute;
  left: -22px;
  bottom: -22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 15px 20px;
  box-shadow: var(--shadow)
}

.price-badge small {
  display: block;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 800
}

.price-badge strong {
  display: block;
  font-size: 1.45rem;
  color: var(--primary)
}

.section {
  padding: 86px 0;
  background: #fff
}

.section-soft {
  background: linear-gradient(180deg,#f2f9ff 0,#fff 100%)
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.section-head h2 {
  font-size: clamp(2rem,4vw,3.2rem)
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem
}

.cards {
  display: grid;
  gap: 22px
}

.four {
  grid-template-columns: repeat(4,minmax(0,1fr))
}

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

.card,
.mini-card,
.window-card,
.price-card,
.local-card,
details {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: 28px
}

.card {
  padding: 30px;
  transition: .18s
}

.card:hover,.window-card:hover,.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg,var(--primary),var(--primary2));
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem
}

.icon.soft {
  background: rgba(30,185,199,.16);
  color: var(--primary);
  font-size: 1.35rem
}

.card h3,
.mini-card h3,
.window-card h3 {
  margin-top: 20px;
  font-size: 1.1rem
}

.card p,
.mini-card p,
.window-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .94rem
}

.mini-card {
  display: flex;
  gap: 17px;
  padding: 24px
}

.mini-card h3 {
  margin-top: 0
}

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

.window-card {
  overflow: hidden;
  transition: .18s
}

.imgbox {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef4fb
}

.imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.window-card:hover .imgbox img {
  transform: scale(1.05)
}

.imgbox span {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--yellow);
  color: #20304a;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(247,200,75,.38)
}

.window-body {
  padding: 25px
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 20px
}

.price-card {
  padding: 26px;
  transition: .18s
}

.price-card h3 {
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: 0
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--fg)
}

.price-card span {
  color: var(--muted)
}

.price-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: .86rem
}

.price-card.highlighted {
  background: linear-gradient(135deg,var(--primary),var(--primary2));
  color: #fff;
  box-shadow: var(--shadow)
}

.price-card.highlighted h3,
.price-card.highlighted strong,
.price-card.highlighted span,
.price-card.highlighted p {
  color: #fff
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
  max-width: 860px;
  margin: 40px auto 0;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft)
}

.notice-grid p {
  color: var(--muted);
  font-size: .94rem
}

.local-card {
  padding: 42px;
  display: grid;
  gap: 22px
}

.big-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg,var(--primary),var(--primary2));
  box-shadow: var(--shadow-soft);
  font-size: 1.6rem
}

.local-card h2 {
  font-size: clamp(1.7rem,3vw,2.3rem)
}

.local-card p {
  margin-top: 12px;
  color: var(--muted)
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px
}

.city-tags span {
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(35,120,212,.16);
  background: rgba(35,120,212,.06);
  color: var(--primary);
  font-weight: 800;
  font-size: .92rem
}

.faq-container {
  max-width: 820px
}

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

details {
  padding: 0 22px;
  overflow: hidden
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 20px
}

summary::-webkit-details-marker {
  display: none
}

summary:after {
  content: "⌄";
  transition: .18s;
  color: var(--muted)
}

details[open] summary:after {
  transform: rotate(180deg)
}

details p {
  padding: 0 0 20px;
  color: var(--muted)
}

.contact-wrap {
  max-width: 1160px
}

.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(135deg,var(--primary),var(--primary2));
  box-shadow: var(--shadow);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  color: #fff
}

.contact-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35
}

.bg-one {
  width: 300px;
  height: 300px;
  right: -80px;
  top: -80px;
  background: var(--yellow)
}

.bg-two {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: -90px;
  background: #fff
}

.contact-copy,
.contact-details {
  position: relative
}

.contact-copy h2 {
  font-size: clamp(2rem,4.5vw,4rem)
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255,255,255,.9);
  font-size: 1.08rem
}

.contact-details {
  display: grid;
  gap: 16px
}

.contact-details a,
.contact-details p {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px)
}

.contact-details span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--yellow);
  color: #20304a;
  font-weight: 900
}

.contact-details small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
  font-weight: 900
}

.contact-details strong {
  display: block;
  color: #fff;
  font-size: 1.05rem
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: #fff
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .93rem
}

.footer-brand img {
  width: 34px;
  height: 34px
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: .93rem
}

.footer-links a:hover {
  color: var(--primary)
}

@media(max-width:1100px) {
  .desktop-nav,
  .phone-chip,
  .small-cta {
    display: none
  }

.menu-btn {
    display: flex
  }

.mobile-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow)
  }

.site-header.menu-open .mobile-nav {
    display: grid
  }

.mobile-nav a {
    padding: 13px 14px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--fg)
  }

.mobile-nav a:hover {
    background: #eef4fb
  }

.hero-grid {
    grid-template-columns: 1fr;
    gap: 42px
  }

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

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

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

.contact-card {
    grid-template-columns: 1fr
  }

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

}

@media(max-width:720px) {
  .container {
    width: min(100% - 28px,var(--max))
  }

.header-row {
    padding: 10px 0
  }

.hero-grid {
    padding: 52px 0 68px
  }

.hero h1 {
    font-size: 2.55rem
  }

.lead {
    font-size: 1rem
  }

.hero-points {
    grid-template-columns: 1fr
  }

.hero-points div {
    align-items: flex-start
  }

.price-badge {
    left: 14px;
    bottom: 14px
  }

.section {
    padding: 66px 0
  }

.four,
.three,
.window-grid,
.price-grid,
.notice-grid {
    grid-template-columns: 1fr
  }

.card,
.mini-card,
.window-card,
.price-card,
.local-card,
details {
    border-radius: 22px
  }

.contact-card {
    padding: 28px;
    border-radius: 28px
  }

.contact-details a,
.contact-details p {
    align-items: flex-start
  }

.footer-row {
    flex-direction: column;
    text-align: center
  }

.footer-links {
    justify-content: center
  }

.btn {
    width: 100%
  }

.cta-row {
    width: 100%
  }

.brand span {
    display: none
  }

}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto!important;
    transition: none!important
  }

}

/* === Aurora Clean - poprawki po wdrożeniu treści === */
.brand span {
   display: flex;
   flex-direction: column;
   line-height: 1.1;

}

 .brand small {
   display: block;
   margin-top: 3px;
   font-family: Inter, system-ui, sans-serif;
   font-size: 0.72rem;
   font-weight: 600;
   color: var(--muted);
   letter-spacing: 0;

}

 .site-header.scrolled .brand small {
   color: var(--muted);

}

 .desktop-nav a[href="/"] {
   color: var(--primary);

}

 .contact-details p {
   align-items: flex-start;

}

 .contact-details p span {
   flex: 0 0 52px;

}

 .sticky-cta {
   display: none;

}

/* Lepsza czytelność ceny i cennika */
.price-card p {
   line-height: 1.45;

}

 .notice-grid p {
   font-weight: 700;

}

/* Mobile */
@media (max-width: 720px) {
   body {
     padding-bottom: 82px;

  }

 .brand span {
     display: flex;

  }

 .brand small {
     display: none;

  }

 .brand img {
     width: 44px;
     height: 44px;

  }

 .hero h1 {
     font-size: 2.35rem;

  }

 .hero-grid {
     padding-top: 42px;

  }

 .hero-image {
         height: 430px;
         object-position: center top;

  }

   .price-badge {
         left: 14px;
         bottom: 14px;

  }

 .sticky-cta {
     position: fixed;
     left: 14px;
     right: 14px;
     bottom: 14px;
     z-index: 999;
     display: block;

  }

 .sticky-cta a {
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 58px;
     padding: 14px 18px;
     border-radius: 999px;
     background: var(--yellow);
     color: #20304a;
     font-weight: 900;
     box-shadow: 0 18px 36px rgba(23, 32, 51, 0.24);

  }

}

/* === Aurora Clean - ujednolicenie nagłówka i hero === */
.site-header {
     background: linear-gradient(135deg, #1f7ae0, #22c1c3);
     border-bottom: none;
     color: #fff;

}

 .site-header.scrolled {
     background: linear-gradient(135deg, #1f7ae0, #22c1c3);
     border-bottom: none;
     box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);

}

 .brand,
 .brand small,
 .desktop-nav a,
 .phone-chip {
     color: #fff;

}

 .brand small {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.92;
}

 .phone-chip {
     background: rgba(255,255,255,0.12);
     border-color: rgba(255,255,255,0.24);

}

 .small-cta {
     background: var(--yellow);
     color: #20304a;

}

 .desktop-nav {
     gap: 14px;

}

 .desktop-nav a {
     font-size: 0.88rem;
     padding: 8px 8px;
     opacity: 0.96;

}

 .desktop-nav a:hover {
     color: #fff;
     background: rgba(255,255,255,0.12);
     border-radius: 999px;

}

 .desktop-nav a[href="#zalety"] {
     display: none;

}

 .hero-grid {
     grid-template-columns: 1.06fr 0.82fr;
     gap: 58px;
     padding: 64px 0 82px;
     align-items: center;

}

 .hero h1 {
     font-size: clamp(2.4rem, 4.7vw, 4.8rem);

}

 .hero-image {
     max-height: 520px;

}

/* Tablet i mniejsze ekrany */
@media (max-width: 1180px) {
     .desktop-nav {
         display: none;

  }

   .menu-btn {
         display: flex;

  }

}

/* Mobile */
@media (max-width: 720px) {
     .site-header {
         background: linear-gradient(135deg, #1f7ae0, #22c1c3);

  }

   .brand {
         color: #fff;

  }

   .menu-btn {
         background: rgba(255,255,255,0.16);

  }

   .menu-btn span {
         background: #fff;

  }

   .mobile-nav {
         top: 70px;

  }

   .hero-grid {
         grid-template-columns: 1fr;
         padding: 38px 0 60px;

  }

   .hero h1 {
         font-size: 2.18rem;

  }

   .hero-image {
         max-height: none;

  }

}

/* === FINAL: rozmiar głównego zdjęcia hero === */
@media (min-width: 1181px) {
     .hero-image {
         height: 620px !important;
         max-height: none !important;
         object-fit: cover;
         object-position: center top;

  }

}

 @media (max-width: 720px) {
     .hero-image {
         height: 450px !important;
         max-height: none !important;
         object-fit: cover;
         object-position: center top;

  }

}
.sticky-cta{
  transition: opacity .25s ease;
}
.brand small a {
  color: inherit;
  text-decoration: none;
}
