:root {
  --dark: #061526;
  --dark-2: #071b33;
  --dark-3: #0b2545;
  --green: #39ff88;
  --green-2: #00e676;
  --white: #ffffff;
  --text: #d8e2ee;
  --muted: #8fa3b8;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: -0.06em;
}

h1 span {
  color: var(--green);
  display: block;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 25px;
}

p {
  color: var(--text);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--green);
  color: #03110b;
  box-shadow: 0 0 34px rgba(57, 255, 136, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 54px rgba(57, 255, 136, 0.5);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

/* HEADER */

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-inner {
  height: 74px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(6, 21, 38, 0.72);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  height: 46px;
}

.logo img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: var(--text);
  font-size: 14px;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.header-phone {
  color: var(--green);
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 160px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(57, 255, 136, 0.23), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(0, 230, 118, 0.12), transparent 34%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-lead {
  font-size: 20px;
  max-width: 680px;
  margin: 28px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-tags span {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text);
  backdrop-filter: blur(14px);
  font-size: 14px;
}
.hero-photo-wrap {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 42px;
  overflow: visible;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 78%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 18%, rgba(57, 255, 136, 0.32), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(57, 255, 136, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  z-index: 0;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  bottom: -24px;
  width: 75%;
  height: 90px;
  background: rgba(57, 255, 136, 0.22);
  filter: blur(55px);
  border-radius: 999px;
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 92%;
  height: 660px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(6, 21, 38, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  color: var(--green);
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--text);
  font-size: 14px;
}

.card-one {
  left: -30px;
  bottom: 80px;
}

.card-two {
  right: -24px;
  top: 110px;
}

/* ABOUT */

.about {
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image img {
  height: 560px;
  object-fit: cover;
}

.about-content p {
  margin-top: 20px;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.about-points div {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--glass);
}

.about-points span {
  color: var(--green);
  font-weight: 800;
}

/* SECTION HEAD */

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head p:last-child {
  margin-top: 18px;
}

/* SERVICES */

.services {
  background:
    radial-gradient(circle at 20% 10%, rgba(57, 255, 136, 0.12), transparent 28%),
    var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.process-card,
.review-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(18px);
  padding: 30px;
  transition: 0.35s ease;
}

.service-card:hover,
.process-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 255, 136, 0.55);
  box-shadow: 0 24px 70px rgba(57, 255, 136, 0.12);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(57, 255, 136, 0.12);
  font-size: 28px;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.service-card li {
  color: var(--text);
}

.service-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
}

.service-card a {
  color: var(--green);
  font-weight: 700;
}

/* PROCESS */

.process {
  background: var(--dark-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card span {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.process-card h3 {
  margin: 18px 0 12px;
}

/* COMPLEX */

.complex {
  background:
    radial-gradient(circle at 80% 50%, rgba(57, 255, 136, 0.18), transparent 30%),
    var(--dark);
}

.complex-box {
  border: 1px solid var(--border);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  backdrop-filter: blur(20px);
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow);
}

.complex-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 42px 0;
  flex-wrap: wrap;
}

.complex-flow div {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(57, 255, 136, 0.12);
  border: 1px solid rgba(57, 255, 136, 0.34);
  font-weight: 700;
}

.complex-flow span {
  width: 36px;
  height: 2px;
  background: var(--green);
}

/* REVIEWS */

.reviews {
  background: var(--dark-2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stars {
  color: var(--green);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
}

.center {
  text-align: center;
  margin-top: 36px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--glass);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 22px;
  background: transparent;
  color: var(--white);
  border: 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item p {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.active {
  border-color: rgba(57, 255, 136, 0.45);
}

.faq-item.active p {
  display: block;
}

/* CONTACT */

.contact {
  background:
    radial-gradient(circle at 10% 70%, rgba(57, 255, 136, 0.18), transparent 30%),
    var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-content p {
  margin-top: 20px;
}

.contact-data {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-data a {
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(18px);
  padding: 30px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 16px;
  padding: 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
}

.contact-form option {
  color: #000;
}

.checkbox {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: #030b14;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .main-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
  }

  .main-nav.active {
    display: grid;
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(6, 21, 38, 0.96);
    border: 1px solid var(--border);
  }

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-photo {
    height: 520px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .complex-box {
    padding: 30px 20px;
  }

  .complex-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .complex-flow span {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .hero-photo {
    height: 430px;
  }
}

/* =========================================================
   PREMIUM OVERRIDE — ADAM ŚWIDA
   Menu, fonty, telefon, hero PNG
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --font-main: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;

  --dark: #061526;
  --dark-2: #071b33;
  --dark-3: #0b2545;
  --green: #35ff85;
  --green-2: #00e676;
  --white: #ffffff;
  --text: #dce8f4;
  --muted: #91a5b8;

  --header-bg: rgba(4, 17, 31, 0.74);
  --header-border: rgba(255, 255, 255, 0.11);
  --glass-soft: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.105);
}

body {
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: -0.015em;
  background:
    radial-gradient(circle at 82% 8%, rgba(53, 255, 133, 0.16), transparent 26%),
    radial-gradient(circle at 8% 78%, rgba(0, 230, 118, 0.09), transparent 34%),
    var(--dark);
}

h1,
h2,
h3,
.logo,
.header-phone,
.btn {
  font-family: var(--font-heading);
}

h1 {
  font-weight: 800;
  letter-spacing: -0.075em;
}

h2 {
  font-weight: 800;
  letter-spacing: -0.06em;
}

p {
  font-weight: 500;
}

/* HEADER PREMIUM */

.site-header {
  top: 22px;
}

.header-inner {
  height: 78px;
  padding: 0 18px 0 24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(5, 18, 33, 0.9), rgba(4, 16, 30, 0.68)),
    rgba(5, 18, 33, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.105);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  gap: 24px;
}

.logo {
  height: 58px;
  min-width: 260px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

/* MENU */

.main-nav {
  height: 52px;
  padding: 5px;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.main-nav a,
.main-nav .nav-link {
  position: relative;
  height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(226, 238, 248, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.025em;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.main-nav a::before,
.main-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(53, 255, 133, 0.2), rgba(53, 255, 133, 0.04));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.main-nav a::after,
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  box-shadow: 0 0 18px rgba(53, 255, 133, 0.8);
}

.main-nav a:hover,
.main-nav .nav-link:hover,
.main-nav a.active,
.main-nav .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-1px);
}

.main-nav a:hover::before,
.main-nav .nav-link:hover::before,
.main-nav a.active::before,
.main-nav .nav-link.active::before {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav .nav-link:hover::after,
.main-nav a.active::after,
.main-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* PHONE BUTTON */

.header-phone {
  height: 52px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #03110b;
  background:
    linear-gradient(135deg, #53ff9c, #18ee74);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.025em;
  box-shadow:
    0 14px 34px rgba(53, 255, 133, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.header-phone:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(53, 255, 133, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  filter: saturate(1.08);
}

.phone-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(3, 17, 11, 0.13);
}

.phone-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #03110b;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* HERO — MORE PREMIUM, NO FLOATING CARDS */

.hero {
  padding-top: 156px;
}

.hero-inner {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero .eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--green);
  text-shadow: 0 0 28px rgba(53, 255, 133, 0.24);
}

.hero h1 {
  max-width: 720px;
}

.hero-lead {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(226, 238, 248, 0.86);
}

.hero-actions .btn {
  min-height: 58px;
  padding: 0 28px;
  font-size: 14px;
  letter-spacing: -0.025em;
}

.hero-tags span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(226, 238, 248, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* NEW PNG STAGE */

.hero-photo-wrap {
  display: none !important;
}

.hero-photo-stage {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-photo-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(520px, 92%);
  height: 520px;
  transform: translateX(-50%);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 58% 30%, rgba(53, 255, 133, 0.22), transparent 42%),
    linear-gradient(160deg, rgba(7, 27, 51, 0.86), rgba(5, 18, 33, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1;
}

.hero-photo-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 430px;
  max-width: 76%;
  height: 70px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(53, 255, 133, 0.2);
  filter: blur(54px);
  z-index: 0;
}

.hero-light {
  position: absolute;
  left: 50%;
  top: 10%;
  width: 520px;
  max-width: 92%;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(53, 255, 133, 0.18), transparent 62%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  left: 50%;
  bottom: 82px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(53, 255, 133, 0.13);
  z-index: 2;
  pointer-events: none;
}

.hero-orbit-one {
  width: 560px;
  max-width: 96%;
  height: 560px;
  opacity: 0.52;
}

.hero-orbit-two {
  width: 430px;
  max-width: 76%;
  height: 430px;
  opacity: 0.38;
}

.hero-photo {
  position: relative;
  z-index: 4;
  width: auto;
  max-width: 94%;
  height: 675px;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 34px 48px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 22px rgba(53, 255, 133, 0.08));
}

/* remove old floating cards completely */

.floating-card,
.card-one,
.card-two {
  display: none !important;
}

/* Better buttons */

.btn-primary {
  color: #03110b;
  background:
    linear-gradient(135deg, #55ff9d, #18ee74);
  box-shadow:
    0 16px 38px rgba(53, 255, 133, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Mobile */

@media (max-width: 1120px) {
  .logo {
    min-width: 220px;
  }

  .logo img {
    height: 42px;
    max-width: 230px;
  }

  .main-nav a,
  .main-nav .nav-link {
    padding: 0 11px;
    font-size: 12px;
  }

  .header-phone {
    padding-right: 14px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    height: 74px;
    border-radius: 24px;
  }

  .logo {
    min-width: auto;
  }

  .logo img {
    height: 40px;
    max-width: 230px;
  }

  .main-nav {
    height: auto;
    padding: 18px;
    gap: 8px;
    border-radius: 24px;
  }

  .main-nav.active {
    display: grid;
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    background:
      linear-gradient(135deg, rgba(5, 18, 33, 0.98), rgba(4, 16, 30, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .main-nav.active a {
    width: 100%;
    height: 46px;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu-toggle span {
    width: 20px;
    background: #ffffff;
    transition: 0.25s ease;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-photo-stage {
    min-height: 590px;
  }

  .hero-photo-stage::before {
    height: 470px;
    bottom: 24px;
  }

  .hero-photo {
    height: 590px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
  }

  .header-inner {
    padding: 0 12px 0 16px;
    height: 68px;
  }

  .logo img {
    height: 34px;
    max-width: 190px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
    letter-spacing: -0.075em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-photo-stage {
    min-height: 470px;
  }

  .hero-photo-stage::before {
    width: 94%;
    height: 365px;
    bottom: 20px;
    border-radius: 34px;
  }

  .hero-photo {
    height: 470px;
    max-width: 100%;
  }

  .hero-orbit-one,
  .hero-orbit-two {
    display: none;
  }
}

/* =========================================================
   FONT OVERRIDE — ROBOTO
========================================================= */

:root {
  --font-main: "Roboto", Arial, sans-serif;
  --font-heading: "Roboto", Arial, sans-serif;
}

html,
body,
button,
input,
textarea,
select {
  font-family: "Roboto", Arial, sans-serif !important;
}

body {
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

p,
li,
label,
span,
a,
button,
input,
textarea,
select,
.faq-item p,
.service-card p,
.process-card p,
.review-card p,
.checkbox {
  font-family: "Roboto", Arial, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.logo,
.logo *,
.main-nav,
.main-nav a,
.main-nav .nav-link,
.header-phone,
.header-phone *,
.btn,
.hero-tags span,
.service-card a,
.contact-data a,
.process-card span,
.service-card h3,
.process-card h3,
.review-card strong {
  font-family: "Roboto", Arial, sans-serif !important;
}

h1 {
  font-weight: 900 !important;
  letter-spacing: -0.055em !important;
}

h2 {
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
}

h3 {
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

.hero-lead,
.section-head > p,
.about-content > p {
  font-family: "Roboto", Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.main-nav a,
.main-nav .nav-link {
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.header-phone,
.btn {
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

/* =========================================================
   SERVICES ICONS — MODERN GLASS SVG
========================================================= */

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(53, 255, 133, 0.08);
  filter: blur(18px);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon.glass-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 30% 20%, rgba(53, 255, 133, 0.22), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.service-icon.glass-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 19px;
  border: 1px solid rgba(53, 255, 133, 0.12);
  pointer-events: none;
}

.service-icon.glass-icon::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(53, 255, 133, 0.85);
  opacity: 0.8;
}

.service-icon.glass-icon svg {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(53, 255, 133, 0.34));
}

.service-card:hover .service-icon.glass-icon {
  transform: translateY(-4px) scale(1.035);
  border-color: rgba(53, 255, 133, 0.38);
  box-shadow:
    0 22px 58px rgba(53, 255, 133, 0.14),
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card a::after {
  content: "→";
  display: inline-block;
  transition: transform 0.25s ease;
}

.service-card a:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   REVIEWS PREMIUM — GOOGLE STYLE GLASS CAROUSEL
========================================================= */

.reviews-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(53, 255, 133, 0.12), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(53, 255, 133, 0.08), transparent 34%),
    var(--dark-2);
}

.reviews-premium::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(53, 255, 133, 0.055);
  filter: blur(90px);
  pointer-events: none;
}

.reviews-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.reviews-top .section-head {
  margin-bottom: 0;
}

.google-rating-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.google-rating-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(53, 255, 133, 0.9);
}

.google-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #111827;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.google-rating-card strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 6px;
}

.google-rating-card p {
  margin: 6px 0 0;
  color: rgba(220, 232, 244, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.rating-stars,
.stars {
  color: var(--green);
  letter-spacing: 3px;
  text-shadow: 0 0 18px rgba(53, 255, 133, 0.32);
}

.reviews-slider {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 18px;
  align-items: center;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 32px;
}

.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.premium-review {
  min-width: calc((100% - 44px) / 3);
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.135);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.premium-review::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: 4px;
  font-size: 110px;
  line-height: 1;
  color: rgba(53, 255, 133, 0.09);
  font-weight: 900;
  pointer-events: none;
}

.premium-review:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 255, 133, 0.34);
  box-shadow:
    0 28px 80px rgba(53, 255, 133, 0.10),
    0 24px 70px rgba(0, 0, 0, 0.25);
}

.review-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(53, 255, 133, 0.95), rgba(0, 230, 118, 0.82));
  color: #03110b;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(53, 255, 133, 0.18);
}

.review-card-head strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.review-card-head span {
  display: block;
  color: rgba(220, 232, 244, 0.6);
  font-size: 13px;
  margin-top: 3px;
}

.premium-review .stars {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-size: 15px;
}

.premium-review p {
  position: relative;
  z-index: 2;
  color: rgba(220, 232, 244, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.reviews-arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.reviews-arrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 255, 133, 0.42);
  background:
    linear-gradient(145deg, rgba(53, 255, 133, 0.18), rgba(255, 255, 255, 0.055));
  box-shadow: 0 18px 45px rgba(53, 255, 133, 0.12);
}

.reviews-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 38px;
  text-align: center;
}

.reviews-bottom p {
  max-width: 460px;
  color: rgba(220, 232, 244, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .reviews-top {
    grid-template-columns: 1fr;
  }

  .google-rating-card {
    max-width: 420px;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .reviews-track {
    transform: none !important;
  }

  .premium-review {
    min-width: 78%;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .google-rating-card {
    padding: 20px;
    border-radius: 24px;
  }

  .google-mark {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .premium-review {
    min-width: 88%;
    padding: 24px;
    border-radius: 26px;
  }

  .reviews-bottom {
    align-items: stretch;
  }

  .reviews-bottom .btn {
    width: 100%;
  }
}

/* =========================================================
   KOMPAS KREDYTOWY — ADVENTURE / JUNGLE / MAP THEME
   Doklej na sam koniec style.css
========================================================= */

:root {
  --kk-bg: #10160f;
  --kk-bg-2: #182314;
  --kk-jungle: #24351d;
  --kk-leaf: #516d38;
  --kk-leaf-dark: #1d2b18;
  --kk-gold: #c99632;
  --kk-gold-2: #e3b75d;
  --kk-brass: #8a5f22;
  --kk-parchment: #f1dfb7;
  --kk-parchment-2: #d7bd82;
  --kk-ink: #2b1d0f;
  --kk-white: #fff7e6;
  --kk-muted: #d8c89f;
  --kk-border: rgba(227, 183, 93, 0.34);
  --kk-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);

  --font-main: "Lato", Arial, sans-serif;
  --font-heading: "Cinzel", Georgia, serif;
}

html,
body {
  font-family: var(--font-main) !important;
}

body.kompas-theme {
  background:
    radial-gradient(circle at 15% 8%, rgba(227, 183, 93, 0.11), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(81, 109, 56, 0.22), transparent 30%),
    linear-gradient(180deg, #0d150c, #172211 45%, #0d150c);
  color: var(--kk-white);
}

.kompas-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(241, 223, 183, 0.025) 0,
      rgba(241, 223, 183, 0.025) 1px,
      transparent 1px,
      transparent 9px
    );
  opacity: 0.7;
}

.kompas-theme h1,
.kompas-theme h2,
.kompas-theme h3,
.kompas-theme .eyebrow,
.kompas-theme .btn,
.kompas-theme .main-nav a,
.kompas-theme .header-phone,
.kompas-theme .card-kicker {
  font-family: var(--font-heading) !important;
}

.kompas-theme p,
.kompas-theme li,
.kompas-theme input,
.kompas-theme textarea,
.kompas-theme select,
.kompas-theme button {
  font-family: var(--font-main) !important;
}

.kompas-theme h1 {
  font-size: clamp(46px, 6.7vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--kk-white);
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.22);
}

.kompas-theme h1 span {
  color: var(--kk-gold-2);
  display: block;
}

.kompas-theme h2 {
  color: var(--kk-white);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.kompas-theme h3 {
  color: var(--kk-white);
}

.kompas-theme p {
  color: rgba(255, 247, 230, 0.78);
}

.kompas-theme .eyebrow {
  color: var(--kk-gold-2);
  letter-spacing: 0.2em;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(227, 183, 93, 0.26);
}

/* HEADER */

.adventure-header {
  top: 18px;
}

.adventure-nav {
  height: 82px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(29, 43, 24, 0.92), rgba(15, 23, 13, 0.84)),
    radial-gradient(circle at 15% 10%, rgba(227, 183, 93, 0.14), transparent 38%);
  border: 1px solid rgba(227, 183, 93, 0.28);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 247, 230, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.adventure-logo img {
  height: 58px;
  max-width: 300px;
  object-fit: contain;
}

.adventure-menu {
  padding: 5px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(241, 223, 183, 0.08), rgba(241, 223, 183, 0.025));
  border: 1px solid rgba(227, 183, 93, 0.16);
}

.adventure-menu a {
  position: relative;
  padding: 0 15px;
  height: 42px;
  border-radius: 10px;
  color: rgba(255, 247, 230, 0.78) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.adventure-menu a:hover,
.adventure-menu a.active {
  color: var(--kk-ink) !important;
  background:
    linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  box-shadow: 0 12px 28px rgba(201, 150, 50, 0.22);
}

.adventure-phone {
  height: 52px;
  border-radius: 12px;
  padding: 0 18px 0 12px;
  color: var(--kk-ink) !important;
  background:
    linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  box-shadow:
    0 14px 34px rgba(201, 150, 50, 0.22),
    inset 0 1px 0 rgba(255, 247, 230, 0.34);
}

.adventure-phone .phone-icon {
  background: rgba(43, 29, 15, 0.14);
}

.adventure-phone svg {
  stroke: var(--kk-ink);
}

/* HERO */

.adventure-hero {
  min-height: 100vh;
  padding-top: 170px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(81, 109, 56, 0.5), transparent 32%),
    radial-gradient(circle at 22% 74%, rgba(201, 150, 50, 0.13), transparent 28%),
    linear-gradient(135deg, #10180f, #1a2816 54%, #0e150d);
}

.hero-bg {
  display: none !important;
}

.hero-map-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(241, 223, 183, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 223, 183, 0.09) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
}

.hero-jungle-left,
.hero-jungle-right {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: 420px;
  height: 620px;
  opacity: 0.44;
  filter: blur(0.2px);
}

.hero-jungle-left {
  left: -140px;
  bottom: -120px;
  background:
    radial-gradient(ellipse at 40% 25%, rgba(81, 109, 56, 0.85), transparent 34%),
    radial-gradient(ellipse at 60% 55%, rgba(35, 63, 31, 0.85), transparent 38%);
  clip-path: polygon(0 10%, 78% 0, 54% 28%, 100% 28%, 58% 48%, 96% 70%, 48% 66%, 68% 100%, 20% 76%, 0 100%);
}

.hero-jungle-right {
  right: -120px;
  top: 100px;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(81, 109, 56, 0.78), transparent 35%),
    radial-gradient(ellipse at 45% 62%, rgba(35, 63, 31, 0.82), transparent 40%);
  clip-path: polygon(20% 0, 88% 6%, 62% 26%, 100% 38%, 62% 48%, 92% 72%, 52% 68%, 60% 100%, 30% 72%, 0 86%, 22% 50%, 0 24%);
}

.adventure-hero-inner {
  position: relative;
  z-index: 3;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
}

.adventure-hero .hero-lead {
  max-width: 640px;
  font-size: 19px;
  color: rgba(255, 247, 230, 0.82);
}

.adventure-tags span {
  color: var(--kk-parchment);
  background:
    linear-gradient(135deg, rgba(241, 223, 183, 0.13), rgba(241, 223, 183, 0.045));
  border: 1px solid rgba(227, 183, 93, 0.25);
  border-radius: 12px;
}

/* HERO IMAGE / COMPASS */

.hero-photo-wrap,
.hero-photo-stage {
  display: none !important;
}

.adventure-hero-card {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.adventure-hero-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(560px, 94%);
  height: 530px;
  transform: translateX(-50%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 34%, rgba(227, 183, 93, 0.15), transparent 37%),
    linear-gradient(145deg, rgba(241, 223, 183, 0.13), rgba(29, 43, 24, 0.66)),
    linear-gradient(90deg, rgba(241, 223, 183, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(241, 223, 183, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  border: 1px solid rgba(227, 183, 93, 0.32);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 247, 230, 0.08);
  z-index: 1;
}

.compass-ring {
  position: absolute;
  left: 50%;
  bottom: 118px;
  width: 500px;
  height: 500px;
  max-width: 88%;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 2px solid rgba(227, 183, 93, 0.25);
  box-shadow:
    inset 0 0 0 18px rgba(227, 183, 93, 0.045),
    inset 0 0 0 38px rgba(241, 223, 183, 0.025);
  z-index: 2;
  opacity: 0.72;
}

.compass-ring::before,
.compass-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(227, 183, 93, 0.18);
  transform: translate(-50%, -50%);
}

.compass-ring::before {
  width: 2px;
  height: 88%;
}

.compass-ring::after {
  width: 88%;
  height: 2px;
}

.compass-needle {
  position: absolute;
  left: 50%;
  bottom: 335px;
  width: 24px;
  height: 210px;
  transform: translateX(-50%) rotate(28deg);
  transform-origin: bottom center;
  background:
    linear-gradient(to bottom, var(--kk-gold-2), var(--kk-brass));
  clip-path: polygon(50% 0, 100% 82%, 50% 100%, 0 82%);
  z-index: 2;
  opacity: 0.42;
}

.adventure-hero-card .hero-photo {
  position: relative;
  z-index: 4;
  width: auto;
  max-width: 94%;
  height: 665px;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 34px 52px rgba(0, 0, 0, 0.54))
    sepia(0.08);
}

.map-note {
  position: absolute;
  left: 20px;
  bottom: 90px;
  z-index: 5;
  padding: 16px 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(241, 223, 183, 0.94), rgba(215, 189, 130, 0.88));
  color: var(--kk-ink);
  border: 1px solid rgba(43, 29, 15, 0.24);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.map-note strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
}

.map-note span {
  font-size: 13px;
}

/* BUTTONS */

.kompas-theme .btn {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.kompas-theme .btn-primary {
  color: var(--kk-ink);
  background:
    linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  box-shadow:
    0 18px 44px rgba(201, 150, 50, 0.27),
    inset 0 1px 0 rgba(255, 247, 230, 0.42);
}

.kompas-theme .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(201, 150, 50, 0.38),
    inset 0 1px 0 rgba(255, 247, 230, 0.52);
}

.kompas-theme .btn-secondary {
  color: var(--kk-parchment);
  background:
    linear-gradient(135deg, rgba(241, 223, 183, 0.12), rgba(241, 223, 183, 0.035));
  border: 1px solid rgba(227, 183, 93, 0.27);
  box-shadow: inset 0 1px 0 rgba(255, 247, 230, 0.08);
}

/* SECTIONS */

.adventure-section,
.adventure-process,
.adventure-faq {
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 150, 50, 0.1), transparent 30%),
    linear-gradient(180deg, #152012, #0f170e);
}

.adventure-services,
.adventure-reviews,
.adventure-contact {
  background:
    radial-gradient(circle at 84% 12%, rgba(81, 109, 56, 0.22), transparent 30%),
    linear-gradient(180deg, #0f170e, #182414);
}

.kompas-theme .section-head {
  max-width: 820px;
}

.kompas-theme .section-head p:last-child {
  color: rgba(255, 247, 230, 0.74);
}

/* ABOUT */

.adventure-photo-frame {
  position: relative;
  border-radius: 24px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(227, 183, 93, 0.38), rgba(241, 223, 183, 0.08));
  border: 1px solid rgba(227, 183, 93, 0.35);
  box-shadow: var(--kk-shadow);
}

.adventure-photo-frame img {
  border-radius: 18px;
  filter: sepia(0.12) contrast(1.04);
}

.adventure-points div,
.about-points div {
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(241, 223, 183, 0.11), rgba(241, 223, 183, 0.035));
  border: 1px solid rgba(227, 183, 93, 0.24);
}

.adventure-points span,
.about-points span {
  color: var(--kk-gold-2);
  font-family: var(--font-heading);
}

/* SERVICES */

.adventure-card,
.kompas-theme .service-card,
.kompas-theme .process-card,
.kompas-theme .premium-review,
.kompas-theme .faq-item,
.kompas-theme .contact-form,
.kompas-theme .complex-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(241, 223, 183, 0.12), rgba(241, 223, 183, 0.035)),
    radial-gradient(circle at 20% 10%, rgba(227, 183, 93, 0.09), transparent 36%);
  border: 1px solid rgba(227, 183, 93, 0.28);
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 247, 230, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.adventure-card::after,
.kompas-theme .process-card::after,
.kompas-theme .premium-review::after,
.kompas-theme .faq-item::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(81, 109, 56, 0.16);
  pointer-events: none;
}

.adventure-card:hover,
.kompas-theme .process-card:hover,
.kompas-theme .premium-review:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(227, 183, 93, 0.54);
  box-shadow:
    0 34px 90px rgba(201, 150, 50, 0.11),
    0 24px 78px rgba(0, 0, 0, 0.28);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--kk-gold-2) !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
}

.adventure-icon,
.service-icon.glass-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 247, 230, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(201, 150, 50, 0.92), rgba(138, 95, 34, 0.88));
  border: 1px solid rgba(255, 247, 230, 0.22);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 247, 230, 0.25);
}

.adventure-icon svg,
.service-icon.glass-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--kk-ink);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kompas-theme .service-card ul {
  list-style: none;
}

.kompas-theme .service-card li {
  color: rgba(255, 247, 230, 0.78);
}

.kompas-theme .service-card li::before {
  content: "✦";
  color: var(--kk-gold-2);
  margin-right: 9px;
}

.kompas-theme .service-card a {
  color: var(--kk-gold-2);
  font-weight: 900;
}

/* PROCESS / FLOW */

.adventure-road {
  position: relative;
}

.adventure-road::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(227, 183, 93, 0.6), transparent);
  z-index: 0;
}

.adventure-road .process-card {
  z-index: 1;
}

.kompas-theme .process-card span {
  color: var(--kk-gold-2);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
}

.adventure-flow div,
.complex-flow div {
  color: var(--kk-ink);
  background:
    linear-gradient(135deg, var(--kk-parchment), var(--kk-parchment-2));
  border: 1px solid rgba(43, 29, 15, 0.18);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.adventure-flow span,
.complex-flow span {
  background: var(--kk-gold-2);
}

/* REVIEWS */

.adventure-rating,
.google-rating-card {
  background:
    linear-gradient(145deg, rgba(241, 223, 183, 0.14), rgba(241, 223, 183, 0.04));
  border: 1px solid rgba(227, 183, 93, 0.28);
}

.google-mark {
  color: var(--kk-ink);
  background:
    linear-gradient(135deg, var(--kk-parchment), var(--kk-parchment-2));
}

.rating-stars,
.stars {
  color: var(--kk-gold-2);
  text-shadow: 0 0 16px rgba(227, 183, 93, 0.24);
}

.review-avatar {
  color: var(--kk-ink);
  background:
    linear-gradient(145deg, var(--kk-gold-2), var(--kk-gold));
}

.reviews-arrow {
  border-color: rgba(227, 183, 93, 0.28);
  background:
    linear-gradient(145deg, rgba(241, 223, 183, 0.12), rgba(241, 223, 183, 0.04));
}

.reviews-arrow:hover {
  border-color: rgba(227, 183, 93, 0.62);
  background:
    linear-gradient(145deg, rgba(227, 183, 93, 0.24), rgba(241, 223, 183, 0.06));
}

/* FAQ / CONTACT */

.kompas-theme .faq-item button {
  color: var(--kk-white);
  font-weight: 900;
}

.kompas-theme .faq-item.active {
  border-color: rgba(227, 183, 93, 0.58);
}

.kompas-theme .contact-data a {
  color: var(--kk-gold-2);
  font-family: var(--font-heading) !important;
}

.kompas-theme .contact-form input,
.kompas-theme .contact-form textarea,
.kompas-theme .contact-form select {
  color: var(--kk-white);
  background: rgba(16, 22, 15, 0.42);
  border: 1px solid rgba(227, 183, 93, 0.26);
  border-radius: 12px;
}

.kompas-theme .contact-form input:focus,
.kompas-theme .contact-form textarea:focus,
.kompas-theme .contact-form select:focus {
  border-color: var(--kk-gold-2);
  box-shadow: 0 0 0 3px rgba(227, 183, 93, 0.12);
}

.kompas-theme .contact-form option {
  color: #111;
}

/* FOOTER */

.adventure-footer {
  background: #0a1009;
  border-top: 1px solid rgba(227, 183, 93, 0.24);
}

/* MOBILE */

@media (max-width: 1120px) {
  .adventure-logo img {
    height: 48px;
    max-width: 250px;
  }

  .adventure-menu a {
    padding: 0 10px;
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  .adventure-nav {
    height: 74px;
  }

  .adventure-menu.active {
    display: grid;
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(29, 43, 24, 0.98), rgba(15, 23, 13, 0.96));
    border: 1px solid rgba(227, 183, 93, 0.28);
  }

  .adventure-menu.active a {
    justify-content: flex-start;
    height: 48px;
    padding: 0 18px;
  }

  .adventure-hero-inner {
    grid-template-columns: 1fr;
  }

  .adventure-hero-card {
    min-height: 570px;
  }

  .adventure-hero-card::before {
    height: 460px;
  }

  .adventure-hero-card .hero-photo {
    height: 570px;
  }

  .adventure-road::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .adventure-header {
    top: 10px;
  }

  .adventure-nav {
    height: 68px;
    border-radius: 16px;
  }

  .adventure-logo img {
    height: 40px;
    max-width: 200px;
  }

  .adventure-hero {
    padding-top: 128px;
  }

  .kompas-theme h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .adventure-hero-card {
    min-height: 455px;
  }

  .adventure-hero-card::before {
    height: 360px;
    border-radius: 22px;
  }

  .adventure-hero-card .hero-photo {
    height: 455px;
  }

  .compass-ring,
  .compass-needle,
  .map-note {
    display: none;
  }

  .hero-jungle-left,
  .hero-jungle-right {
    opacity: 0.22;
  }
}

/* =========================================================
   KOMPAS KREDYTOWY — FINAL ADVENTURE THEME
========================================================= */

:root {
  --kk-bg: #061611;
  --kk-bg-2: #0b2118;
  --kk-green: #123524;
  --kk-green-2: #17482f;
  --kk-leaf: #54713b;
  --kk-gold: #d8a84a;
  --kk-gold-2: #f0cf7a;
  --kk-paper: #ead7a6;
  --kk-paper-dark: #b9924f;
  --kk-ink: #1f170e;
  --kk-white: #fff8e7;
  --kk-muted: rgba(255, 248, 231, 0.72);
  --kk-border: rgba(240, 207, 122, 0.28);
  --kk-radius: 28px;
  --kk-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);

  --kk-heading: "Cormorant Garamond", Georgia, serif;
  --kk-body: "Lato", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.kk-body {
  margin: 0;
  font-family: var(--kk-body);
  background: var(--kk-bg);
  color: var(--kk-white);
  overflow-x: hidden;
}

body.kk-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 168, 74, 0.12), transparent 28%),
    radial-gradient(circle at 78% 14%, rgba(84, 113, 59, 0.24), transparent 32%),
    linear-gradient(180deg, #061611, #0b2118 42%, #05110d);
}

