:root {
  --navy: #1f3c88;
  --navy-deep: #132d63;
  --blue: #4f7cff;
  --sky: #dff2ff;
  --sky-strong: #bedfff;
  --white: #ffffff;
  --gold: #f1c94c;
  --gold-soft: #ffe8a3;
  --text: #24324d;
  --muted: #68758f;
  --line: rgba(31, 60, 136, 0.12);
  --shadow: 0 18px 50px rgba(17, 35, 79, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}
main [id] {
  scroll-margin-top: 118px;
}
body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 221, 231, 0.42), transparent 22%),
    radial-gradient(circle at 24% 7%, rgba(255, 241, 189, 0.34), transparent 24%),
    radial-gradient(circle at 46% 9%, rgba(204, 236, 255, 0.34), transparent 25%),
    radial-gradient(circle at 68% 8%, rgba(228, 229, 255, 0.32), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(223, 250, 239, 0.28), transparent 21%),
    linear-gradient(180deg, #fcfdff 0%, #f4f8ff 40%, #f8fbff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.site-shell { overflow: clip; }
.section { padding: 88px 0; position: relative; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(240,248,255,0.92)); }
.section-deep {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12), transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(241,201,76,0.22), transparent 18%),
    linear-gradient(135deg, #17316d 0%, #244797 55%, #2d58bb 100%);
}
.center { text-align: center; }
.section-head { max-width: 780px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-tag {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--blue);
}
.section-tag.light { color: rgba(255,255,255,0.82); }
h1, h2, h3 { margin: 0 0 14px; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 16px; line-height: 1.72; font-size: 1.04rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(79,124,255,0.14);
  box-shadow: 0 8px 28px rgba(79,124,255,0.10);
  color: var(--navy);
  font-weight: 800;
}
.eyebrow::before { content: "✦"; color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-nav, .btn-mobile {
  color: #1b2a52;
  background: linear-gradient(135deg, #ffe58d 0%, #f1c94c 100%);
  box-shadow: 0 14px 28px rgba(241, 201, 76, 0.34);
  border: none;
}
.btn-primary:hover, .btn-nav:hover, .btn-mobile:hover {
  background: linear-gradient(135deg, #f1c94c 0%, #e0b336 100%);
}
.btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31, 60, 136, 0.14);
  box-shadow: 0 12px 24px rgba(17, 35, 79, 0.09);
}
.wide { width: 100%; }
.text-link { color: var(--navy); text-decoration: none; font-weight: 800; }
.text-link:hover { color: var(--blue); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31,60,136,0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: contain;
  background: rgba(255,255,255,0.8);
  padding: 4px;
  box-shadow: 0 12px 24px rgba(17, 35, 79, 0.10);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.65rem; color: var(--navy); }
.brand-text small { margin-top: 4px; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--blue); font-weight: 800; }
.desktop-nav { display: flex; align-items: center; gap: 20px; }
.desktop-nav a { text-decoration: none; color: var(--navy); font-weight: 800; }
.desktop-nav a.active, .mobile-nav a.active { color: var(--blue); }
.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 10px 24px rgba(17, 35, 79, 0.10);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-nav { display: none; padding: 0 16px 16px; border-top: 1px solid rgba(31,60,136,0.08); }
.mobile-nav a {
  display: block;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255,255,255,0.84);
  color: var(--navy);
  font-weight: 800;
}
.mobile-nav.is-open { display: block; }
.hero {
  position: relative;
  padding: 70px 0 110px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 223, 232, 0.26), transparent 18%),
    radial-gradient(circle at 30% 8%, rgba(255, 242, 196, 0.22), transparent 20%),
    radial-gradient(circle at 56% 10%, rgba(205, 237, 255, 0.22), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(228, 230, 255, 0.20), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.08) 54%, rgba(255,255,255,0) 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
}
.hero::before {
  width: 420px;
  height: 420px;
  left: -90px;
  top: 18px;
  background: radial-gradient(circle, rgba(255, 228, 191, 0.22), transparent 64%);
}
.hero::after {
  width: 460px;
  height: 460px;
  right: -130px;
  top: -24px;
  background: radial-gradient(circle, rgba(206, 226, 255, 0.24), transparent 66%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 34px; }
.hero-copy span { color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; }
.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(31,60,136,0.10);
  box-shadow: 0 10px 22px rgba(17, 35, 79, 0.08);
  font-weight: 700;
}
.hero-card { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-card-inner {
  position: relative;
  width: min(100%, 540px);
  padding: 42px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: radial-gradient(circle at top, rgba(255,255,255,0.14), transparent 24%), linear-gradient(145deg, rgba(19,45,99,0.98), rgba(43,88,182,0.95));
  box-shadow: 0 32px 80px rgba(18, 37, 84, 0.34);
  overflow: hidden;
}
.hero-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 30%, transparent 68%, rgba(241,201,76,0.10));
}
.hero-card-layered {
  position: relative;
  width: min(100%, 650px);
  min-height: 575px;
  padding: 34px;
  border-radius: 38px;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.95), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 84% 12%, rgba(241,201,76,0.22), rgba(241,201,76,0) 20%),
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(235,244,255,0.95) 42%, rgba(217,235,255,0.92) 100%);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 28px 70px rgba(18, 37, 84, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.section-benefits {
  padding-top: 24px;
  padding-bottom: 24px;
}

.benefits-box {
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(241,248,255,0.96));
  border: 1px solid rgba(31, 60, 136, 0.08);
  box-shadow: 0 20px 50px rgba(17, 35, 79, 0.10);
}