body.kk-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("../img/parchment-texture.jpg");
  background-size: 800px 800px;
  mix-blend-mode: screen;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section,
.kk-section {
  position: relative;
  padding: 110px 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--kk-heading);
  line-height: 0.98;
  margin: 0;
  color: var(--kk-white);
}

h1 {
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 span {
  display: block;
  color: var(--kk-gold-2);
}

h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 30px;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--kk-muted);
  line-height: 1.75;
}

.kk-eyebrow {
  margin-bottom: 16px;
  font-family: var(--kk-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kk-gold-2);
}

.kk-section-head {
  width: min(760px, 100%);
  margin-bottom: 48px;
  text-align: center;
  margin-inline: auto;
}

.kk-section-head p:last-child {
  margin-top: 18px;
}

/* HEADER */

.kk-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.kk-nav {
  height: 78px;
  padding: 0 18px 0 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(5, 20, 14, 0.72);
  border: 1px solid rgba(240, 207, 122, 0.22);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.kk-logo {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.kk-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.kk-menu {
  height: 48px;
  padding: 5px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 248, 231, 0.08);
  border: 1px solid rgba(240, 207, 122, 0.14);
}

.kk-menu a {
  height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 248, 231, 0.72);
  transition: 0.25s ease;
}

.kk-menu a:hover,
.kk-menu a.active {
  color: var(--kk-ink);
  background: linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
}