.benefit-badge {
  margin-bottom: 18px;
}

.benefit-badge span {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(222, 239, 255, 0.95), rgba(255, 244, 201, 0.92));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(17, 35, 79, 0.08);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(79, 124, 255, 0.12);
  box-shadow: 0 14px 30px rgba(17, 35, 79, 0.08);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff2bf 0%, #f1c94c 100%);
  color: #1b2a52;
  font-size: 1.2rem;
  box-shadow: 0 10px 18px rgba(241, 201, 76, 0.22);
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--text);
}

@media (max-width: 820px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-box {
    padding: 22px;
    border-radius: 24px;
  }

  .benefit-card {
    padding: 20px;
  }
}

.magic-words {
  color: #5e8fff;
  font-weight: 800;
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 1px rgba(255,255,255,0.8),
    0 0 10px rgba(241, 201, 76, 0.18);
}

.magic-words::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8fc2ff 0%, #f1c94c 50%, #8fc2ff 100%);
  border-radius: 999px;
  opacity: 0.9;
}

.magic-words:hover {
  color: #4f7cff;
  text-shadow:
    0 0 1px rgba(255,255,255,0.9),
    0 0 12px rgba(241, 201, 76, 0.28),
    0 0 22px rgba(241, 201, 76, 0.18);
}

.hero-card-layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255,255,255,0.34), transparent 30%, transparent 72%, rgba(255,255,255,0.20)),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.55), transparent 16%),
    radial-gradient(circle at 90% 8%, rgba(241,201,76,0.24), transparent 14%);
  z-index: 0;
}
.hero-card-image {
  position: absolute;
  top: -18px;
  right: -8px;
  width: 78%;
  height: 108%;
  z-index: 1;
  pointer-events: none;
}
.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  display: block;
  opacity: 0.98;
  filter: saturate(1.01) contrast(0.99) brightness(1.03);
  clip-path: ellipse(62% 76% at 78% 44%);
}
.hero-card-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(248,252,255,0.98) 0%, rgba(244,249,255,0.96) 26%, rgba(236,245,255,0.82) 42%, rgba(228,240,255,0.44) 58%, rgba(225,238,255,0.10) 74%, transparent 100%),
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 34%, transparent 100%);
}
.hero-card-shine {
  position: absolute;
  width: 240px;
  height: 240px;
  right: 72px;
  top: 18px;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.30), rgba(255,255,255,0.08) 34%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hero-card-text {
  position: relative;
  z-index: 3;
  max-width: 61%;
}
.hero-card-text-premium {
  padding: 26px 24px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.54);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 36px rgba(54, 89, 156, 0.10);
}
.hero-card-text h2 {
  max-width: 11ch;
  margin-bottom: 18px;
  color: var(--navy-deep);
  line-height: 1.02;
}
.mini-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(31,60,136,0.08);
}
.sparkle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  max-width: 360px;
}
.sparkle-row span {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(31,60,136,0.08);
  color: var(--navy-deep);
  font-size: 0.94rem;
  box-shadow: 0 8px 18px rgba(31,60,136,0.06);
}
.orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(79,124,255,0.16); }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 390px; height: 390px; }
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 120px;
  background: radial-gradient(120% 130px at 50% 0, transparent 54%, rgba(255,255,255,0.96) 55%, rgba(255,255,255,0.96) 100%);
}
@media (max-width: 1100px) {
  .hero-card-layered { min-height: 545px; }
  .hero-card-image { width: 80%; right: -20px; }
  .hero-card-text { max-width: 63%; }
}
@media (max-width: 820px) {
  .hero-card-layered {
    min-height: 545px;
    padding: 24px;
    border-radius: 30px;
  }
  .hero-card-image {
    top: -6px;
    right: -24px;
    width: 88%;
    height: 72%;
  }
  .hero-card-image img {
    clip-path: ellipse(68% 72% at 70% 28%);
    object-position: center 24%;
    filter: saturate(1.01) contrast(1) brightness(1.04);
  }
  .hero-card-glow {
    background:
      linear-gradient(180deg, rgba(249,252,255,0.76) 0%, rgba(243,248,255,0.38) 28%, rgba(239,246,255,0.92) 56%, rgba(237,245,255,0.98) 72%, rgba(237,245,255,0.99) 100%),
      linear-gradient(90deg, rgba(246,250,255,0.94) 0%, rgba(240,247,255,0.62) 42%, rgba(235,244,255,0.08) 72%, transparent 100%);
  }
  .hero-card-shine {
    right: 16px;
    top: 0;
    width: 200px;
    height: 200px;
  }
  .hero-card-text {
    max-width: 100%;
    padding-top: 250px;
  }
  .hero-card-text-premium {
    background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.54));
  }
  .hero-card-text h2 { max-width: none; }
  .sparkle-row { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-card { min-height: 0; }
  .hero-card-layered { min-height: 520px; }
  .hero-card-image {
    width: 96%;
    right: -42px;
    top: -14px;
    height: 66%;
  }
  .hero-card-image img {
    clip-path: ellipse(72% 68% at 72% 26%);
    object-position: center 22%;
  }
  .hero-card-text { padding-top: 220px; }
  .hero-card-text-premium { padding: 20px 18px 18px; }
  .sparkle-row span { font-size: 0.88rem; padding: 9px 12px; }
}
.split-grid, .contact-grid, .about-story, .offer-grid, .blog-grid, .contact-page-grid, .two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.cards-grid, .magic-grid, .stats-grid, .testimonial-grid, .blog-cards, .offer-cards, .values-grid { display: grid; gap: 22px; }
.cards-grid, .magic-grid, .blog-cards, .offer-cards, .values-grid { grid-template-columns: repeat(3, 1fr); }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.info-card, .magic-box, .stat-card, .testimonial-card, .contact-card, .content-panel, .blog-post-card, .offer-card, .value-card, .faq-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.info-card, .offer-card, .value-card, .blog-post-card, .content-panel, .faq-card {
  padding: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(31,60,136,0.08);
}
.lift-card, .offer-card, .value-card, .blog-post-card { transition: transform .22s ease, box-shadow .22s ease; }
.lift-card:hover, .offer-card:hover, .value-card:hover, .blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(17, 35, 79, 0.16);
}
.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  font-size: 1.35rem;
  color: var(--navy);
  background: linear-gradient(135deg, #fff1b7 0%, #f1c94c 100%);
}
.magic-box { padding: 28px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.12); }
.magic-box p, .section-deep p { color: rgba(255,255,255,0.86); }
.content-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 4px solid rgba(255,255,255,0.6);
}
.stat-card { padding: 26px; background: rgba(255,255,255,0.84); border: 1px solid rgba(31,60,136,0.08); text-align: center; }
.stat-card strong { display: block; font-size: 2.1rem; color: var(--blue); }
.stat-card span { color: var(--muted); font-weight: 700; }
.testimonial-card { padding: 30px; margin: 0; background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,249,255,0.98)); border: 1px solid rgba(31,60,136,0.08); }
.testimonial-card p { font-size: 1.08rem; }
.testimonial-card footer { color: var(--muted); font-weight: 800; }
.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 30px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(31,60,136,0.08);
}
.contact-card a, .contact-card span { font-size: 1.08rem; text-decoration: none; }
.content-panel.gold { background: linear-gradient(180deg, rgba(192, 220, 248, 0.95), rgba(255,255,255,0.95)); }
.page-hero { padding: 64px 0 44px; }
.page-hero-box {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(228,241,255,0.86));
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: var(--shadow);
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; color: var(--muted); font-size: .95rem; font-weight: 700; }
.breadcrumbs a { text-decoration: none; color: var(--blue); }
.blog-post-card time { color: var(--muted); font-weight: 800; font-size: .95rem; }
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}
.fab {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.3rem;
  color: var(--navy-deep);
  box-shadow: 0 18px 34px rgba(17,35,79,.18);
}
.fab-main, .fab-sub { background: linear-gradient(135deg, #ffffff, #edf6ff); }
.fab-toggle { background: linear-gradient(135deg, #f1c94c, #ffe696); cursor: pointer; transition: transform .2s ease; }
.floating-actions.is-open .fab-toggle { transform: rotate(45deg); }
.fab-sub, .fab-main {
  opacity: 0;
  transform: translateY(10px) scale(.95);
  pointer-events: none;
  transition: all .22s ease;
}
.floating-actions.is-open .fab-sub, .floating-actions.is-open .fab-main {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.site-footer { padding: 26px 0 40px; color: var(--muted); }
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(31,60,136,0.08);
}

@media (max-width: 1100px) {
  .hero-card-layered { min-height: 520px; }
  .hero-card-image { width: 74%; right: -22px; }
  .hero-card-text { max-width: 60%; }
}

@media (max-width: 1024px) {
  .hero-grid, .split-grid, .contact-grid, .about-story, .offer-grid, .blog-grid, .contact-page-grid, .two-col-grid,
  .cards-grid, .magic-grid, .stats-grid, .testimonial-grid, .blog-cards, .offer-cards, .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card { min-height: auto; }
}

@media (max-width: 820px) {

  html {
    scroll-padding-top: 92px;
  }

  main [id] {
    scroll-margin-top: 92px;
  }
  .desktop-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .hero { padding-top: 38px; }
  .hero-grid, .split-grid, .contact-grid, .about-story, .offer-grid, .blog-grid, .contact-page-grid, .two-col-grid,
  .cards-grid, .magic-grid, .stats-grid, .testimonial-grid, .blog-cards, .offer-cards, .values-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 48px 0; }
   .section-soft {
    padding-bottom: 48px;
  }
  .brand-logo { width: 58px; height: 58px; }
  .brand-text strong { font-size: 1.3rem; }
  .hero-card-inner { padding: 28px; }
  .hero-card-layered {
    min-height: 520px;
    padding: 30px 24px 28px;
  }
  .hero-card-image {
    top: 0;
    right: -12px;
    width: 78%;
    height: 100%;
  }
  .hero-card-image img {
    clip-path: ellipse(62% 68% at 70% 44%);
    object-position: 60% center;
    opacity: 0.90;
  }
  .hero-card-glow {
    background:
      linear-gradient(180deg, rgba(19,45,99,0.88) 0%, rgba(19,45,99,0.62) 34%, rgba(19,45,99,0.24) 58%, rgba(19,45,99,0.06) 76%, transparent 100%),
      linear-gradient(90deg, rgba(19,45,99,0.74) 0%, rgba(19,45,99,0.42) 38%, rgba(19,45,99,0.10) 68%, transparent 100%);
  }
  .hero-card-text {
    max-width: 100%;
    padding-top: 220px;
  }
  .hero-card-text h2 { max-width: none; }
  .sparkle-row { max-width: 100%; }
  .footer-row { flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-card-layered {
    min-height: 500px;
    border-radius: 28px;
  }
  .hero-card-image {
    width: 88%;
    right: -24px;
    top: -4px;
  }
  .hero-card-image img {
    clip-path: ellipse(66% 62% at 72% 36%);
    object-position: 62% center;
  }
  .hero-card-text { padding-top: 210px; }
  .sparkle-row span {
    font-size: 0.88rem;
    padding: 9px 12px;
  }
}
.contact-grid {
  align-items: center;
}
.page-hero-box-about {
  position: relative;
  overflow: hidden;
}

.page-hero-box-about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background-image: url("../img/swinka_na_fali.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  opacity: 0.72;
  pointer-events: none;
}

.page-hero-box-about > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .page-hero-box-about {
    padding-right: 34px;
  }

  .page-hero-box-about::after {
    width: 100%;
    height: 180px;
    top: auto;
    bottom: 0;
    right: 0;
    background-position: center bottom;
    background-size: contain;
    opacity: 0.01;
  }
}

.center-title {
  text-align: center;
}

.hover-lift-text {
  display: inline-block;
  font-weight: 700;
  transition: transform .2s ease, text-shadow .2s ease;
}

.hover-lift-text:hover {
  transform: translateY(-2px);
  text-shadow: 0 6px 14px rgba(17, 35, 79, 0.12);
}


/* === Oferta page updates === */
.offer-page .page-hero {
  padding: 64px 0 44px;
}

.offer-hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 560px;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 24%, rgba(255,255,255,0.72) 38%, rgba(255,255,255,0.12) 60%, rgba(255,255,255,0.02) 100%),
    url("../img/oferta-hero.jpg") center/cover no-repeat;
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: 0 24px 60px rgba(17, 35, 79, 0.16);
  isolation: isolate;
}

.offer-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.9), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.18));
  z-index: 0;
  pointer-events: none;
}