.kk-phone {
  height: 48px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--kk-ink);
  background: linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(216, 168, 74, 0.22);
}

.kk-phone svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--kk-ink);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

/* HERO */

.kk-hero {
  min-height: 100svh;
  padding: 160px 0 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4, 16, 11, 0.92), rgba(6, 22, 17, 0.72) 44%, rgba(6, 22, 17, 0.28)),
    url("../img/hero-bg.jpg") center / cover no-repeat;
}

.kk-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 207, 122, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 60%, var(--kk-bg));
  pointer-events: none;
}

.kk-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.78;
}

.kk-leaf-left {
  left: -180px;
  bottom: -220px;
  width: 580px;
}

.kk-leaf-right {
  right: -160px;
  top: -120px;
  width: 560px;
}

.kk-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 60px;
}

.kk-lead {
  max-width: 610px;
  margin-top: 24px;
  font-size: 18px;
}

.kk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.kk-btn {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.28s ease;
}

.kk-btn-primary {
  color: var(--kk-ink);
  background: linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  box-shadow: 0 18px 44px rgba(216, 168, 74, 0.26);
}

.kk-btn-primary:hover,
.kk-btn-ghost:hover {
  transform: translateY(-3px);
}

.kk-btn-ghost {
  color: var(--kk-white);
  border: 1px solid rgba(240, 207, 122, 0.28);
  background: rgba(255, 248, 231, 0.08);
  backdrop-filter: blur(12px);
}