.offer-hero-breadcrumbs {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(31,60,136,0.10);
  box-shadow: 0 10px 24px rgba(17, 35, 79, 0.10);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-weight: 800;
}

.offer-hero-breadcrumbs a {
  text-decoration: none;
  color: var(--blue);
}

.offer-hero-breadcrumbs a:hover {
  color: var(--navy);
}

.offer-hero-breadcrumbs span {
  color: var(--muted);
}

.offer-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(31,60,136,0.10);
}

.offer-hero-copy h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
  margin-bottom: 18px;
  color: var(--navy-deep);
}

.offer-hero-copy p {
  margin-bottom: 24px;
}

.offer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.offer-anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-anchor-card,
.offer-detail-card,
.topic-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: 0 16px 40px rgba(17, 35, 79, 0.10);
}

.offer-anchor-card h3,
.offer-detail-card h3,
.topic-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.offer-anchor-card p,
.offer-detail-card p,
.topic-card p {
  margin-bottom: 0;
}

.offer-anchor-card a {
  text-decoration: none;
  display: block;
  height: 100%;
}

.offer-detail-list {
  display: grid;
  gap: 24px;
}

.offer-detail-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.offer-detail-meta {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(223,242,255,0.72), rgba(255,255,255,0.95));
  border: 1px solid rgba(79,124,255,0.14);
}

.offer-detail-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.offer-detail-meta li {
  display: grid;
  gap: 4px;
}

.offer-detail-meta strong {
  color: var(--navy);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-partnership {
  background: linear-gradient(135deg, rgba(23,49,109,0.98), rgba(45,88,187,0.95));
  color: #fff;
}

.offer-partnership h3,
.offer-partnership p,
.offer-partnership strong,
.offer-partnership .section-tag {
  color: #fff;
}

.offer-partnership .offer-detail-meta {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}

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

@media (max-width: 1100px) {
  .offer-anchor-grid,
  .offer-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .offer-hero-visual {
    min-height: 500px;
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.82) 36%, rgba(255,255,255,0.45) 58%, rgba(255,255,255,0.08) 100%),
      url("../img/oferta-hero.jpg") center/cover no-repeat;
  }

  .offer-hero-breadcrumbs {
    top: 16px;
    right: 16px;
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .offer-hero-copy {
    max-width: none;
    padding: 22px;
  }

  .offer-anchor-grid,
  .offer-topics-grid {
    grid-template-columns: 1fr;
  }

  .offer-detail-card {
    grid-template-columns: 1fr;
  }
}


/* === Topics list on oferta page === */
.offer-topics-list {
  display: grid;
  gap: 22px;
}

.topic-card.topic-card-dual {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.topic-card-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topic-card-meta {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(223,242,255,0.78), rgba(255,255,255,0.96));
  border: 1px solid rgba(79,124,255,0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topic-card-label {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-card-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.topic-card-tags li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(31,60,136,0.10);
  color: var(--muted);
  font-weight: 800;
}

.topic-card-tags li.is-active {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255,229,141,0.88), rgba(241,201,76,0.38));
  border-color: rgba(241,201,76,0.5);
}

.topic-card-tags li a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.topic-card-tags li a:hover {
  color: var(--navy);
}

.topic-card-tags li:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 35, 79, 0.08);
}

.topic-card-tags li {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

@media (max-width: 820px) {
  .topic-card.topic-card-dual {
    grid-template-columns: 1fr;
  }

  .topic-card-meta {
    padding: 18px;
  }
}
/* === Blog page hero === */
.blog-page .page-hero {
  padding: 64px 0 18px;
}

.blog-hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 540px;
  padding: 48px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.92) 18%,
      rgba(255,255,255,0.82) 32%,
      rgba(255,255,255,0.52) 46%,
      rgba(255,255,255,0.16) 62%,
      rgba(255,255,255,0.02) 100%
    ),
    url("../img/blog-hero-finanse.jpg") center right / cover no-repeat;
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: 0 24px 60px rgba(17, 35, 79, 0.16);
  isolation: isolate;
}

.blog-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.65), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.12));
  pointer-events: none;
  z-index: 0;
}

.blog-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.34);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(31,60,136,0.08);
}

.blog-hero-copy h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
  margin-bottom: 18px;
  color: var(--navy-deep);
}

.blog-hero-copy p {
  margin-bottom: 0;
}

.section-articles-intro {
  padding: 28px 0 10px;
}

.section-head-tight {
  margin-bottom: 0;
}

.section-blog-list {
  padding-top: 18px;
}

@media (max-width: 820px) {
  .blog-page .page-hero {
    padding: 48px 0 12px;
  }

  .blog-hero-visual {
    min-height: 460px;
    padding: 24px;
    align-items: flex-end;
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.88) 24%,
        rgba(255,255,255,0.64) 46%,
        rgba(255,255,255,0.18) 72%,
        rgba(255,255,255,0.04) 100%
      ),
      url("../img/blog-hero-finanse.jpg") center right / cover no-repeat;
  }

  .blog-hero-copy {
    max-width: none;
    padding: 22px;
    background: rgba(255,255,255,0.58);
  }

  .section-articles-intro {
    padding: 20px 0 6px;
  }

  .section-blog-list {
    padding-top: 10px;
  }
}

/* === Kontakt HERO === */
.contact-page .contact-hero {
  position: relative;
  padding: 64px 0 48px;
}

.contact-page .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 230, 184, 0.30), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(205, 237, 255, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.10) 100%);
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.contact-hero-copy,
.contact-star-panel {
  border-radius: 34px;
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: var(--shadow);
}

.contact-hero-copy {
  padding: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(231,242,255,0.88));
}

.contact-hero-copy h2 {
  max-width: 12ch;
  color: var(--navy-deep);
}

.contact-hero-copy .lead {
  max-width: 58ch;
}

.contact-hero-details {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.contact-hero-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31,60,136,0.08);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-hero-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17,35,79,0.10);
  border-color: rgba(79,124,255,0.24);
}

.contact-hero-item.is-static:hover {
  transform: none;
}

.contact-hero-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.2rem;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #fff0b5 0%, #f1c94c 100%);
  box-shadow: 0 12px 24px rgba(241,201,76,0.22);
}

.contact-hero-item strong,
.contact-hero-item small {
  display: block;
}

.contact-hero-item strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
}

.contact-hero-item small {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-star-panel {
  min-height: 100%;
  padding: 0;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(25,55,121,0.96), rgba(78,120,228,0.92));
  overflow: hidden;
  position: relative;
}

.contact-star-panel::before,
.contact-star-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-star-panel::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 62%);
}

.contact-star-panel::after {
  width: 280px;
  height: 280px;
  bottom: -90px;
  left: -70px;
  background: radial-gradient(circle, rgba(241,201,76,0.16), transparent 66%);
}

.contact-star-stage {
  position: relative;
  min-height: 600px;
  padding: 24px 24px 110px;
  display: grid;
  place-items: center;
  isolation: isolate;
  border-radius: inherit;
  overflow: hidden;
}

.contact-star-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: var(--contact-star-bg-image, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.28;
  filter: saturate(1.02) contrast(1.02);
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}

.contact-star-stage.has-custom-bg {
  --contact-star-bg-image: url("../img/tlo_kontakt.jpg");
}

.contact-star-stage:not(.has-custom-bg) .contact-star-bg {
  display: none;
}

.phone-reveal {
  position: absolute;
  z-index: 1;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .28s ease, transform .28s ease, box-shadow .28s ease;
  box-shadow: 0 16px 34px rgba(7,20,52,0.18);
}

.contact-star-button {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform .24s ease, filter .24s ease;
}

.contact-star-button:hover {
  transform: scale(1.03) rotate(-2deg);
}

.contact-star-image {
  width: min(100%, 620px);
  max-width: 112%;
  filter: drop-shadow(0 24px 42px rgba(8, 18, 53, 0.30));
  transition: filter .28s ease, transform .28s ease;
}

.contact-star-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  width: min(92%, 360px);
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
}

.contact-star-stage.is-revealed .phone-reveal {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 18px 42px rgba(241,201,76,0.24);
}

.contact-star-stage.is-revealed .contact-star-bg {
  opacity: 0.42;
  transform: scale(1.01);
  filter: saturate(1.06) contrast(1.03);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-star-stage {
    min-height: 480px;
  }
}