.kk-hero-badges {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kk-hero-badges span {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 248, 231, 0.82);
  background: rgba(255, 248, 231, 0.08);
  border: 1px solid rgba(240, 207, 122, 0.18);
  font-size: 13px;
}

.kk-hero-visual {
  display: flex;
  justify-content: center;
}

.kk-adam-card {
  position: relative;
  width: min(520px, 100%);
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.kk-adam-card::before {
  content: "";
  position: absolute;
  inset: 110px 20px 30px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.16), rgba(10, 42, 26, 0.72));
  border: 1px solid rgba(240, 207, 122, 0.24);
  box-shadow: var(--kk-shadow);
  backdrop-filter: blur(8px);
}

.kk-compass-bg {
  position: absolute;
  z-index: 1;
  top: 80px;
  width: 440px;
  opacity: 0.23;
  filter: sepia(1);
}

.kk-adam {
  position: relative;
  z-index: 4;
  width: auto;
  height: 620px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.55));
}

.kk-map-label {
  position: absolute;
  left: 10px;
  bottom: 82px;
  z-index: 5;
  width: 210px;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--kk-ink);
  background: linear-gradient(135deg, var(--kk-paper), var(--kk-paper-dark));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.kk-map-label strong {
  display: block;
  font-family: var(--kk-heading);
  font-size: 22px;
  line-height: 1;
}

.kk-map-label span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

/* ABOUT */

.kk-about {
  background: linear-gradient(180deg, #071812, #0b2118);
}

.kk-about-grid,
.kk-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: center;
}

.kk-photo-card {
  border-radius: var(--kk-radius);
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(135deg, rgba(240, 207, 122, 0.44), rgba(255, 248, 231, 0.07));
  box-shadow: var(--kk-shadow);
}

.kk-photo-card img {
  height: 570px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.kk-content p {
  margin-top: 20px;
}

.kk-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.kk-points div {
  padding: 18px;
  border-radius: 20px;
  display: flex;
  gap: 16px;
  background: rgba(255, 248, 231, 0.075);
  border: 1px solid rgba(240, 207, 122, 0.18);
}

.kk-points span {
  color: var(--kk-gold-2);
  font-weight: 900;
}

/* SERVICES */

.kk-services {
  background:
    radial-gradient(circle at 85% 15%, rgba(84, 113, 59, 0.22), transparent 30%),
    #061611;
}

.kk-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.kk-service-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 248, 231, 0.075);
  border: 1px solid rgba(240, 207, 122, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transition: 0.3s ease;
}

.kk-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 207, 122, 0.38);
}

.kk-service-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #173a28, #0b2118);
}

.kk-service-content {
  padding: 28px;
}