@media (max-width: 820px) {
  .contact-page .contact-hero {
    padding-top: 36px;
  }

  .contact-hero-copy {
    padding: 28px 24px;
  }

  .contact-star-panel {
    padding: 0;
  }

  .contact-star-stage {
    min-height: 470px;
    padding: 18px 18px 92px;
  }

  .contact-star-caption {
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  .contact-hero-item {
    grid-template-columns: 46px 1fr;
    padding: 14px;
    border-radius: 18px;
  }

  .contact-hero-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .contact-star-stage {
    min-height: 360px;
    padding: 14px 14px 80px;
  }

  .phone-reveal {
    width: calc(100% - 28px);
    text-align: center;
    font-size: 1rem;
    padding: 14px 16px;
  }
}


/* === Kontakt HERO fixes v2 === */
.contact-page-body .site-header {
  background: rgba(255,255,255,0.82);
}

.contact-page-body .nav-wrap {
  padding: 10px 0;
}

.contact-page-body .brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.contact-page-body .brand-text strong {
  font-size: 1.42rem;
}

.contact-page-body .desktop-nav {
  gap: 18px;
}

.contact-page-body .desktop-nav a {
  font-size: 0.98rem;
}

.contact-page .contact-hero {
  padding: 48px 0 44px;
}

.contact-star-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-star-stage {
  width: 100%;
  min-height: clamp(420px, 48vw, 580px);
  padding: 18px 20px 94px;
}

.contact-star-button {
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-star-image {
  width: clamp(320px, 92%, 520px);
  max-height: 520px;
  object-fit: contain;
}

.contact-star-caption {
  bottom: 18px;
}

@media (max-width: 820px) {
  .contact-page-body .nav-wrap {
    padding: 8px 0;
  }

  .contact-page-body .brand-logo {
    width: 52px;
    height: 52px;
  }

  .contact-page-body .brand-text strong {
    font-size: 1.22rem;
  }

  .contact-star-stage {
    min-height: 420px;
    padding: 16px 14px 88px;
  }

  .contact-star-image {
    width: clamp(280px, 92%, 400px);
    max-height: 400px;
  }
}

@media (max-width: 560px) {
  .contact-star-stage {
    min-height: 360px;
    padding-bottom: 80px;
  }

  .contact-star-image {
    width: min(92%, 320px);
    max-height: 320px;
  }
}

/* === Zagnieżdżone FAQ na dole strony kontaktowej === */
.contact-faq-bottom {
  padding-top: 20px;
  padding-bottom: 56px;
}

.contact-faq-bottom-toggle {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-faq-bottom-toggle summary {
  list-style: none;
}

.contact-faq-bottom-toggle summary::-webkit-details-marker {
  display: none;
}

.contact-faq-bottom-button {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 72px 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: 0 16px 38px rgba(17, 35, 79, 0.08);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-faq-bottom-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(17, 35, 79, 0.11);
  border-color: rgba(79,124,255,0.18);
}

.contact-faq-bottom-button span {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
}

.contact-faq-bottom-button small {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}

.contact-faq-bottom-button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(223,242,255,0.95), rgba(255,244,201,0.92));
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 35, 79, 0.08);
}

.contact-faq-bottom-toggle[open] .contact-faq-bottom-button::after {
  content: "–";
  background: linear-gradient(135deg, #ffe58d 0%, #f1c94c 100%);
}

.contact-faq-bottom-panel {
  margin-top: 18px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: 0 16px 38px rgba(17, 35, 79, 0.08);
}

.contact-faq-bottom-head {
  margin-bottom: 26px;
}

.contact-faq-bottom-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-faq-bottom-list {
  display: grid;
  gap: 16px;
}

.contact-faq-bottom-item {
  border-radius: 22px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(31,60,136,0.08);
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.contact-faq-bottom-item:hover {
  border-color: rgba(79,124,255,0.18);
  box-shadow: 0 12px 28px rgba(17, 35, 79, 0.08);
}

.contact-faq-bottom-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 62px 20px 22px;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
}

.contact-faq-bottom-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-bottom-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(223,242,255,0.95), rgba(255,244,201,0.92));
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 35, 79, 0.08);
}

.contact-faq-bottom-item[open] summary::after {
  content: "–";
  background: linear-gradient(135deg, #ffe58d 0%, #f1c94c 100%);
}

.contact-faq-bottom-item[open] summary {
  padding-bottom: 12px;
}

.contact-faq-bottom-answer {
  padding: 0 22px 20px;
}

.contact-faq-bottom-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

@media (max-width: 820px) {
  .contact-faq-bottom {
    padding-top: 8px;
    padding-bottom: 40px;
  }

  .contact-faq-bottom-button {
    padding: 20px 62px 20px 18px;
    border-radius: 20px;
  }

  .contact-faq-bottom-button::after {
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 1.15rem;
  }

  .contact-faq-bottom-panel {
    margin-top: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .contact-faq-bottom-list {
    gap: 14px;
  }

  .contact-faq-bottom-item {
    border-radius: 18px;
  }

  .contact-faq-bottom-item summary {
    padding: 18px 54px 18px 16px;
    font-size: 0.98rem;
  }

  .contact-faq-bottom-item summary::after {
    right: 14px;
    width: 28px;
    height: 28px;
    font-size: 1.05rem;
  }

  .contact-faq-bottom-answer {
    padding: 0 16px 16px;
  }
}

/* === Obawy / odpowiedzi section on homepage === */
.objections-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.objections-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.objections-lead {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.objection-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(31,60,136,0.08);
  box-shadow: 0 16px 40px rgba(17, 35, 79, 0.10);
  transition: transform .22s ease, box-shadow .22s ease;
}

.objection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(17, 35, 79, 0.16);
}

.objection-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  font-size: 1.2rem;
  color: var(--navy);
  background: linear-gradient(135deg, #fff1b7 0%, #f1c94c 100%);
  box-shadow: 0 10px 18px rgba(241, 201, 76, 0.22);
}

.objection-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.objection-card p {
  margin-bottom: 0;
  color: var(--text);
}

@media (max-width: 1100px) {
  .objections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .objections-grid {
    grid-template-columns: 1fr;
  }

  .objection-card {
    padding: 22px;
  }
}

/* linkowanie do oferty */

.sparkle-row a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(31,60,136,0.08);
  color: var(--navy-deep);
  font-size: 0.94rem;
  box-shadow: 0 8px 18px rgba(31,60,136,0.06);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.sparkle-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31,60,136,0.10);
  color: var(--blue);
}