.kk-card-kicker {
  margin-bottom: 8px;
  color: var(--kk-gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-service-content h3 {
  margin-bottom: 14px;
}

.kk-service-content ul {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.kk-service-content li {
  color: var(--kk-muted);
}

.kk-service-content li::before {
  content: "✦";
  margin-right: 8px;
  color: var(--kk-gold-2);
}

.kk-service-content a {
  color: var(--kk-gold-2);
  font-weight: 900;
}

/* PROCESS */

.kk-process {
  background:
    linear-gradient(rgba(6, 22, 17, 0.82), rgba(6, 22, 17, 0.92)),
    url("../img/map-strip.jpg") center / cover no-repeat;
}

.kk-road {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kk-road-card,
.kk-expedition-box,
.kk-review-card,
.kk-faq-list .faq-item,
.kk-form {
  border-radius: 28px;
  background: rgba(255, 248, 231, 0.08);
  border: 1px solid rgba(240, 207, 122, 0.2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.kk-road-card {
  padding: 28px;
}

.kk-road-card span {
  color: var(--kk-gold-2);
  font-weight: 900;
}

.kk-road-card h3 {
  margin: 18px 0 12px;
  font-size: 27px;
}

/* EXPEDITION */

.kk-expedition {
  background: #0b2118;
}

.kk-expedition-box {
  padding: 56px;
  text-align: center;
}

.kk-flow {
  margin: 38px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kk-flow div {
  padding: 15px 20px;
  border-radius: 999px;
  color: var(--kk-ink);
  background: linear-gradient(135deg, var(--kk-paper), var(--kk-paper-dark));
  font-weight: 900;
}

.kk-flow span {
  width: 34px;
  height: 2px;
  background: var(--kk-gold-2);
}

/* REVIEWS */

.kk-reviews {
  background: #061611;
}

.kk-review-slider {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 18px;
  align-items: center;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 30px;
}

.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.42s ease;
}

.kk-review-card {
  min-width: calc((100% - 44px) / 3);
  padding: 28px;
}

.kk-review-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.kk-review-head div {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--kk-ink);
  background: linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  font-weight: 900;
}

.kk-stars {
  color: var(--kk-gold-2);
  letter-spacing: 2px;
}

.kk-review-card p {
  margin-top: 14px;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(240, 207, 122, 0.22);
  color: var(--kk-white);
  background: rgba(255, 248, 231, 0.08);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.kk-center {
  margin-top: 36px;
  text-align: center;
}

/* FAQ */

.kk-faq {
  background: #0b2118;
}

.kk-faq-list {
  max-width: 850px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.kk-faq-list .faq-item {
  overflow: hidden;
}

.kk-faq-list button {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--kk-white);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.kk-faq-list .faq-item p {
  display: none;
  padding: 0 24px 22px;
}

.kk-faq-list .faq-item.active p {
  display: block;
}

/* CONTACT */

.kk-contact {
  background:
    linear-gradient(rgba(6, 22, 17, 0.88), rgba(6, 22, 17, 0.96)),
    url("../img/hero-bg.jpg") center / cover no-repeat;
}

.kk-contact-data {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.kk-contact-data a {
  color: var(--kk-gold-2);
  font-family: var(--kk-heading);
  font-size: 30px;
  font-weight: 700;
}

.kk-form {
  display: grid;
  gap: 14px;
  padding: 30px;
}

.kk-form input,
.kk-form textarea,
.kk-form select {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(240, 207, 122, 0.2);
  color: var(--kk-white);
  background: rgba(6, 22, 17, 0.62);
  outline: none;
}

.kk-form input:focus,
.kk-form textarea:focus,
.kk-form select:focus {
  border-color: var(--kk-gold-2);
}

.kk-form option {
  color: #111;
}

.checkbox {
  display: flex;
  gap: 10px;
  color: var(--kk-muted);
  font-size: 14px;
}

/* FOOTER */

.kk-footer {
  padding: 28px 0;
  background: #030b08;
  border-top: 1px solid rgba(240, 207, 122, 0.18);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .kk-logo {
    min-width: 160px;
  }

  .kk-logo img {
    height: 50px;
  }

  .kk-menu a {
    padding: 0 10px;
    font-size: 12px;
  }

  .kk-phone {
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  .kk-menu,
  .kk-phone {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(240, 207, 122, 0.22);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 248, 231, 0.08);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--kk-white);
  }

  .menu-toggle span + span {
    margin-top: -14px;
  }

  .kk-menu.active {
    display: grid;
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    height: auto;
    padding: 18px;
    border-radius: 24px;
    background: rgba(5, 20, 14, 0.96);
    border: 1px solid rgba(240, 207, 122, 0.22);
    backdrop-filter: blur(18px);
  }

  .kk-menu.active a {
    height: 48px;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .kk-hero {
    padding: 135px 0 70px;
  }

  .kk-hero-grid,
  .kk-about-grid,
  .kk-contact-grid {
    grid-template-columns: 1fr;
  }

  .kk-hero-content {
    text-align: center;
  }

  .kk-lead {
    margin-inline: auto;
  }

  .kk-actions,
  .kk-hero-badges {
    justify-content: center;
  }

  .kk-adam-card {
    min-height: 520px;
  }

  .kk-adam {
    height: 520px;
  }

  .kk-services-grid,
  .kk-road {
    grid-template-columns: 1fr 1fr;
  }

  .kk-review-slider {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .reviews-track {
    transform: none !important;
  }

  .kk-review-card {
    min-width: 78%;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .kk-section,
  .section {
    padding: 76px 0;
  }

  .kk-header {
    top: 10px;
  }

  .kk-nav {
    height: 66px;
    padding: 0 12px 0 16px;
  }

  .kk-logo img {
    height: 42px;
  }

  h1 {
    font-size: clamp(38px, 12.4vw, 54px);
    letter-spacing: -0.025em;
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .kk-lead {
    font-size: 16px;
  }

  .kk-actions {
    flex-direction: column;
  }

  .kk-btn {
    width: 100%;
  }

  .kk-hero-badges span {
    font-size: 12px;
  }

  .kk-leaf {
    opacity: 0.34;
  }

  .kk-adam-card {
    min-height: 420px;
  }

  .kk-adam-card::before {
    inset: 90px 8px 20px;
    border-radius: 28px;
  }

  .kk-compass-bg {
    width: 310px;
    top: 85px;
  }

  .kk-adam {
    height: 430px;
  }

  .kk-map-label {
    display: none;
  }

  .kk-photo-card img {
    height: 380px;
  }

  .kk-services-grid,
  .kk-road {
    grid-template-columns: 1fr;
  }

  .kk-service-card > img {
    height: 190px;
  }

  .kk-expedition-box {
    padding: 32px 20px;
  }

  .kk-flow {
    flex-direction: column;
  }

  .kk-flow span {
    width: 2px;
    height: 22px;
  }

  .kk-review-card {
    min-width: 88%;
  }

  .kk-contact-data a {
    font-size: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* =========================================================
   KOMPAS KREDYTOWY — UI UPGRADE / LOGO / MENU / FONTS / MODULES
========================================================= */

:root {
  --kk-heading: "Marcellus", Georgia, serif;
  --kk-body: "Inter", Arial, sans-serif;

  --kk-bg: #061611;
  --kk-bg-2: #0b2118;
  --kk-green: #0d2a1c;
  --kk-green-2: #143b29;
  --kk-green-3: #1e5637;
  --kk-gold: #d8a84a;
  --kk-gold-2: #f1cf78;
  --kk-paper: #ead7a6;
  --kk-ink: #1d160c;
  --kk-white: #fff8e7;
  --kk-muted: rgba(255, 248, 231, 0.76);
  --kk-border: rgba(241, 207, 120, 0.24);
  --kk-glass: rgba(255, 248, 231, 0.075);
}

body.kk-body {
  font-family: var(--kk-body) !important;
}

body.kk-body h1,
body.kk-body h2,
body.kk-body h3 {
  font-family: var(--kk-heading) !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

body.kk-body p,
body.kk-body li,
body.kk-body a,
body.kk-body input,
body.kk-body textarea,
body.kk-body select,
body.kk-body button {
  font-family: var(--kk-body) !important;
}

body.kk-body h1 {
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 0.98 !important;
}

body.kk-body h2 {
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.02 !important;
}

body.kk-body h3 {
  font-size: clamp(25px, 2vw, 32px) !important;
  line-height: 1.05 !important;
}

.kk-eyebrow {
  font-family: var(--kk-body) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.24em !important;
}

/* HEADER */

.kk-header {
  top: 14px !important;
}

.kk-nav {
  height: 92px !important;
  padding: 0 16px 0 14px !important;
  border-radius: 30px !important;
  background:
    linear-gradient(135deg, rgba(5, 20, 14, 0.86), rgba(11, 33, 24, 0.72)),
    radial-gradient(circle at 12% 50%, rgba(241, 207, 120, 0.16), transparent 24%);
  border: 1px solid rgba(241, 207, 120, 0.24) !important;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 248, 231, 0.08);
}

.kk-logo {
  min-width: 255px !important;
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
}

.kk-logo img {
  width: 74px !important;
  height: 74px !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 18px rgba(216, 168, 74, 0.2));
}

.kk-logo span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.kk-logo strong {
  font-family: var(--kk-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--kk-white);
  letter-spacing: -0.03em;
}

.kk-logo small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kk-gold-2);
}

/* MENU — bardziej charakterystyczne */

.kk-menu {
  height: 56px !important;
  padding: 6px !important;
  gap: 4px !important;
  border-radius: 20px !important;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.11), rgba(255, 248, 231, 0.035));
  border: 1px solid rgba(241, 207, 120, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 248, 231, 0.08);
}

.kk-menu a {
  position: relative;
  height: 44px !important;
  padding: 0 14px !important;
  border-radius: 15px !important;
  color: rgba(255, 248, 231, 0.76) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  overflow: hidden;
}

.kk-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(241, 207, 120, 0.95), rgba(216, 168, 74, 0.95));
  opacity: 0;
  transition: 0.25s ease;
}

.kk-menu a::after {
  content: "✦";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  color: var(--kk-ink);
  font-size: 12px;
  opacity: 0;
  transition: 0.25s ease;
}

.kk-menu a:hover,
.kk-menu a.active {
  color: var(--kk-ink) !important;
  transform: translateY(-1px);
}

.kk-menu a:hover::before,
.kk-menu a.active::before {
  opacity: 1;
}

.kk-menu a:hover::after,
.kk-menu a.active::after {
  bottom: 4px;
  opacity: 0.75;
}

.kk-menu a {
  isolation: isolate;
}

.kk-menu a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.kk-menu a span,
.kk-menu a {
  z-index: 1;
}

.kk-menu a {
  line-height: 1;
}

.kk-menu a:not(:has(span)) {
  z-index: 1;
}

/* telefon */

.kk-phone {
  height: 56px !important;
  border-radius: 18px !important;
  padding: 0 18px 0 12px !important;
  font-size: 14px !important;
  background:
    linear-gradient(135deg, #f6d986, #d8a84a) !important;
  box-shadow:
    0 16px 42px rgba(216, 168, 74, 0.25),
    inset 0 1px 0 rgba(255, 248, 231, 0.45) !important;
}

.kk-phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(29, 22, 12, 0.12);
}

.kk-phone svg {
  width: 16px !important;
  height: 16px !important;
}

/* HERO BAJERY */

.kk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(241, 207, 120, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(6, 22, 17, 0.95), rgba(6, 22, 17, 0.58) 48%, rgba(6, 22, 17, 0.18));
}

.kk-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  width: 760px;
  height: 760px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: url("../img/compass-watermark.png") center / contain no-repeat;
  opacity: 0.075;
  pointer-events: none;
  animation: kkSlowSpin 80s linear infinite;
}

.kk-adam-card {
  animation: kkFloat 6s ease-in-out infinite;
}

.kk-adam-card::before {
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.12), rgba(11, 33, 24, 0.78)),
    radial-gradient(circle at 50% 18%, rgba(241, 207, 120, 0.18), transparent 38%) !important;
}

/* karty usług */

.kk-service-card {
  position: relative;
}

.kk-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 22, 17, 0.34) 100%);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.kk-service-card:hover::before {
  opacity: 1;
}

.kk-service-image {
  position: relative;
  overflow: hidden;
}

.kk-service-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: linear-gradient(135deg, #143b29, #061611);
  transition: 0.6s ease;
}

.kk-service-card:hover .kk-service-image img {
  transform: scale(1.08);
}

.kk-service-icon {
  position: absolute;
  left: 22px;
  bottom: -34px;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 248, 231, 0.28), transparent 42%),
    linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  border: 1px solid rgba(255, 248, 231, 0.24);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 248, 231, 0.42);
}

.kk-service-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--kk-ink);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kk-service-content {
  padding-top: 48px !important;
}

/* WHY */

.kk-why {
  background:
    radial-gradient(circle at 18% 22%, rgba(241, 207, 120, 0.11), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(84, 113, 59, 0.18), transparent 30%),
    #071812;
}

.kk-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kk-why-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 248, 231, 0.095), rgba(255, 248, 231, 0.035));
  border: 1px solid rgba(241, 207, 120, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: 0.32s ease;
}

.kk-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 207, 120, 0.42);
}

.kk-why-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(241, 207, 120, 0.2), rgba(255, 248, 231, 0.06));
  border: 1px solid rgba(241, 207, 120, 0.22);
}

.kk-why-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--kk-gold-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kk-why-card h3 {
  margin-bottom: 12px;
}

/* PORÓWNYWARKA */

.kk-comparator {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 22, 17, 0.92), rgba(6, 22, 17, 0.68)),
    url("../img/compare-bg.jpg") center / cover no-repeat;
}

.kk-comparator::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -160px;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: rgba(241, 207, 120, 0.12);
  filter: blur(70px);
}

.kk-comparator-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.kk-comparator-content h2 {
  max-width: 680px;
}

.kk-comparator-content > p {
  margin-top: 22px;
  max-width: 660px;
}

.kk-comparator-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
}

.kk-comparator-list div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kk-comparator-list span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--kk-gold-2), var(--kk-gold));
  flex: 0 0 auto;
}

.kk-comparator-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--kk-ink);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kk-comparator-card {
  position: relative;
  min-height: 470px;
  border-radius: 36px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 248, 231, 0.13), rgba(255, 248, 231, 0.045));
  border: 1px solid rgba(241, 207, 120, 0.28);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.kk-comparator-card > img {
  position: absolute;
  right: -120px;
  top: -110px;
  width: 520px;
  opacity: 0.16;
  animation: kkSlowSpin 90s linear infinite reverse;
}

.kk-comparator-panel {
  position: relative;
  z-index: 2;
  max-width: 330px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--kk-paper), #c79d54);
  color: var(--kk-ink);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.kk-comparator-panel span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.kk-comparator-panel strong {
  display: block;
  font-family: var(--kk-heading);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.kk-comparator-panel p {
  margin-top: 12px;
  color: rgba(29, 22, 12, 0.76);
}

.kk-mini-stats {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kk-mini-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(6, 22, 17, 0.58);
  border: 1px solid rgba(241, 207, 120, 0.18);
  backdrop-filter: blur(10px);
}

.kk-mini-stats strong {
  display: block;
  color: var(--kk-gold-2);
  font-size: 15px;
}

.kk-mini-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 248, 231, 0.66);
  font-size: 12px;
}

/* animacje */

@keyframes kkFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes kkSlowSpin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.kk-service-card,
.kk-why-card,
.kk-road-card,
.kk-review-card,
.kk-comparator-card {
  will-change: transform;
}

/* MOBILE FIX */

@media (max-width: 1180px) {
  .kk-logo {
    min-width: 215px !important;
  }

  .kk-logo img {
    width: 62px !important;
    height: 62px !important;
  }

  .kk-logo strong {
    font-size: 24px;
  }

  .kk-menu a {
    padding: 0 10px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 980px) {
  .kk-nav {
    height: 78px !important;
    border-radius: 24px !important;
  }

  .kk-logo {
    min-width: auto !important;
  }

  .kk-logo img {
    width: 56px !important;
    height: 56px !important;
  }

  .kk-logo strong {
    font-size: 22px;
  }

  .kk-logo small {
    font-size: 9px;
  }

  .kk-menu {
    display: none !important;
  }

  .kk-menu.active {
    display: grid !important;
    position: absolute;
    top: 90px;
    left: 20px;
    right: 20px;
    height: auto !important;
    padding: 16px !important;
    border-radius: 24px !important;
    background: rgba(5, 20, 14, 0.98);
    border: 1px solid rgba(241, 207, 120, 0.24);
    backdrop-filter: blur(18px);
  }

  .kk-menu.active a {
    width: 100%;
    justify-content: flex-start !important;
    height: 48px !important;
    padding: 0 18px !important;
  }

  .kk-phone {
    display: none !important;
  }

  .kk-why-grid,
  .kk-comparator-grid {
    grid-template-columns: 1fr;
  }

  .kk-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kk-comparator-card {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  body.kk-body h1 {
    font-size: clamp(38px, 11vw, 52px) !important;
  }

  body.kk-body h2 {
    font-size: clamp(31px, 9vw, 42px) !important;
  }

  .kk-nav {
    height: 70px !important;
    padding-left: 12px !important;
  }

  .kk-logo img {
    width: 50px !important;
    height: 50px !important;
  }

  .kk-logo strong {
    font-size: 19px;
  }

  .kk-logo small {
    display: none;
  }

  .kk-why-grid {
    grid-template-columns: 1fr;
  }

  .kk-comparator-card {
    min-height: 500px;
    padding: 22px;
  }

  .kk-mini-stats {
    grid-template-columns: 1fr;
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .kk-comparator-panel {
    max-width: 100%;
    transform: rotate(0);
  }

  .kk-comparator-panel strong {
    font-size: 28px;
  }
}

.kk-hero-overlay {
  background:
    radial-gradient(circle at var(--mouse-x, 40%) var(--mouse-y, 35%), rgba(241, 207, 120, 0.18), transparent 24%),
    linear-gradient(180deg, transparent 58%, var(--kk-bg));
}
/* =========================================================
   KOMPAS KREDYTOWY — FONT / MENU / LOGO / CONTACT FIX
   Wklej na sam koniec style.css
========================================================= */

:root {
  --kk-heading: "Marcellus", Georgia, serif;
  --kk-body: "Noto Serif", Georgia, serif;
  --kk-ui: "Noto Sans", Arial, sans-serif;

  --kk-deep: #061611;
  --kk-deep-2: #0b2118;
  --kk-dark-green: #123524;
  --kk-dark-green-2: #17452f;
  --kk-gold: #d8a84a;
  --kk-gold-soft: #f1cf78;
  --kk-cream: #fff8e7;
  --kk-muted-soft: rgba(255, 248, 231, 0.72);
}

/* TYPOGRAFIA */

body.kk-body {
  font-family: var(--kk-body) !important;
}

body.kk-body h1,
body.kk-body h2,
body.kk-body h3 {
  font-family: var(--kk-heading) !important;
  font-weight: 400 !important;
  letter-spacing: -0.018em !important;
}

body.kk-body h1 {
  font-size: clamp(42px, 4.8vw, 68px) !important;
  line-height: 1.02 !important;
}

body.kk-body h2 {
  font-size: clamp(34px, 3.8vw, 54px) !important;
  line-height: 1.04 !important;
}

body.kk-body h3 {
  font-size: clamp(25px, 2vw, 31px) !important;
  line-height: 1.08 !important;
}

body.kk-body p,
body.kk-body li {
  font-family: var(--kk-body) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: rgba(255, 248, 231, 0.74) !important;
}

.kk-eyebrow,
.kk-btn,
.kk-menu a,
.kk-form input,
.kk-form textarea,
.kk-form select,
.kk-form button,
.faq-item button {
  font-family: var(--kk-ui) !important;
}

/* LOGO — większe i czytelniejsze */

.kk-nav {
  height: 96px !important;
  padding: 0 16px 0 18px !important;
  border-radius: 32px !important;
}

.kk-logo {
  min-width: 285px !important;
  gap: 15px !important;
}

.kk-logo img {
  width: 86px !important;
  height: 86px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(216, 168, 74, 0.26)) !important;
}

.kk-logo strong {
  font-family: var(--kk-heading) !important;
  font-size: 31px !important;
  font-weight: 400 !important;
  line-height: 0.95 !important;
  color: var(--kk-cream) !important;
}

.kk-logo small {
  font-family: var(--kk-ui) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.32em !important;
  color: var(--kk-gold-soft) !important;
}

/* MENU — nowy wygląd, bez niewidocznego tekstu */

.kk-menu {
  height: 58px !important;
  padding: 6px !important;
  gap: 5px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.09), rgba(255, 248, 231, 0.025)) !important;
  border: 1px solid rgba(241, 207, 120, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 231, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.18) !important;
}