/* dobra cena */

.best-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe58d 0%, var(--gold) 100%);
  color: #1b2a52;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(241, 201, 76, 0.28);
  white-space: nowrap;
}

.best-price-badge::before {
  content: "★";
  font-size: 0.82rem;
}

@media (max-width: 560px) {
  .best-price-badge {
    margin-left: 0;
    margin-top: 8px;
  }

  .price-highlight-row span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

/* Pasek postępu przewijania */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1100;
  background: transparent;
}

.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f1c94c, #4f7cff);
  border-radius: 0 4px 4px 0;
  transition: width .1s linear;
}

/* Korekta jasności karty z linkami w widoku mobilnym */
.sparkle-row a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31,60,136,0.08);
  color: var(--navy-deep);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(31,60,136,0.06);
}

.sparkle-row a:hover {
  background: rgba(255,255,255,0.95);
  color: var(--blue);
}

@media (max-width: 820px) {
  .hero-card-glow {
    background:
      linear-gradient(180deg, 
        rgba(255,255,255,0.18) 0%, 
        rgba(255,255,255,0.10) 34%, 
        rgba(246,250,255,0.72) 58%, 
        rgba(246,250,255,0.96) 76%, 
        rgba(246,250,255,0.98) 100%
      ),
      linear-gradient(90deg, 
        rgba(255,255,255,0.72) 0%, 
        rgba(246,250,255,0.46) 38%, 
        rgba(246,250,255,0.12) 68%, 
        transparent 100%
      );
  }
}

@media (max-width: 560px) {
  .sparkle-row a {
    font-size: 0.88rem;
    padding: 9px 12px;
  }
}

/* =========================================================
   Paginacja bloga
   ========================================================= */

#blogGrid {
  min-height: 200px;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-bottom: 16px;
}

.blog-pag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(31, 60, 136, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 35, 79, 0.08);
  transition: transform .2s ease, box-shadow .2s ease,
              background .2s ease, color .2s ease, border-color .2s ease;
}

.blog-pag-btn:hover:not(.disabled):not(.active) {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 35, 79, 0.14);
  border-color: rgba(79, 124, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue);
}

.blog-pag-btn.active {
  background: linear-gradient(135deg, var(--navy) 0%, #2d58bb 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(31, 60, 136, 0.26);
  cursor: default;
}

.blog-pag-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.blog-pag-arrow {
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  #blogGrid.blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  #blogGrid.blog-cards {
    grid-template-columns: 1fr;
  }

  .blog-pagination {
    margin-top: 36px;
    gap: 6px;
  }

  .blog-pag-btn {
    min-width: 40px;
    height: 40px;
    font-size: 0.92rem;
  }
}

/* =========================================================
   Kontakt: dodatkowy numer telefonu Justyny Ramotowskiej
   ========================================================= */

.contact-hero-phones {
  align-items: start;
}

.contact-hero-content {
  min-width: 0;
}

.contact-hero-hint {
  margin-top: 2px;
  margin-bottom: 14px;
}

.contact-phone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.contact-phone-link {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,248,255,0.96));
  border: 1px solid rgba(79,124,255,0.14);
  box-shadow: 0 10px 22px rgba(17, 35, 79, 0.07);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.contact-phone-link:hover {
  transform: translateY(-2px);
  border-color: rgba(241,201,76,0.55);
  box-shadow: 0 16px 32px rgba(17, 35, 79, 0.12);
  background:
    linear-gradient(135deg, rgba(255,248,220,0.98), rgba(239,247,255,0.98));
}

.contact-phone-name {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.contact-phone-number {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.contact-hero-phones .contact-hero-icon {
  background: linear-gradient(135deg, #fff0b5 0%, #f1c94c 100%);
}

/* =========================================================
   ZAAWANSOWANE ZMIANY DLA FINSTARS (NUMERY POD GWIAZDKĄ)
   ========================================================= */

/* Pozycjonowanie numerów POD gwiazdką po kliknięciu */
.phone-reveal-list {
  left: 50%;
  bottom: 24px;  /* Zamiast na górze, przypięte do dołu */
  top: auto;     
  z-index: 4;
  display: grid;
  gap: 10px;
  width: min(86%, 390px);
  padding: 14px;
  border-radius: 24px;
  background: rgba(19,45,99,0.42);
  border: 1px solid rgba(255,255,255,0.34);
  backdrop-filter: blur(12px);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  
  /* Startowa pozycja odrobinę niżej, wjeżdża do góry z animacją */
  transform: translateX(-50%) translateY(20px) scale(0.92);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-reveal-list a {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background .22s ease, transform .22s ease;
}

.phone-reveal-list a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
}

.phone-reveal-list span {
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
}

.phone-reveal-list strong {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.2;
  color: #fff5cc;
}

.contact-star-stage.is-revealed .phone-reveal-list {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Animacja samej gwiazdki ułatwiająca zmieszczenie pod nią numerów */
.contact-star-stage .contact-star-image {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-star-stage.is-revealed .contact-star-image {
  /* Gwiazdka kurczy się delikatnie i wędruje do góry by zwolnić dół */
  transform: scale(0.92) translateY(-40px);
}

/* Ukrycie podpisu tekstowego pod gwiazdką w momencie kliknięcia */
.contact-star-stage .contact-star-caption {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-star-stage.is-revealed .contact-star-caption {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
}

@media (max-width: 680px) {
  .contact-phone-list {
    grid-template-columns: 1fr;
  }
  .contact-phone-link {
    padding: 13px 14px;
  }
  .contact-phone-number {
    font-size: 1rem;
  }
  .phone-reveal-list {
    bottom: 20px;
    width: min(90%, 360px);
  }
}

@media (max-width: 560px) {
  .contact-hero-phones {
    grid-template-columns: 46px 1fr;
  }
  .contact-hero-hint {
    font-size: 0.94rem;
  }
  .phone-reveal-list {
    bottom: 16px;
  }
}

/* =========================================================
   ULEPSZENIE ŚRODKOWEJ SEKCJI KONTAKTU (HARMONIJNY WYGLĄD)
   ========================================================= */

.contact-response-time {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-response-time h2 {
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.contact-working-hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed rgba(31, 60, 136, 0.12);
}

.contact-working-hours p {
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0;
}

.contact-company-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.company-details-block {
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(79, 124, 255, 0.1);
  box-shadow: 0 8px 24px rgba(17, 35, 79, 0.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.company-details-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 35, 79, 0.08);
  border-color: rgba(79, 124, 255, 0.2);
}

.company-details-block h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.company-details-block p {
  margin-bottom: 4px;
  font-size: 0.98rem;
  color: var(--muted);
  font-weight: 600;
}

/* =========================================================
   IKONY FACEBOOK I YOUTUBE W STOPCE
   ========================================================= */

.site-footer {
  padding: 28px 0 40px;
  color: var(--muted);
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 60, 136, 0.08);
}

.footer-row p {
  margin: 0;
}

.footer-copyright {
  font-size: 0.96rem;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--blue);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social-label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(31, 60, 136, 0.1);
  border-radius: 15px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(225, 240, 255, 0.94));
  box-shadow: 0 10px 24px rgba(17, 35, 79, 0.09);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link:hover {
  color: var(--blue);
  background: linear-gradient(135deg, rgba(255, 244, 201, 0.98), rgba(225, 240, 255, 0.98));
  box-shadow: 0 14px 28px rgba(17, 35, 79, 0.14);
  transform: translateY(-3px);
}

.footer-social-link:focus-visible {
  outline: 3px solid rgba(79, 124, 255, 0.32);
  outline-offset: 3px;
}

.footer-social-icon {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .footer-row {
    grid-template-columns: 1fr auto;
  }

  .footer-legal {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-bottom: 34px;
  }

  .footer-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .footer-social {
    width: 100%;
    justify-content: space-between;
    padding-top: 4px;
  }

  .footer-social-link {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .footer-social-icon {
    width: 24px;
    height: 24px;
  }
}


/* =========================================================
   ROZWINIĘTY PLUSIK: E-MAIL, TELEFON, FACEBOOK, YOUTUBE
   ========================================================= */

.floating-actions {
  flex-direction: column;
  right: 18px;
  bottom: 18px;
  gap: 10px;
}

.floating-actions .fab {
  position: relative;
  overflow: hidden;
}

.fab-toggle {
  order: 10;
  font-size: 1.55rem;
  line-height: 1;
}

.fab-main,
.fab-sub {
  order: 1;
}

.fab-social {
  color: var(--navy-deep);
}

.fab-icon {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.fab-main:hover,
.fab-sub:hover,
.fab-main:focus-visible,
.fab-sub:focus-visible {
  color: var(--blue);
  background: linear-gradient(135deg, #ffffff, #fff4c9);
  transform: translateY(-2px) scale(1.02);
}

.fab:focus-visible {
  outline: 3px solid rgba(79, 124, 255, 0.32);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 9px;
  }

  .floating-actions .fab {
    width: 52px;
    height: 52px;
  }

  .fab-icon {
    width: 23px;
    height: 23px;
  }
}


/* =========================================================
   NAPIS "MENU" OBOK IKONY HAMBURGERA W WERSJI MOBILNEJ
   ========================================================= */

.nav-toggle .nav-toggle-label {
  display: none;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  border-radius: 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-toggle .nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
  height: 18px;
  margin: 0;
  background: transparent;
  border-radius: 0;
  transition: none;
}

.nav-toggle .nav-toggle-bars span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 0;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 104px;
    height: 52px;
    padding: 0 14px;
  }

  .nav-toggle .nav-toggle-label {
    display: inline-block;
  }

  .nav-toggle:hover .nav-toggle-label,
  .nav-toggle:focus-visible .nav-toggle-label {
    color: var(--blue);
  }
}

@media (max-width: 380px) {
  .nav-toggle {
    min-width: 96px;
    padding: 0 12px;
    gap: 8px;
  }

  .nav-toggle .nav-toggle-label {
    font-size: 0.88rem;
  }
}


/* Uzupełnienie dla nieaktywnych elementów prawnych w stopce */
.footer-legal-text {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

/* Zachowanie odstępów pierwotnej stopki. */
    .site-footer {
      padding: 28px 0 40px;
    }

    .funding-banner {
      padding: 10px 0 4px;
      background: #fff;
    }

    .funding-banner-inner {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .funding-banner img {
      display: block;
      width: auto;
      max-width: min(100%, 820px);
      height: auto;
      max-height: 76px;
      object-fit: contain;
    }

    @media (max-width: 560px) {
      .site-footer {
        padding-bottom: 34px;
      }

      .funding-banner {
        padding: 8px 0 2px;
      }

      .funding-banner img {
        width: 100%;
        max-height: 36px;
      }
    }