.kk-menu a {
  position: relative !important;
  height: 46px !important;
  padding: 0 15px !important;
  border-radius: 17px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255, 248, 231, 0.78) !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  text-shadow: none !important;
  overflow: visible !important;
  isolation: auto !important;
  z-index: 2 !important;
}

.kk-menu a::before,
.kk-menu a::after {
  display: none !important;
  content: none !important;
}

.kk-menu a:hover {
  color: var(--kk-gold-soft) !important;
  background: rgba(18, 53, 36, 0.78) !important;
  box-shadow:
    inset 0 0 0 1px rgba(241, 207, 120, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.22) !important;
  transform: translateY(-1px) !important;
}

.kk-menu a.active {
  color: var(--kk-gold-soft) !important;
  background:
    linear-gradient(135deg, #123524, #0c281c) !important;
  box-shadow:
    inset 0 0 0 1px rgba(241, 207, 120, 0.28),
    0 12px 30px rgba(0, 0, 0, 0.26) !important;
}

/* TELEFON W HEADERZE — delikatniejszy */

.kk-phone {
  height: 58px !important;
  padding: 0 19px 0 13px !important;
  border-radius: 20px !important;
  gap: 12px !important;
  color: #22180d !important;
  background:
    linear-gradient(135deg, #f3d889, #d8a84a) !important;
  font-family: var(--kk-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  box-shadow:
    0 16px 40px rgba(216, 168, 74, 0.22),
    inset 0 1px 0 rgba(255, 248, 231, 0.45) !important;
}

.kk-phone:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 20px 52px rgba(216, 168, 74, 0.3),
    inset 0 1px 0 rgba(255, 248, 231, 0.55) !important;
}

.kk-phone-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 14px !important;
  background: rgba(34, 24, 13, 0.1) !important;
}

.kk-phone svg {
  width: 16px !important;
  height: 16px !important;
}

/* KONTAKT — lżejszy, bardziej elegancki */

.kk-contact {
  min-height: calc(100svh - 80px);
  display: flex;
  align-items: center;
}

.kk-contact .kk-content h2 {
  font-size: clamp(38px, 4vw, 58px) !important;
  margin-bottom: 18px !important;
}

.kk-contact .kk-content > p {
  max-width: 560px;
  font-size: 17px !important;
  line-height: 1.85 !important;
  color: rgba(255, 248, 231, 0.78) !important;
}

.kk-contact-data {
  margin-top: 32px !important;
  gap: 10px !important;
}

.kk-contact-data a {
  font-family: var(--kk-body) !important;
  font-size: clamp(24px, 2.4vw, 34px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.005em !important;
  color: var(--kk-gold-soft) !important;
  line-height: 1.25 !important;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.kk-contact-data a:hover {
  color: var(--kk-cream) !important;
}

/* FORMULARZ */

.kk-form {
  border-radius: 30px !important;
  padding: 32px !important;
  background:
    linear-gradient(145deg, rgba(255, 248, 231, 0.105), rgba(255, 248, 231, 0.035)) !important;
  border: 1px solid rgba(241, 207, 120, 0.2) !important;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 248, 231, 0.08) !important;
}

.kk-form input,
.kk-form textarea,
.kk-form select {
  min-height: 58px !important;
  border-radius: 18px !important;
  padding: 16px 18px !important;
  font-family: var(--kk-ui) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--kk-cream) !important;
  background: rgba(6, 22, 17, 0.7) !important;
  border: 1px solid rgba(241, 207, 120, 0.2) !important;
  transition: 0.25s ease !important;
}

.kk-form textarea {
  min-height: 130px !important;
}

.kk-form input::placeholder,
.kk-form textarea::placeholder {
  color: rgba(255, 248, 231, 0.43) !important;
}

.kk-form input:focus,
.kk-form textarea:focus,
.kk-form select:focus {
  border-color: rgba(241, 207, 120, 0.58) !important;
  box-shadow: 0 0 0 4px rgba(241, 207, 120, 0.1) !important;
}

.checkbox {
  align-items: center !important;
  gap: 12px !important;
  font-family: var(--kk-ui) !important;
  font-size: 13px !important;
  color: rgba(255, 248, 231, 0.68) !important;
}

.checkbox input {
  width: 18px !important;
  height: 18px !important;
  min-height: auto !important;
  accent-color: var(--kk-gold) !important;
}

.kk-form .kk-btn {
  font-family: var(--kk-ui) !important;
  font-weight: 800 !important;
  letter-spacing: 0.09em !important;
}

/* MOBILE */

@media (max-width: 1180px) {
  .kk-logo {
    min-width: 240px !important;
  }

  .kk-logo img {
    width: 74px !important;
    height: 74px !important;
  }

  .kk-logo strong {
    font-size: 27px !important;
  }

  .kk-menu a {
    padding: 0 11px !important;
    font-size: 11px !important;
  }

  .kk-phone {
    font-size: 14px !important;
  }
}

@media (max-width: 980px) {
  .kk-nav {
    height: 78px !important;
    border-radius: 24px !important;
  }

  .kk-logo {
    min-width: auto !important;
  }

  .kk-logo img {
    width: 62px !important;
    height: 62px !important;
  }

  .kk-logo strong {
    font-size: 24px !important;
  }

  .kk-logo small {
    font-size: 9px !important;
  }

  .kk-menu {
    display: none !important;
  }

  .kk-menu.active {
    display: grid !important;
    position: absolute !important;
    top: 88px !important;
    left: 20px !important;
    right: 20px !important;
    height: auto !important;
    padding: 16px !important;
    gap: 8px !important;
    border-radius: 24px !important;
    background:
      linear-gradient(135deg, rgba(5, 20, 14, 0.98), rgba(11, 33, 24, 0.96)) !important;
    border: 1px solid rgba(241, 207, 120, 0.24) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42) !important;
    backdrop-filter: blur(18px) !important;
  }

  .kk-menu.active a {
    width: 100% !important;
    justify-content: flex-start !important;
    height: 48px !important;
    padding: 0 18px !important;
  }

  .kk-phone {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .kk-nav {
    height: 70px !important;
    padding-left: 12px !important;
  }

  .kk-logo {
    gap: 10px !important;
  }

  .kk-logo img {
    width: 54px !important;
    height: 54px !important;
  }

  .kk-logo strong {
    font-size: 21px !important;
  }

  .kk-logo small {
    display: none !important;
  }

  .kk-contact {
    min-height: auto !important;
  }

  .kk-contact-data a {
    font-size: 23px !important;
  }

  .kk-form {
    padding: 22px !important;
    border-radius: 24px !important;
  }
}
/* =========================================================
   KOMPAS KREDYTOWY — FONT + LOGO WATERMARK + SERVICE ICON FIX
   Wklej na sam koniec style.css
========================================================= */

:root {
  --kk-heading: "Marcellus", Georgia, serif;
  --kk-body: "Noto Serif", Georgia, serif;
  --kk-ui: "Noto Sans", Arial, sans-serif;

  --kk-dark-green: #0b2418;
  --kk-dark-green-2: #123524;
  --kk-dark-green-3: #17452f;
  --kk-gold: #d8a84a;
  --kk-gold-soft: #f1cf78;
  --kk-cream: #fff8e7;
  --kk-muted-soft: rgba(255, 248, 231, 0.74);
}

/* TYPOGRAFIA — nagłówki zostają, druga czcionka = Noto Serif */

body.kk-body {
  font-family: var(--kk-body) !important;
}

body.kk-body h1,
body.kk-body h2,
body.kk-body h3,
body.kk-body h4,
body.kk-body h5,
body.kk-body h6 {
  font-family: var(--kk-heading) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
}

body.kk-body h1 {
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1.02 !important;
}

body.kk-body h1 span {
  font-family: var(--kk-heading) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
}

body.kk-body h2 {
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.04 !important;
}

body.kk-body h3 {
  font-size: clamp(25px, 2vw, 32px) !important;
  line-height: 1.08 !important;
}

body.kk-body p,
body.kk-body li,
.kk-lead,
.kk-content p,
.kk-section-head p,
.kk-service-content p,
.kk-road-card p,
.kk-review-card p,
.kk-contact-data a,
.kk-phone {
  font-family: var(--kk-body) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--kk-muted-soft) !important;
}

.kk-eyebrow,
.kk-menu a,
.kk-btn,
.kk-card-kicker,
.kk-form input,
.kk-form textarea,
.kk-form select,
.kk-form button,
.faq-item button,
.kk-logo small {
  font-family: var(--kk-ui) !important;
}

/* LOGO — większe w headerze */

.kk-logo {
  min-width: 292px !important;
  gap: 15px !important;
}

.kk-logo img {
  width: 88px !important;
  height: 88px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(216, 168, 74, 0.24)) !important;
}

.kk-logo strong {
  font-family: var(--kk-heading) !important;
  font-size: 31px !important;
  font-weight: 400 !important;
  line-height: 0.95 !important;
  color: var(--kk-cream) !important;
}

.kk-logo small {
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.32em !important;
  color: var(--kk-gold-soft) !important;
}

/* LOGO WATERMARK — duże logo w tle hero */

.kk-hero-content {
  position: relative !important;
  z-index: 5 !important;
}

.kk-hero-content::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -95px;
  width: 390px;
  height: 390px;
  background: url("../img/logo-kompas.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
  filter:
    sepia(1)
    saturate(0.85)
    drop-shadow(0 0 36px rgba(241, 207, 120, 0.22));
}

.kk-hero-content::after {
  content: "";
  position: absolute;
  left: -34px;
  top: -44px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 1px solid rgba(241, 207, 120, 0.12);
  pointer-events: none;
  z-index: -1;
}

/* Dodatkowe logo w sekcji "Szlaki działania" jako tło */

.kk-services .container {
  position: relative;
}

.kk-services .container::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 330px;
  height: 330px;
  background: url("../img/logo-kompas.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
  filter: sepia(1) saturate(0.8);
}

/* MENU — aktywne na ciemnozielono, tekst czytelny */

.kk-menu a {
  color: rgba(255, 248, 231, 0.78) !important;
  background: transparent !important;
  font-family: var(--kk-ui) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-shadow: none !important;
  z-index: 2 !important;
}

.kk-menu a::before,
.kk-menu a::after {
  display: none !important;
  content: none !important;
}

.kk-menu a:hover {
  color: var(--kk-gold-soft) !important;
  background: rgba(18, 53, 36, 0.78) !important;
  box-shadow:
    inset 0 0 0 1px rgba(241, 207, 120, 0.18),
    0 10px 26px rgba(0, 0, 0, 0.22) !important;
}

.kk-menu a.active {
  color: var(--kk-gold-soft) !important;
  background:
    linear-gradient(135deg, var(--kk-dark-green-2), var(--kk-dark-green)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(241, 207, 120, 0.28),
    0 12px 30px rgba(0, 0, 0, 0.26) !important;
}

/* TELEFON / KONTAKT — Noto Serif, lżej */

.kk-phone {
  font-family: var(--kk-body) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  color: #22180d !important;
}

.kk-contact-data a {
  font-family: var(--kk-body) !important;
  font-size: clamp(24px, 2.3vw, 32px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  color: var(--kk-gold-soft) !important;
}

/* SZLAKI DZIAŁANIA — naprawa ucinanych ikon */

.kk-service-card {
  overflow: hidden !important;
}

.kk-service-image {
  position: relative !important;
  overflow: hidden !important;
  min-height: 230px !important;
}

.kk-service-image img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  display: block !important;
}

/* Ikona już NIE wychodzi poza zdjęcie, więc nie będzie ucinana */

.kk-service-icon {
  position: absolute !important;
  left: 22px !important;
  bottom: 20px !important;
  width: 70px !important;
  height: 70px !important;
  border-radius: 22px !important;
  display: grid !important;
  place-items: center !important;
  z-index: 5 !important;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 248, 231, 0.32), transparent 42%),
    linear-gradient(135deg, var(--kk-gold-soft), var(--kk-gold)) !important;
  border: 1px solid rgba(255, 248, 231, 0.28) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 248, 231, 0.42) !important;
}

.kk-service-icon svg {
  width: 34px !important;
  height: 34px !important;
  fill: none !important;
  stroke: #1d160c !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* Skoro ikona nie wychodzi poza obrazek, content nie musi mieć dużego paddingu u góry */

.kk-service-content {
  padding-top: 30px !important;
}

/* delikatny cień pod ikoną na zdjęciu */

.kk-service-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54%;
  background:
    linear-gradient(180deg, transparent, rgba(6, 22, 17, 0.72));
  pointer-events: none;
  z-index: 1;
}

.kk-service-icon {
  z-index: 3 !important;
}

/* karty usług — trochę bardziej dopracowane */

.kk-service-card {
  border-radius: 32px !important;
  background:
    linear-gradient(145deg, rgba(255, 248, 231, 0.09), rgba(255, 248, 231, 0.035)) !important;
  border: 1px solid rgba(241, 207, 120, 0.2) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 248, 231, 0.06) !important;
}

.kk-service-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(241, 207, 120, 0.42) !important;
}

.kk-service-card:hover .kk-service-icon {
  transform: translateY(-3px) scale(1.04);
}

/* MOBILE */

@media (max-width: 980px) {
  .kk-logo {
    min-width: auto !important;
  }

  .kk-logo img {
    width: 64px !important;
    height: 64px !important;
  }

  .kk-logo strong {
    font-size: 24px !important;
  }

  .kk-logo small {
    font-size: 9px !important;
  }

  .kk-hero-content::before {
    left: 50%;
    top: -70px;
    width: 290px;
    height: 290px;
    transform: translateX(-50%);
    opacity: 0.055;
  }

  .kk-services .container::before {
    right: 50%;
    top: -70px;
    width: 260px;
    height: 260px;
    transform: translateX(50%);
    opacity: 0.035;
  }
}

@media (max-width: 640px) {
  .kk-logo img {
    width: 54px !important;
    height: 54px !important;
  }

  .kk-logo strong {
    font-size: 21px !important;
  }

  .kk-logo small {
    display: none !important;
  }

  .kk-hero-content::before {
    width: 220px;
    height: 220px;
    top: -42px;
  }

  .kk-service-image {
    min-height: 205px !important;
  }

  .kk-service-image img {
    height: 210px !important;
  }

  .kk-service-icon {
    width: 62px !important;
    height: 62px !important;
    border-radius: 20px !important;
    left: 18px !important;
    bottom: 18px !important;
  }

  .kk-service-icon svg {
    width: 30px !important;
    height: 30px !important;
  }
}
/* =========================================================
   KOMPAS KREDYTOWY — INSTAGRAM FEED SECTION
   Wklej na sam koniec style.css
========================================================= */

.kk-instagram {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 207, 120, 0.12), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(84, 113, 59, 0.2), transparent 32%),
    linear-gradient(180deg, #061611, #0b2118 48%, #061611);
}

.kk-instagram::before {
  content: "";
  position: absolute;
  left: -160px;
  top: 80px;
  width: 430px;
  height: 430px;
  background: url("../img/logo-kompas.png") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
  filter: sepia(1) saturate(0.8);
}

.kk-instagram::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgba(241, 207, 120, 0.09);
  filter: blur(75px);
  pointer-events: none;
}

.kk-instagram-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.kk-instagram-head h2 {
  max-width: 720px;
}

.kk-instagram-head p:last-child {
  max-width: 760px;
  margin-top: 18px;
}

.kk-instagram-btn {
  white-space: nowrap;
}

.kk-instagram-frame {
  position: relative;
  z-index: 2;
  padding: 16px;
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 248, 231, 0.12), rgba(255, 248, 231, 0.035));
  border: 1px solid rgba(241, 207, 120, 0.24);
  box-shadow:
    0 32px 95px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 248, 231, 0.08);
  overflow: hidden;
}

.kk-instagram-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(241, 207, 120, 0.11);
  pointer-events: none;
  z-index: 3;
}

.kk-instagram-frame::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  height: 120px;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(180deg, transparent, rgba(6, 22, 17, 0.38));
  pointer-events: none;
  z-index: 2;
}

.kk-instagram-compass {
  position: absolute;
  right: -130px;
  top: -160px;
  width: 520px;
  height: 520px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: kkInstagramSpin 100s linear infinite;
}

.kk-instagram-compass img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: sepia(1);
}

.kk-instagram-card {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6, 22, 17, 0.72), rgba(11, 33, 24, 0.62)),
    radial-gradient(circle at 20% 0%, rgba(241, 207, 120, 0.12), transparent 34%);
  border: 1px solid rgba(241, 207, 120, 0.18);
  overflow: hidden;
}

/* Sam widget — opakowanie, bo część stylów może być w shadow DOM */
.kk-instagram-card behold-widget {
  display: block;
  width: 100%;
}

/* Gdy widget chwilę się ładuje */
.kk-instagram-card:empty,
.kk-instagram-card behold-widget:empty {
  min-height: 340px;
}

/* Delikatny podpis techniczny przed załadowaniem */
.kk-instagram-card::before {
  content: "Ładowanie najnowszych postów...";
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 0;
  color: rgba(255, 248, 231, 0.38);
  font-family: var(--kk-ui, Arial, sans-serif);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.kk-instagram-card behold-widget:not(:empty) {
  position: relative;
  z-index: 2;
}

@keyframes kkInstagramSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* MOBILE */

@media (max-width: 980px) {
  .kk-instagram-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kk-instagram-head p:last-child {
    margin-inline: auto;
  }

  .kk-instagram-btn {
    justify-self: center;
  }

  .kk-instagram-frame {
    padding: 12px;
    border-radius: 30px;
  }

  .kk-instagram-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .kk-instagram::before {
    width: 280px;
    height: 280px;
    left: -120px;
    top: 80px;
  }

  .kk-instagram-compass {
    width: 340px;
    height: 340px;
    right: -160px;
    top: -120px;
  }

  .kk-instagram-head {
    margin-bottom: 28px;
  }

  .kk-instagram-card {
    min-height: 300px;
    padding: 16px;
  }

  .kk-instagram-card::before {
    left: 18px;
    top: 18px;
    font-size: 11px;
  }
}